diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-07-12 08:59:34 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-07-14 22:13:15 +0100 |
commit | 33eb830929791b0e57a72a0371f7351d86f64e41 (patch) | |
tree | 9460d8f09ae499c232fb8153aacb7533a5860656 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | 655ffce64df9a1823592377b2a44296571a50e7b (diff) | |
download | serenity-33eb830929791b0e57a72a0371f7351d86f64e41.zip |
LibJS: Implement Atomics.compareExchange
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h index 8e48de60e3..ccb146b955 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -88,6 +88,7 @@ namespace JS { P(clear) \ P(clz32) \ P(codePointAt) \ + P(compareExchange) \ P(concat) \ P(configurable) \ P(console) \ |