mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibJS: Add interpreter exception checks
This commit is contained in:
parent
f306ddb78b
commit
4e33fbdb67
Notes:
sideshowbarker
2024-07-19 05:45:16 +09:00
Author: https://github.com/mattco98
Commit: 4e33fbdb67
Pull-request: https://github.com/SerenityOS/serenity/pull/2522
11 changed files with 137 additions and 36 deletions
|
@ -145,6 +145,8 @@ Value ReflectObject::define_property(Interpreter& interpreter)
|
|||
return {};
|
||||
auto& descriptor = interpreter.argument(2).as_object();
|
||||
auto success = target->define_property(property_key, descriptor, false);
|
||||
if (interpreter.exception())
|
||||
return {};
|
||||
return Value(success);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue