mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-04 15:19:42 +00:00
LibJS: Add Proxy objects
Includes all traps except the following: [[Call]], [[Construct]], [[OwnPropertyKeys]]. An important implication of this commit is that any call to any virtual Object method has the potential to throw an exception. These methods were not checked in this commit -- a future commit will have to protect these various method calls throughout the codebase.
This commit is contained in:
parent
58a72e9b81
commit
39ad42defd
Notes:
sideshowbarker
2024-07-19 05:47:32 +09:00
Author: https://github.com/mattco98
Commit: 39ad42defd
Pull-request: https://github.com/SerenityOS/serenity/pull/2489
Reviewed-by: https://github.com/awesomekling
29 changed files with 1697 additions and 54 deletions
|
@ -23,7 +23,13 @@ try {
|
|||
o.baz = "baz";
|
||||
assert(o.baz === undefined);
|
||||
|
||||
Object.defineProperty(o, "baz", { value: "baz" });
|
||||
assertThrowsError(() => {
|
||||
Object.defineProperty(o, "baz", { value: "baz" });
|
||||
}, {
|
||||
error: TypeError,
|
||||
message: "Unable to define property on non-extensible object",
|
||||
});
|
||||
|
||||
assert(o.baz === undefined);
|
||||
|
||||
assertThrowsError(() => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue