Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuckton committed Apr 10, 2023
1 parent 9dc7b2f commit 4e5be66
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions spec.emu
Original file line number Diff line number Diff line change
Expand Up @@ -2552,10 +2552,10 @@ contributors: Ron Buckton, Ecma International

<ins class="block">
UsingDeclaration[In, Yield, Await] :
`using` [no LineTerminator here] [lookahead != `await`] BindingList[?In, ?Yield, ?Await, ~Pattern] `;`
`using` [no LineTerminator here] BindingList[?In, ?Yield, ?Await, ~Pattern] `;`

AwaitUsingDeclaration[In, Yield] :
CoverAwaitExpressionAndAwaitUsingDeclarationHead[?Yield] [no LineTerminator here] [lookahead != `await`] BindingList[?In, ?Yield, ?Await, ~Pattern] `;`
CoverAwaitExpressionAndAwaitUsingDeclarationHead[?Yield] [no LineTerminator here] BindingList[?In, ?Yield, ?Await, ~Pattern] `;`
</ins>

BindingList[In, Yield, Await, <ins>Pattern</ins>] :
Expand Down Expand Up @@ -2611,9 +2611,6 @@ contributors: Ron Buckton, Ecma International
<li>
It is a Syntax Error if the BoundNames of |BindingList| contains *"let"*.
</li>
<li>
It is a Syntax Error if the BoundNames of |BindingList| contains *"await"*.
</li>
<li>
It is a Syntax Error if the BoundNames of |BindingList| contains any duplicate entries.
</li>
Expand Down Expand Up @@ -2879,7 +2876,7 @@ contributors: Ron Buckton, Ecma International

ForDeclaration[Yield, Await, <ins>Using</ins>] :
LetOrConst ForBinding[?Yield, ?Await, <ins>+Pattern</ins>]
<ins>[+Using] `using` [no LineTerminator here] [lookahead != `await`] ForBinding[?Yield, ?Await, ~Pattern]</ins>
<ins>[+Using] `using` [no LineTerminator here] ForBinding[?Yield, ?Await, ~Pattern]</ins>
<ins>[+Using, +Await] `await` [no LineTerminator here] `using` [no LineTerminator here] ForBinding[?Yield, +Await, ~Pattern]</ins>

ForBinding[Yield, Await, <ins>Pattern</ins>] :
Expand Down

0 comments on commit 4e5be66

Please sign in to comment.