You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Let _targetElementSize_ be TypedArrayElementSize(_target_).
42282
42282
1. Let _srcElementSize_ be TypedArrayElementSize(_source_).
42283
-
1. Let _targetByteIndex_ be _target_.[[ByteOffset]] + (_targetElementSize_ × _targetOffset_).
42284
-
1. Let _limit_ be _targetByteIndex_ + (_targetElementSize_ × _srcLength_).
42285
42283
1. Let _targetType_ be TypedArrayElementType(_target_).
42286
42284
1. Let _srcType_ be TypedArrayElementType(_source_).
42287
42285
1. NOTE: When _srcType_ matches _targetType_, bit-level encoding of the source data must be preserved. Operating on byte-sized units ensures that guarantee, but an implementation that can satisfy it with larger chunks may do so.
@@ -42298,6 +42296,8 @@ <h1>
42298
42296
1. Let _srcByteLength_ be TypedArrayByteLength(_srcRecord_).
42299
42297
1. Set _srcBuffer_ to ? CloneArrayBuffer(_srcBuffer_, _srcByteIndex_, _srcByteLength_).
42300
42298
1. Set _srcByteIndex_ to 0.
42299
+
1. Let _targetByteIndex_ be _target_.[[ByteOffset]] + (_targetElementSize_ × _targetOffset_).
42300
+
1. Let _limit_ be _targetByteIndex_ + (_targetElementSize_ × _srcLength_).
42301
42301
1. Repeat, while _targetByteIndex_ < _limit_,
42302
42302
1. Let _value_ be GetValueFromBuffer(_srcBuffer_, _srcByteIndex_, _srcType_, *true*, ~unordered~).
0 commit comments