Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Editorial: rename IDs that were embedded in emu-grammar elements back #3384

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -17851,7 +17851,7 @@ <h1>Rules of Automatic Semicolon Insertion</h1>

AsyncArrowFunction[In, Yield, Await] :
`async` [no LineTerminator here] AsyncArrowBindingIdentifier[?Yield] [no LineTerminator here] `=>` AsyncConciseBody[?In]
CoverCallExpressionAndAsyncArrowHead[?Yield, ?Await] [no LineTerminator here] `=>` AsyncConciseBody[?In] #callCover
CoverCallExpressionAndAsyncArrowHead[?Yield, ?Await] [no LineTerminator here] `=>` AsyncConciseBody[?In] #callcover

AsyncArrowHead :
`async` [no LineTerminator here] ArrowFormalParameters[~Yield, +Await]
Expand Down Expand Up @@ -18209,7 +18209,7 @@ <h2>Syntax</h2>
AsyncGeneratorExpression
RegularExpressionLiteral
TemplateLiteral[?Yield, ?Await, ~Tagged]
CoverParenthesizedExpressionAndArrowParameterList[?Yield, ?Await] #parenCover
CoverParenthesizedExpressionAndArrowParameterList[?Yield, ?Await] #parencover

CoverParenthesizedExpressionAndArrowParameterList[Yield, Await] :
`(` Expression[+In, ?Yield, ?Await] `)`
Expand Down Expand Up @@ -18998,7 +18998,7 @@ <h2>Syntax</h2>
`new` NewExpression[?Yield, ?Await]

CallExpression[Yield, Await] :
CoverCallExpressionAndAsyncArrowHead[?Yield, ?Await] #callCover
CoverCallExpressionAndAsyncArrowHead[?Yield, ?Await] #callcover
SuperCall[?Yield, ?Await]
ImportCall[?Yield, ?Await]
CallExpression[?Yield, ?Await] Arguments[?Yield, ?Await]
Expand Down Expand Up @@ -23549,7 +23549,7 @@ <h2>Syntax</h2>

ArrowParameters[Yield, Await] :
BindingIdentifier[?Yield, ?Await]
CoverParenthesizedExpressionAndArrowParameterList[?Yield, ?Await] #parenCover
CoverParenthesizedExpressionAndArrowParameterList[?Yield, ?Await] #parencover

ConciseBody[In] :
[lookahead != `{`] ExpressionBody[?In, ~Await]
Expand Down Expand Up @@ -25254,7 +25254,7 @@ <h2>Syntax</h2>
<emu-grammar type="definition">
AsyncArrowFunction[In, Yield, Await] :
`async` [no LineTerminator here] AsyncArrowBindingIdentifier[?Yield] [no LineTerminator here] `=>` AsyncConciseBody[?In]
CoverCallExpressionAndAsyncArrowHead[?Yield, ?Await] [no LineTerminator here] `=>` AsyncConciseBody[?In] #callCover
CoverCallExpressionAndAsyncArrowHead[?Yield, ?Await] [no LineTerminator here] `=>` AsyncConciseBody[?In] #callcover

AsyncConciseBody[In] :
[lookahead != `{`] ExpressionBody[?In, +Await]
Expand Down Expand Up @@ -49911,7 +49911,7 @@ <h1>Expressions</h1>
<emu-prodref name="CoverParenthesizedExpressionAndArrowParameterList"></emu-prodref>
<p>
When processing an instance of the production<br>
<emu-prodref name="PrimaryExpression" a="parenCover"></emu-prodref><br>
<emu-prodref name="PrimaryExpression" a="parencover"></emu-prodref><br>
the interpretation of |CoverParenthesizedExpressionAndArrowParameterList| is refined using the following grammar:
</p>
<emu-prodref name="ParenthesizedExpression"></emu-prodref>
Expand Down Expand Up @@ -49942,7 +49942,7 @@ <h1>Expressions</h1>
<emu-prodref name="CallExpression"></emu-prodref>
<p>
When processing an instance of the production<br>
<emu-prodref name="CallExpression" a="callCover"></emu-prodref><br>
<emu-prodref name="CallExpression" a="callcover"></emu-prodref><br>
the interpretation of |CoverCallExpressionAndAsyncArrowHead| is refined using the following grammar:
</p>
<emu-prodref name="CallMemberExpression"></emu-prodref>
Expand Down Expand Up @@ -50068,7 +50068,7 @@ <h1>Functions and Classes</h1>
<emu-prodref name="ExpressionBody"></emu-prodref>
<p>
When processing an instance of the production<br>
<emu-prodref name="ArrowParameters" a="parenCover"></emu-prodref><br>
<emu-prodref name="ArrowParameters" a="parencover"></emu-prodref><br>
the interpretation of |CoverParenthesizedExpressionAndArrowParameterList| is refined using the following grammar:
</p>
<emu-prodref name="ArrowFormalParameters"></emu-prodref>
Expand All @@ -50079,7 +50079,7 @@ <h1>Functions and Classes</h1>
<emu-prodref name="CoverCallExpressionAndAsyncArrowHead"></emu-prodref>
<p>
When processing an instance of the production<br>
<emu-prodref name="AsyncArrowFunction" a="callCover"></emu-prodref><br>
<emu-prodref name="AsyncArrowFunction" a="callcover"></emu-prodref><br>
the interpretation of |CoverCallExpressionAndAsyncArrowHead| is refined using the following grammar:
</p>
<emu-prodref name="AsyncArrowHead"></emu-prodref>
Expand Down
Loading