diff options
author | Linus Groh <mail@linusgroh.de> | 2021-04-06 22:06:11 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-07 09:05:01 +0200 |
commit | 9af07c7803aaf08c55414dca315bbbfb9a23754e (patch) | |
tree | e2b87b5aae78609490d9e4adca7bba67c439d8ff /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | 1c3eef531762659ef8acf8160e4f9b55d5644a62 (diff) | |
download | serenity-9af07c7803aaf08c55414dca315bbbfb9a23754e.zip |
LibJS: Implement Object.freeze() and Object.seal()
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 21ad39f0b4..e7f685ff7c 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -118,6 +118,7 @@ namespace JS { P(flat) \ P(floor) \ P(forEach) \ + P(freeze) \ P(from) \ P(fromCharCode) \ P(fround) \ @@ -206,6 +207,7 @@ namespace JS { P(resolve) \ P(reverse) \ P(round) \ + P(seal) \ P(set) \ P(setFullYear) \ P(setHours) \ |