Apply suggestions from code review

Co-authored-by: Ioanna M Dimitriou H <9728696+ioannad@users.noreply.github.com>
This commit is contained in:
Philip Chimento 2024-03-27 17:44:35 -07:00
parent 71f95c29bd
commit 837def66ac
8 changed files with 13 additions and 8 deletions

View File

@ -4,7 +4,7 @@
/*---
esid: sec-%typedarray%.from
description: >
Mapper function detaches result typed array.
If the mapper function detaches the result typed array, .from performs Set operation which ignores out-of-bounds indices.
info: |
%TypedArray%.from ( source [ , mapfn [ , thisArg ] ] )

View File

@ -4,7 +4,7 @@
/*---
esid: sec-%typedarray%.from
description: >
Mapper function makes result typed array out-of-bounds.
If the mapper function makes result typed array out-of-bounds, .from performs Set operation which ignores out-of-bounds indices.
info: |
%TypedArray%.from ( source [ , mapfn [ , thisArg ] ] )

View File

@ -4,7 +4,7 @@
/*---
esid: sec-%typedarray%.from
description: >
Mapper function detaches result typed array.
If the mapper function detaches the result typed array, .from performs Set operation which ignores out-of-bounds indices.
info: |
%TypedArray%.from ( source [ , mapfn [ , thisArg ] ] )

View File

@ -4,7 +4,7 @@
/*---
esid: sec-%typedarray%.from
description: >
Mapper function makes result typed array out-of-bounds.
If the mapper function makes result typed array out-of-bounds, .from performs Set operation which ignores out-of-bounds indices.
info: |
%TypedArray%.from ( source [ , mapfn [ , thisArg ] ] )

View File

@ -4,7 +4,7 @@
/*---
esid: sec-%typedarray%.from
description: >
Mapper function detaches result typed array.
If the mapper function detaches the result typed array, .from performs Set operation which ignores out-of-bounds indices.
info: |
%TypedArray%.from ( source [ , mapfn [ , thisArg ] ] )

View File

@ -4,7 +4,7 @@
/*---
esid: sec-%typedarray%.from
description: >
Mapper function makes result typed array out-of-bounds.
If the mapper function makes result typed array out-of-bounds, .from performs Set operation which ignores out-of-bounds indices.
info: |
%TypedArray%.from ( source [ , mapfn [ , thisArg ] ] )

View File

@ -4,7 +4,7 @@
/*---
esid: sec-%typedarray%.prototype.subarray
description: >
Result has correct the byteOffset when input is initially out-of-bounds.
Result has the correct byteOffset when input is initially out-of-bounds.
info: |
%TypedArray%.prototype.subarray ( start, end )

View File

@ -8,10 +8,15 @@ description: >
info: |
%TypedArray%.prototype.with ( index, value )
1. Let O be the this value.
2. Let taRecord be ? ValidateTypedArray(O, SEQ-CST).
3. Let len be TypedArrayLength(taRecord).
...
8. Else, let numericValue be ? ToNumber(value).
9. If IsValidIntegerIndex(O, 𝔽(actualIndex)) is false, throw a RangeError exception.
...
10. Let A be ? TypedArrayCreateSameType(O, « 𝔽(len) »).
...
13. Return A.
features: [TypedArray, resizable-arraybuffer]
---*/