Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
path floats, not math values, in indexed (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkot authored Jul 22, 2022
1 parent 634e97f commit 3e24c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ <h1>Iterator.prototype.indexed ( )</h1>
1. Let _next_ be ? IteratorStep(_iterated_).
1. If _next_ is *false*, return *undefined*.
1. Let _value_ be ? IteratorValue(_next_).
1. Let _pair_ be CreateArrayFromList(&laquo; _index_, _value_ &raquo;).
1. Let _pair_ be CreateArrayFromList(&laquo; 𝔽(_index_), _value_ &raquo;).
1. Set _index_ to _index_ + 1.
1. Let _completion_ be Completion(Yield(_pair_)).
1. IfAbruptCloseIterator(_completion_, _iterated_).
Expand Down

0 comments on commit 3e24c09

Please sign in to comment.