mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 01:00:05 +00:00
LibJS: Convert to_number() to ThrowCompletionOr
This commit is contained in:
parent
a36ee213b9
commit
20d990563c
Notes:
sideshowbarker
2024-07-18 02:12:47 +09:00
Author: https://github.com/IdanHo
Commit: 20d990563c
Pull-request: https://github.com/SerenityOS/serenity/pull/10522
Reviewed-by: https://github.com/linusg ✅
22 changed files with 149 additions and 343 deletions
|
@ -964,10 +964,7 @@ JS_DEFINE_NATIVE_FUNCTION(ReplObject::exit_interpreter)
|
|||
{
|
||||
if (!vm.argument_count())
|
||||
exit(0);
|
||||
auto exit_code = vm.argument(0).to_number(global_object);
|
||||
if (::vm->exception())
|
||||
return {};
|
||||
exit(exit_code.as_double());
|
||||
exit(TRY_OR_DISCARD(vm.argument(0).to_number(global_object)).as_double());
|
||||
}
|
||||
|
||||
JS_DEFINE_NATIVE_FUNCTION(ReplObject::repl_help)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue