diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-07-10 22:53:54 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-07-14 20:44:42 +0100 |
commit | a61723ec599be984523e40030c05e3a3f3af7e67 (patch) | |
tree | 00d725d64b5712f2e8b48ff5170eba6b6ff562b3 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | df75c35d5ba62b99a8e2544a734e22bc4f81a394 (diff) | |
download | serenity-a61723ec599be984523e40030c05e3a3f3af7e67.zip |
LibJS: Begin implementing Atomics
This adds the Atomics object to the global object and sets up only its
@@toStringTag property.
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 2c047727f8..530cca681e 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -17,6 +17,7 @@ namespace JS { P(__defineSetter__) \ P(__lookupGetter__) \ P(__lookupSetter__) \ + P(Atomics) \ P(BYTES_PER_ELEMENT) \ P(BigInt) \ P(Boolean) \ |