mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-05 15:49:11 +00:00
LibJS: Add generic InvalidLength error type
We have multiple array types now, so ArrayInvalidLength has been replaced with a generic InvalidLength. Also fixes a small issue in the Array constructor, it should throw RangeError for invalid lengths, not TypeError.
This commit is contained in:
parent
5e08ae4e14
commit
6de4f1fcb3
Notes:
sideshowbarker
2024-07-19 01:05:16 +09:00
Author: https://github.com/linusg
Commit: 6de4f1fcb3
Pull-request: https://github.com/SerenityOS/serenity/pull/4307
4 changed files with 4 additions and 4 deletions
|
@ -67,7 +67,7 @@ Value ArrayConstructor::call()
|
|||
if (vm().argument_count() == 1 && vm().argument(0).is_number()) {
|
||||
auto array_length_value = vm().argument(0);
|
||||
if (!array_length_value.is_integer() || array_length_value.as_i32() < 0) {
|
||||
vm().throw_exception<TypeError>(global_object(), ErrorType::ArrayInvalidLength);
|
||||
vm().throw_exception<RangeError>(global_object(), ErrorType::InvalidLength, "array");
|
||||
return {};
|
||||
}
|
||||
auto* array = Array::create(global_object());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue