Skip to content

Commit

Permalink
do not validate value in %WrapForValidIteratorPrototype%.next (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkot committed Jul 18, 2022
1 parent 8ded833 commit c7417d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec.html
Expand Up @@ -235,7 +235,8 @@ <h1>%WrapForValidIteratorPrototype%.next ( )</h1>
<emu-alg>
1. Let _O_ be *this* value.
1. Perform ? RequireInternalSlot(_O_, [[Iterated]]).
1. Return ? IteratorNext(_O_.[[Iterated]]).
1. Let _iteratorRecord_ be _O_.[[Iterated]].
1. Return ? Call(_iteratorRecord_.[[NextMethod]], _iteratorRecord_.[[Iterator]]).
</emu-alg>
</emu-clause>

Expand Down

0 comments on commit c7417d7

Please sign in to comment.