call-spread-err-mult-err-expr-throws.js (1269B)
1 // This file was procedurally generated from the following sources: 2 // - src/spread/mult-err-expr-throws.case 3 // - src/spread/error/super-call.template 4 /*--- 5 description: Spread operator following other arguments when evaluation throws (SuperCall) 6 esid: sec-super-keyword-runtime-semantics-evaluation 7 features: [generators] 8 flags: [generated] 9 info: | 10 SuperCall : super Arguments 11 12 1. Let newTarget be GetNewTarget(). 13 2. If newTarget is undefined, throw a ReferenceError exception. 14 3. Let func be GetSuperConstructor(). 15 4. ReturnIfAbrupt(func). 16 5. Let argList be ArgumentListEvaluation of Arguments. 17 [...] 18 19 12.3.6.1 Runtime Semantics: ArgumentListEvaluation 20 21 ArgumentList : ArgumentList , ... AssignmentExpression 22 23 1. Let precedingArgs be the result of evaluating ArgumentList. 24 2. Let spreadRef be the result of evaluating AssignmentExpression. 25 3. Let iterator be GetIterator(GetValue(spreadRef) ). 26 4. ReturnIfAbrupt(iterator). 27 28 ---*/ 29 30 class Test262ParentClass { 31 constructor() {} 32 } 33 34 class Test262ChildClass extends Test262ParentClass { 35 constructor() { 36 super(0, ...function*() { throw new Test262Error(); }()); 37 } 38 } 39 40 assert.throws(Test262Error, function() { 41 new Test262ChildClass(); 42 }); 43 44 reportCompare(0, 0);