2017-04-20 18:31:29 +02:00
|
|
|
// This file was procedurally generated from the following sources:
|
|
|
|
// - src/function-forms/rest-params-trailing-comma-early-error.case
|
|
|
|
// - src/function-forms/syntax/async-arrow-function.template
|
|
|
|
/*---
|
|
|
|
description: It's a syntax error if a FunctionRestParameter is followed by a trailing comma (async arrow function expression)
|
|
|
|
esid: sec-async-arrow-function-definitions
|
|
|
|
flags: [generated]
|
|
|
|
negative:
|
2017-12-03 06:06:42 +01:00
|
|
|
phase: parse
|
2017-04-20 18:31:29 +02:00
|
|
|
type: SyntaxError
|
|
|
|
info: |
|
|
|
|
14.7 Async Arrow Function Definitions
|
|
|
|
|
|
|
|
AsyncArrowFunction :
|
|
|
|
...
|
|
|
|
CoverCallExpressionAndAsyncArrowHead => AsyncConciseBody
|
|
|
|
|
|
|
|
AsyncConciseBody :
|
|
|
|
{ AsyncFunctionBody }
|
|
|
|
|
|
|
|
...
|
|
|
|
|
|
|
|
Supplemental Syntax
|
|
|
|
|
|
|
|
When processing an instance of the production AsyncArrowFunction :
|
|
|
|
CoverCallExpressionAndAsyncArrowHead => AsyncConciseBody the interpretation of
|
|
|
|
CoverCallExpressionAndAsyncArrowHead is refined using the following grammar:
|
|
|
|
|
|
|
|
AsyncArrowHead :
|
|
|
|
async ArrowFormalParameters
|
|
|
|
|
|
|
|
Trailing comma in the parameters list
|
|
|
|
|
|
|
|
14.1 Function Definitions
|
|
|
|
|
|
|
|
FormalParameters[Yield, Await] :
|
|
|
|
[empty]
|
|
|
|
FunctionRestParameter[?Yield, ?Await]
|
|
|
|
FormalParameterList[?Yield, ?Await]
|
|
|
|
FormalParameterList[?Yield, ?Await] ,
|
|
|
|
FormalParameterList[?Yield, ?Await] , FunctionRestParameter[?Yield, ?Await]
|
|
|
|
---*/
|
2018-10-11 16:59:24 +02:00
|
|
|
$DONOTEVALUATE();
|
2017-04-20 18:31:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
(async (...a,) => {
|
|
|
|
|
|
|
|
});
|