diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-07-11 14:10:43 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-07-14 20:44:42 +0100 |
commit | 2d3af5c1b4835258f119aa0bb3b3470f5554322c (patch) | |
tree | 8630b303cc5355630f7c5eec8efe86a32bde1456 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | 940875c9fd704ce9d7e74d3499bbdd220841d0c5 (diff) | |
download | serenity-2d3af5c1b4835258f119aa0bb3b3470f5554322c.zip |
LibJS: Implement Atomics.and
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 ec05f5167c..1b5fb699cd 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -351,6 +351,7 @@ namespace JS { P(writable) struct CommonPropertyNames { + PropertyName and_ { "and", PropertyName::StringMayBeNumber::No }; PropertyName catch_ { "catch", PropertyName::StringMayBeNumber::No }; PropertyName delete_ { "delete", PropertyName::StringMayBeNumber::No }; PropertyName for_ { "for", PropertyName::StringMayBeNumber::No }; |