array-elem-iter-nrml-close-err.js (1435B)
1 // This file was procedurally generated from the following sources: 2 // - src/dstr-assignment/array-elem-iter-nrml-close-err.case 3 // - src/dstr-assignment/error/assignment-expr.template 4 /*--- 5 description: Abrupt completion returned from IteratorClose (AssignmentExpression) 6 esid: sec-variable-statement-runtime-semantics-evaluation 7 features: [Symbol.iterator, destructuring-binding] 8 flags: [generated] 9 info: | 10 VariableDeclaration : BindingPattern Initializer 11 12 1. Let rhs be the result of evaluating Initializer. 13 2. Let rval be GetValue(rhs). 14 3. ReturnIfAbrupt(rval). 15 4. Return the result of performing BindingInitialization for 16 BindingPattern passing rval and undefined as arguments. 17 18 ArrayAssignmentPattern : [ AssignmentElementList ] 19 20 [...] 21 5. If iteratorRecord.[[done]] is false, return IteratorClose(iterator, result). 22 23 ---*/ 24 var nextCount = 0; 25 var returnCount = 0; 26 var _; 27 var iterable = {}; 28 var iterator = { 29 next: function() { 30 nextCount += 1; 31 // Set an upper-bound to limit unnecessary iteration in non-conformant 32 // implementations 33 return { done: nextCount > 10 }; 34 }, 35 return: function() { 36 returnCount += 1; 37 throw new Test262Error(); 38 } 39 }; 40 iterable[Symbol.iterator] = function() { 41 return iterator; 42 }; 43 44 assert.throws(Test262Error, function() { 45 0, [ _ ] = iterable; 46 }); 47 48 assert.sameValue(nextCount, 1); 49 assert.sameValue(returnCount, 1); 50 51 reportCompare(0, 0);