yield-star-next-call-done-get-abrupt.js (3017B)
1 // |reftest| async 2 // This file was procedurally generated from the following sources: 3 // - src/async-generators/yield-star-next-call-done-get-abrupt.case 4 // - src/async-generators/default/async-class-expr-private-method.template 5 /*--- 6 description: Abrupt completion while getting done (Async generator method as a ClassExpression element) 7 esid: prod-AsyncGeneratorPrivateMethod 8 features: [Symbol.iterator, Symbol.asyncIterator, async-iteration, class-methods-private] 9 flags: [generated, async] 10 info: | 11 ClassElement : 12 PrivateMethodDefinition 13 14 MethodDefinition : 15 AsyncGeneratorMethod 16 17 Async Generator Function Definitions 18 19 AsyncGeneratorMethod : 20 async [no LineTerminator here] * PropertyName ( UniqueFormalParameters ) { AsyncGeneratorBody } 21 22 23 YieldExpression: yield * AssignmentExpression 24 ... 25 6. Repeat 26 a. If received.[[Type]] is normal, then 27 ii. Let innerResult be ? Invoke(iterator, "next", 28 « received.[[Value]] »). 29 iii. If generatorKind is async, then set innerResult to 30 ? Await(innerResult). 31 ... 32 v. Let done be ? IteratorComplete(innerResult). 33 ... 34 35 ---*/ 36 var reason = {}; 37 var obj = { 38 get [Symbol.iterator]() { 39 throw new Test262Error('it should not get Symbol.iterator'); 40 }, 41 [Symbol.asyncIterator]() { 42 return { 43 next() { 44 return { 45 get done() { 46 throw reason; 47 } 48 }; 49 } 50 }; 51 } 52 }; 53 54 55 56 var callCount = 0; 57 58 var C = class { 59 async *#gen() { 60 callCount += 1; 61 yield* obj; 62 throw new Test262Error('abrupt completion closes iter'); 63 64 } 65 get gen() { return this.#gen; } 66 } 67 68 const c = new C(); 69 70 // Test the private fields do not appear as properties before set to value 71 assert( 72 !Object.prototype.hasOwnProperty.call(C.prototype, "#gen"), 73 "#gen does not appear as an own property on C prototype" 74 ); 75 assert( 76 !Object.prototype.hasOwnProperty.call(C, "#gen"), 77 "#gen does not appear as an own property on C constructor" 78 ); 79 assert( 80 !Object.prototype.hasOwnProperty.call(c, "#gen"), 81 "#gen does not appear as an own property on C instance" 82 ); 83 84 var iter = c.gen(); 85 86 iter.next().then(() => { 87 throw new Test262Error('Promise incorrectly fulfilled.'); 88 }, v => { 89 assert.sameValue(v, reason, "reject reason"); 90 91 iter.next().then(({ done, value }) => { 92 assert.sameValue(done, true, 'the iterator is completed'); 93 assert.sameValue(value, undefined, 'value is undefined'); 94 }).then($DONE, $DONE); 95 }).catch($DONE); 96 97 assert.sameValue(callCount, 1); 98 99 // Test the private fields do not appear as properties after set to value 100 assert( 101 !Object.prototype.hasOwnProperty.call(C.prototype, "#gen"), 102 "#gen does not appear as an own property on C prototype" 103 ); 104 assert( 105 !Object.prototype.hasOwnProperty.call(C, "#gen"), 106 "#gen does not appear as an own property on C constructor" 107 ); 108 assert( 109 !Object.prototype.hasOwnProperty.call(c, "#gen"), 110 "#gen does not appear as an own property on C instance" 111 );