mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibJS: Convert to_u32() to ThrowCompletionOr
This commit is contained in:
parent
f6a5ff7b00
commit
cc94bba5c0
Notes:
sideshowbarker
2024-07-18 02:12:39 +09:00
Author: https://github.com/IdanHo
Commit: cc94bba5c0
Pull-request: https://github.com/SerenityOS/serenity/pull/10522
Reviewed-by: https://github.com/linusg ✅
14 changed files with 32 additions and 69 deletions
|
@ -68,7 +68,7 @@ Value ArrayConstructor::construct(FunctionObject& new_target)
|
|||
MUST(array->create_data_property_or_throw(0, length));
|
||||
int_length = 1;
|
||||
} else {
|
||||
int_length = length.to_u32(global_object());
|
||||
int_length = MUST(length.to_u32(global_object()));
|
||||
if (int_length != length.as_double()) {
|
||||
vm.throw_exception<RangeError>(global_object(), ErrorType::InvalidLength, "array");
|
||||
return {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue