mirror of https://github.com/tc39/test262.git
Apply suggestions from code review
Co-authored-by: Ioanna M Dimitriou H <9728696+ioannad@users.noreply.github.com>
This commit is contained in:
parent
71f95c29bd
commit
837def66ac
|
@ -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 ] ] )
|
||||
|
||||
|
|
|
@ -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 ] ] )
|
||||
|
||||
|
|
|
@ -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 ] ] )
|
||||
|
||||
|
|
|
@ -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 ] ] )
|
||||
|
||||
|
|
|
@ -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 ] ] )
|
||||
|
||||
|
|
|
@ -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 ] ] )
|
||||
|
||||
|
|
|
@ -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 )
|
||||
|
||||
|
|
|
@ -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]
|
||||
---*/
|
||||
|
|
Loading…
Reference in New Issue