Skip to content

Commit

Permalink
Merge pull request #4 from rbuckton/fix-missing-lookahead-restriction
Browse files Browse the repository at this point in the history
Fix missing lookahead restriction
  • Loading branch information
rbuckton authored Apr 10, 2024
2 parents 2d26580 + 53fe335 commit 949e9db
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 @@ -29030,7 +29030,7 @@ <h2>Syntax</h2>
`export` ExportFromClause FromClause `;`
`export` NamedExports `;`
`export` VariableStatement[~Yield, +Await]
`export` [lookahead != `using`] Declaration[~Yield, +Await]
`export` [lookahead &notin; { `using`, `await` }] Declaration[~Yield, +Await]
`export` `default` HoistableDeclaration[~Yield, +Await, +Default]
`export` `default` ClassDeclaration[~Yield, +Await, +Default]
`export` `default` [lookahead &notin; { `function`, `async` [no LineTerminator here] `function`, `class` }] AssignmentExpression[+In, ~Yield, +Await] `;`
Expand Down

0 comments on commit 949e9db

Please sign in to comment.