tor-browser

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

async-func-decl-dstr-obj-rest-getter.js (1688B)


      1 // |reftest| async
      2 // This file was procedurally generated from the following sources:
      3 // - src/dstr-assignment-for-await/obj-rest-getter.case
      4 // - src/dstr-assignment-for-await/default/async-func-decl.template
      5 /*---
      6 description: Getter is called when obj is being deconstructed to a rest Object (for-await-of statement in an async function declaration)
      7 esid: sec-for-in-and-for-of-statements-runtime-semantics-labelledevaluation
      8 features: [object-rest, destructuring-binding, async-iteration]
      9 flags: [generated, async]
     10 includes: [propertyHelper.js]
     11 info: |
     12    IterationStatement :
     13      for await ( LeftHandSideExpression of AssignmentExpression ) Statement
     14 
     15    1. Let keyResult be the result of performing ? ForIn/OfHeadEvaluation(« »,
     16       AssignmentExpression, iterate).
     17    2. Return ? ForIn/OfBodyEvaluation(LeftHandSideExpression, Statement,
     18       keyResult, assignment, labelSet).
     19 
     20    13.7.5.13 Runtime Semantics: ForIn/OfBodyEvaluation
     21 
     22    [...]
     23    5. If destructuring is true and if lhsKind is assignment, then
     24       a. Assert: lhs is a LeftHandSideExpression.
     25       b. Let assignmentPattern be the parse of the source text corresponding to
     26          lhs using AssignmentPattern as the goal symbol.
     27    [...]
     28 ---*/
     29 let x;
     30 let count = 0;
     31 
     32 let iterCount = 0;
     33 async function fn() {
     34  for await ({...x} of [{ get v() { count++; return 2; } }]) {
     35    assert.sameValue(count, 1);
     36 
     37    verifyProperty(x, "v", {
     38      enumerable: true,
     39      writable: true,
     40      configurable: true,
     41      value: 2
     42    });
     43 
     44    iterCount += 1;
     45  }
     46 }
     47 
     48 let promise = fn();
     49 
     50 promise
     51  .then(() => assert.sameValue(iterCount, 1, 'iteration occurred as expected'), $DONE)
     52  .then($DONE, $DONE);