1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:17:35 +00:00

LibJS: Implement Object.freeze() and Object.seal()

This commit is contained in:
Linus Groh 2021-04-06 22:06:11 +02:00 committed by Andreas Kling
parent 1c3eef5317
commit 9af07c7803
8 changed files with 202 additions and 3 deletions

View file

@ -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) \