tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

yield-promise-reject-next-yield-star-async-iterator.js (2260B)


      1 // |reftest| async
      2 // This file was procedurally generated from the following sources:
      3 // - src/async-generators/yield-promise-reject-next-yield-star-async-iterator.case
      4 // - src/async-generators/default/async-class-decl-static-private-method.template
      5 /*---
      6 description: yield * (async iterator) is treated as throw value (Static async generator method as a ClassDeclaration element)
      7 esid: prod-AsyncGeneratorPrivateMethod
      8 features: [async-iteration, class-static-methods-private]
      9 flags: [generated, async]
     10 info: |
     11    ClassElement :
     12      static 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 let error = new Error();
     24 async function * readFile() {
     25  yield Promise.reject(error);
     26  yield "unreachable";
     27 }
     28 
     29 
     30 var callCount = 0;
     31 
     32 class C {
     33    static async *#gen() {
     34        callCount += 1;
     35        yield * readFile();
     36 
     37    }
     38    static get gen() { return this.#gen; }
     39 }
     40 
     41 // Test the private fields do not appear as properties before set to value
     42 assert(
     43  !Object.prototype.hasOwnProperty.call(C.prototype, "#gen"),
     44  "#gen does not appear as an own property on C prototype"
     45 );
     46 assert(
     47  !Object.prototype.hasOwnProperty.call(C, "#gen"),
     48  "#gen does not appear as an own property on C constructor"
     49 );
     50 
     51 var iter = C.gen();
     52 
     53 iter.next().then(() => {
     54  throw new Test262Error("Promise incorrectly resolved.");
     55 }, rejectValue => {
     56  // yield Promise.reject(error);
     57  assert.sameValue(rejectValue, error);
     58 
     59  iter.next().then(({done, value}) => {
     60    // iter is closed now.
     61    assert.sameValue(done, true, "The value of IteratorResult.done is `true`");
     62    assert.sameValue(value, undefined, "The value of IteratorResult.value is `undefined`");
     63  }).then($DONE, $DONE);
     64 }, $DONE).catch($DONE);
     65 
     66 assert.sameValue(callCount, 1);
     67 
     68 // Test the private fields do not appear as properties after set to value
     69 assert(
     70  !Object.prototype.hasOwnProperty.call(C.prototype, "#gen"),
     71  "#gen does not appear as an own property on C prototype"
     72 );
     73 assert(
     74  !Object.prototype.hasOwnProperty.call(C, "#gen"),
     75  "#gen does not appear as an own property on C constructor"
     76 );