test262/test/language/statements/async-function/rest-params-trailing-comma-...

34 lines
1023 B
JavaScript
Raw Normal View History

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-func-decl.template
/*---
description: It's a syntax error if a FunctionRestParameter is followed by a trailing comma (async function declaration)
esid: sec-async-function-definitions
flags: [generated]
negative:
phase: parse
2017-04-20 18:31:29 +02:00
type: SyntaxError
info: |
14.6 Async Function Definitions
AsyncFunctionDeclaration :
async function BindingIdentifier ( FormalParameters ) { AsyncFunctionBody }
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]
---*/
2017-04-29 22:22:24 +02:00
throw "Test262: This statement should not be evaluated.";
2017-04-20 18:31:29 +02:00
async function f(...a,) {
}