Skip to content

Commit

Permalink
Editorial: fix IteratorClose call in %IteratorHelperPrototype%.return (
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkot authored and ljharb committed Jan 8, 2025
1 parent c404297 commit fe206cd
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 @@ -46684,7 +46684,7 @@ <h1>%IteratorHelperPrototype%.return ( )</h1>
1. If _O_.[[GeneratorState]] is ~suspended-start~, then
1. Set _O_.[[GeneratorState]] to ~completed~.
1. NOTE: Once a generator enters the completed state it never leaves it and its associated execution context is never resumed. Any execution state associated with _O_ can be discarded at this point.
1. Perform ? IteratorClose(_O_.[[UnderlyingIterator]], ReturnCompletion(*undefined*)).
1. Perform ? IteratorClose(_O_.[[UnderlyingIterator]], NormalCompletion(~unused~)).
1. Return CreateIteratorResultObject(*undefined*, *true*).
1. Let _C_ be ReturnCompletion(*undefined*).
1. Return ? GeneratorResumeAbrupt(_O_, _C_, *"Iterator Helper"*).
Expand Down

0 comments on commit fe206cd

Please sign in to comment.