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-skip-non-enumerable.js (1915B)


      1 // |reftest| async
      2 // This file was procedurally generated from the following sources:
      3 // - src/dstr-assignment-for-await/obj-rest-skip-non-enumerable.case
      4 // - src/dstr-assignment-for-await/default/async-func-decl.template
      5 /*---
      6 description: Rest object doesn't contain non-enumerable properties (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 rest;
     30 let obj = {a: 3, b: 4};
     31 Object.defineProperty(obj, "x", { value: 4, enumerable: false });
     32 
     33 let iterCount = 0;
     34 async function fn() {
     35  for await ({...rest} of [obj]) {
     36    assert.sameValue(Object.getOwnPropertyDescriptor(rest, "x"), undefined);
     37 
     38    verifyProperty(rest, "a", {
     39      enumerable: true,
     40      writable: true,
     41      configurable: true,
     42      value: 3
     43    });
     44 
     45    verifyProperty(rest, "b", {
     46      enumerable: true,
     47      writable: true,
     48      configurable: true,
     49      value: 4
     50    });
     51 
     52    iterCount += 1;
     53  }
     54 }
     55 
     56 let promise = fn();
     57 
     58 promise
     59  .then(() => assert.sameValue(iterCount, 1, 'iteration occurred as expected'), $DONE)
     60  .then($DONE, $DONE);