Skip to content

Commit

Permalink
Editorial: avoid multiple declarations of an alias (#3275)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelficarra authored and ljharb committed Jan 31, 2024
1 parent 12d3687 commit 6d7aa1b
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 @@ -21001,11 +21001,11 @@ <h1>
<emu-alg>
1. If |DestructuringAssignmentTarget| is neither an |ObjectLiteral| nor an |ArrayLiteral|, then
1. Let _lref_ be ? Evaluation of |DestructuringAssignmentTarget|.
1. Let _value_ be *undefined*.
1. If _iteratorRecord_.[[Done]] is *false*, then
1. Let _next_ be ? IteratorStepValue(_iteratorRecord_).
1. If _next_ is not ~done~, then
1. Let _value_ be _next_.
1. If _iteratorRecord_.[[Done]] is *true*, let _value_ be *undefined*.
1. Set _value_ to _next_.
1. If |Initializer| is present and _value_ is *undefined*, then
1. If IsAnonymousFunctionDefinition(|Initializer|) is *true* and IsIdentifierRef of |DestructuringAssignmentTarget| is *true*, then
1. Let _v_ be ? NamedEvaluation of |Initializer| with argument _lref_.[[ReferencedName]].
Expand Down

0 comments on commit 6d7aa1b

Please sign in to comment.