spread-mult-literal.js (1501B)
1 // This file was procedurally generated from the following sources: 2 // - src/spread/mult-literal.case 3 // - src/spread/default/call-expr.template 4 /*--- 5 description: Spread operator applied to AssignmentExpression following other elements (CallExpression) 6 esid: sec-function-calls-runtime-semantics-evaluation 7 flags: [generated] 8 info: | 9 CallExpression : MemberExpression Arguments 10 11 [...] 12 9. Return EvaluateDirectCall(func, thisValue, Arguments, tailCall). 13 14 12.3.4.3 Runtime Semantics: EvaluateDirectCall 15 16 1. Let argList be ArgumentListEvaluation(arguments). 17 [...] 18 6. Let result be Call(func, thisValue, argList). 19 [...] 20 21 12.3.6.1 Runtime Semantics: ArgumentListEvaluation 22 23 ArgumentList : ArgumentList , ... AssignmentExpression 24 25 1. Let precedingArgs be the result of evaluating ArgumentList. 26 2. Let spreadRef be the result of evaluating AssignmentExpression. 27 3. Let iterator be GetIterator(GetValue(spreadRef) ). 28 4. ReturnIfAbrupt(iterator). 29 5. Repeat 30 a. Let next be IteratorStep(iterator). 31 b. ReturnIfAbrupt(next). 32 c. If next is false, return precedingArgs. 33 ---*/ 34 35 var callCount = 0; 36 37 (function() { 38 assert.sameValue(arguments.length, 5); 39 assert.sameValue(arguments[0], 5); 40 assert.sameValue(arguments[1], 6); 41 assert.sameValue(arguments[2], 7); 42 assert.sameValue(arguments[3], 8); 43 assert.sameValue(arguments[4], 9); 44 callCount += 1; 45 }(5, ...[6, 7, 8], 9)); 46 47 assert.sameValue(callCount, 1); 48 49 reportCompare(0, 0);