diff options
author | Linus Groh <mail@linusgroh.de> | 2021-04-06 22:45:12 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-07 09:05:01 +0200 |
commit | f3264b0dbd9f7f618d142caa7a896b59a33ffd20 (patch) | |
tree | ddbaed31707b6ce63a54c439bd2e00812f712f61 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | 9af07c7803aaf08c55414dca315bbbfb9a23754e (diff) | |
download | serenity-f3264b0dbd9f7f618d142caa7a896b59a33ffd20.zip |
LibJS: Implement Object.isFrozen() and Object.isSealed()
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h index e7f685ff7c..1001e535b2 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -161,10 +161,12 @@ namespace JS { P(isArray) \ P(isExtensible) \ P(isFinite) \ + P(isFrozen) \ P(isInteger) \ P(isNaN) \ P(isPrototypeOf) \ P(isSafeInteger) \ + P(isSealed) \ P(isView) \ P(join) \ P(keyFor) \ |