mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:27:45 +00:00
LibJS: Match spec behaviour in TypedArray.prototype.fill
This just replaces an instance where TRY was used when MUST should have been, reflecting the difference between ? and ! in the spec.
This commit is contained in:
parent
d492887dcd
commit
d7654aebd7
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ JS_DEFINE_NATIVE_FUNCTION(TypedArrayPrototype::fill)
|
||||||
for (; k < final; ++k) {
|
for (; k < final; ++k) {
|
||||||
// a. Let Pk be ! ToString(𝔽(k)).
|
// a. Let Pk be ! ToString(𝔽(k)).
|
||||||
// b. Perform ! Set(O, Pk, value, true).
|
// b. Perform ! Set(O, Pk, value, true).
|
||||||
TRY(typed_array->set(k, value, Object::ShouldThrowExceptions::Yes));
|
MUST(typed_array->set(k, value, Object::ShouldThrowExceptions::Yes));
|
||||||
|
|
||||||
// c. Set k to k + 1.
|
// c. Set k to k + 1.
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue