spread-sngl-empty.js (1528B)
1 // This file was procedurally generated from the following sources: 2 // - src/spread/sngl-empty.case 3 // - src/spread/default/array.template 4 /*--- 5 description: Spread operator applied to the only argument when no iteration occurs (Array initializer) 6 esid: sec-runtime-semantics-arrayaccumulation 7 flags: [generated] 8 info: | 9 SpreadElement : ...AssignmentExpression 10 11 1. Let spreadRef be the result of evaluating AssignmentExpression. 12 2. Let spreadObj be ? GetValue(spreadRef). 13 3. Let iterator be ? GetIterator(spreadObj). 14 4. Repeat 15 a. Let next be ? IteratorStep(iterator). 16 b. If next is false, return nextIndex. 17 c. Let nextValue be ? IteratorValue(next). 18 d. Let status be CreateDataProperty(array, ToString(ToUint32(nextIndex)), 19 nextValue). 20 e. Assert: status is true. 21 f. Let nextIndex be nextIndex + 1. 22 23 12.3.6.1 Runtime Semantics: ArgumentListEvaluation 24 25 ArgumentList : ... AssignmentExpression 26 27 1. Let list be an empty List. 28 2. Let spreadRef be the result of evaluating AssignmentExpression. 29 3. Let spreadObj be GetValue(spreadRef). 30 4. Let iterator be GetIterator(spreadObj). 31 5. ReturnIfAbrupt(iterator). 32 6. Repeat 33 a. Let next be IteratorStep(iterator). 34 b. ReturnIfAbrupt(next). 35 c. If next is false, return list. 36 [...] 37 ---*/ 38 39 var callCount = 0; 40 41 (function() { 42 assert.sameValue(arguments.length, 0); 43 callCount += 1; 44 }.apply(null, [...[]])); 45 46 assert.sameValue(callCount, 1); 47 48 reportCompare(0, 0);