Skip to content

Commit

Permalink
Use IntegerIndexedElementSet directly instead of Set
Browse files Browse the repository at this point in the history
  • Loading branch information
syg committed Apr 4, 2022
1 parent 258386f commit dd15360
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -39125,8 +39125,8 @@ <h1>
1. Repeat, while _k_ &lt; _srcLength_,
1. Let _Pk_ be ! ToString(𝔽(_k_)).
1. Let _value_ be ? Get(_src_, _Pk_).
1. Let _targetIndex_ be ! ToString(𝔽(_targetOffset_ + _k_)).
1. Perform ? Set(_target_, _targetIndex_, _value_, *true*).
1. Let _targetIndex_ be 𝔽(_targetOffset_ + _k_).
1. Perform ? IntegerIndexedElementSet(_target_, _targetIndex_, _value_).
1. Set _k_ to _k_ + 1.
1. Return ~unused~.
</emu-alg>
Expand Down

0 comments on commit dd15360

Please sign in to comment.