call-spread-err-mult-err-itr-get-get.js (1515B)
1 // This file was procedurally generated from the following sources: 2 // - src/spread/mult-err-itr-get-get.case 3 // - src/spread/error/super-call.template 4 /*--- 5 description: Spread operator following other arguments when GetIterator fails (@@iterator property access) (SuperCall) 6 esid: sec-super-keyword-runtime-semantics-evaluation 7 features: [Symbol.iterator] 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 7.4.1 GetIterator ( obj, method ) 29 30 1. If method was not passed, then 31 a. Let method be ? GetMethod(obj, @@iterator). 32 ---*/ 33 var iter = {}; 34 Object.defineProperty(iter, Symbol.iterator, { 35 get: function() { 36 throw new Test262Error(); 37 } 38 }); 39 40 class Test262ParentClass { 41 constructor() {} 42 } 43 44 class Test262ChildClass extends Test262ParentClass { 45 constructor() { 46 super(0, ...iter); 47 } 48 } 49 50 assert.throws(Test262Error, function() { 51 new Test262ChildClass(); 52 }); 53 54 reportCompare(0, 0);