rest-params-trailing-comma-early-error.js (2037B)
1 // |reftest| error:SyntaxError 2 // This file was procedurally generated from the following sources: 3 // - src/function-forms/rest-params-trailing-comma-early-error.case 4 // - src/function-forms/syntax/cls-decl-async-meth-static.template 5 /*--- 6 description: It's a syntax error if a FunctionRestParameter is followed by a trailing comma (static class declaration async method) 7 esid: sec-runtime-semantics-bindingclassdeclarationevaluation 8 flags: [generated] 9 negative: 10 phase: parse 11 type: SyntaxError 12 info: | 13 ClassDeclaration : class BindingIdentifier ClassTail 14 15 1. Let className be StringValue of BindingIdentifier. 16 2. Let value be the result of ClassDefinitionEvaluation of ClassTail with 17 argument className. 18 [...] 19 20 14.5.14 Runtime Semantics: ClassDefinitionEvaluation 21 22 21. For each ClassElement m in order from methods 23 a. If IsStatic of m is false, then 24 b. Else, 25 Let status be the result of performing PropertyDefinitionEvaluation for 26 m with arguments F and false. 27 [...] 28 29 Runtime Semantics: PropertyDefinitionEvaluation 30 31 AsyncMethod : async PropertyName ( UniqueFormalParameters ) { AsyncFunctionBody } 32 33 1. Let propKey be the result of evaluating PropertyName. 34 2. ReturnIfAbrupt(propKey). 35 3. If the function code for this AsyncMethod is strict mode code, let strict be true. Otherwise 36 let strict be false. 37 4. Let scope be the LexicalEnvironment of the running execution context. 38 5. Let closure be ! AsyncFunctionCreate(Method, UniqueFormalParameters, AsyncFunctionBody, 39 scope, strict). 40 [...] 41 42 Trailing comma in the parameters list 43 44 14.1 Function Definitions 45 46 FormalParameters[Yield, Await] : 47 [empty] 48 FunctionRestParameter[?Yield, ?Await] 49 FormalParameterList[?Yield, ?Await] 50 FormalParameterList[?Yield, ?Await] , 51 FormalParameterList[?Yield, ?Await] , FunctionRestParameter[?Yield, ?Await] 52 ---*/ 53 $DONOTEVALUATE(); 54 55 56 class C { 57 static async method(...a,) { 58 59 } 60 }