diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-07-12 10:35:14 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-07-14 22:13:15 +0100 |
commit | 1a3e1bff7b10287a206b7d22178965b2f03ef16a (patch) | |
tree | 6aabd2fd9264b8b06338dd7475e9da8029ca4501 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | d9c2447999a7d61cf60e0012606702c9225715f7 (diff) | |
download | serenity-1a3e1bff7b10287a206b7d22178965b2f03ef16a.zip |
LibJS: Implement Atomics.isLockFree
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 ccb146b955..b555d8501c 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -213,6 +213,7 @@ namespace JS { P(isFinite) \ P(isFrozen) \ P(isInteger) \ + P(isLockFree) \ P(isNaN) \ P(isPrototypeOf) \ P(isSafeInteger) \ |