var-obj-ptrn-rest-getter.js (1564B)
1 // This file was procedurally generated from the following sources: 2 // - src/dstr-binding/obj-ptrn-rest-getter.case 3 // - src/dstr-binding/default/for-of-var.template 4 /*--- 5 description: Getter is called when obj is being deconstructed to a rest Object (for-of statement) 6 esid: sec-for-in-and-for-of-statements-runtime-semantics-labelledevaluation 7 features: [object-rest, destructuring-binding] 8 flags: [generated] 9 includes: [propertyHelper.js] 10 info: | 11 IterationStatement : 12 for ( var ForBinding of AssignmentExpression ) Statement 13 14 [...] 15 3. Return ForIn/OfBodyEvaluation(ForBinding, Statement, keyResult, 16 varBinding, labelSet). 17 18 13.7.5.13 Runtime Semantics: ForIn/OfBodyEvaluation 19 20 [...] 21 3. Let destructuring be IsDestructuring of lhs. 22 [...] 23 5. Repeat 24 [...] 25 h. If destructuring is false, then 26 [...] 27 i. Else 28 i. If lhsKind is assignment, then 29 [...] 30 ii. Else if lhsKind is varBinding, then 31 1. Assert: lhs is a ForBinding. 32 2. Let status be the result of performing BindingInitialization 33 for lhs passing nextValue and undefined as the arguments. 34 [...] 35 ---*/ 36 var count = 0; 37 38 var iterCount = 0; 39 40 for (var {...x} of [{ get v() { count++; return 2; } }]) { 41 assert.sameValue(count, 1); 42 43 verifyProperty(x, "v", { 44 enumerable: true, 45 writable: true, 46 configurable: true, 47 value: 2 48 }); 49 50 iterCount += 1; 51 } 52 53 assert.sameValue(iterCount, 1, 'Iteration occurred as expected'); 54 55 reportCompare(0, 0);