tor-browser

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

async-func-dstr-var-ary-ptrn-rest-not-final-ary.js (1845B)


      1 // |reftest| error:SyntaxError
      2 // This file was procedurally generated from the following sources:
      3 // - src/dstr-binding-for-await/ary-ptrn-rest-not-final-ary.case
      4 // - src/dstr-binding-for-await/default/for-await-of-async-func-var.template
      5 /*---
      6 description: Rest element (array binding pattern) may not be followed by any element (for-await-of statement)
      7 esid: sec-for-in-and-for-of-statements-runtime-semantics-labelledevaluation
      8 features: [destructuring-binding, async-iteration]
      9 flags: [generated]
     10 negative:
     11  phase: parse
     12  type: SyntaxError
     13 info: |
     14    IterationStatement :
     15        for await ( var ForBinding of AssignmentExpression ) Statement
     16 
     17    [...]
     18    2. Return ? ForIn/OfBodyEvaluation(ForBinding, Statement, keyResult,
     19        varBinding, labelSet, async).
     20 
     21    13.7.5.13 Runtime Semantics: ForIn/OfBodyEvaluation
     22 
     23    [...]
     24    4. Let destructuring be IsDestructuring of lhs.
     25    [...]
     26    6. Repeat
     27       [...]
     28       j. If destructuring is false, then
     29          [...]
     30       k. Else
     31          i. If lhsKind is assignment, then
     32             [...]
     33          ii. Else if lhsKind is varBinding, then
     34              1. Assert: lhs is a ForBinding.
     35              2. Let status be the result of performing BindingInitialization
     36                 for lhs passing nextValue and undefined as the arguments.
     37          [...]
     38 
     39    13.3.3 Destructuring Binding Patterns
     40    ArrayBindingPattern[Yield] :
     41        [ Elisionopt BindingRestElement[?Yield]opt ]
     42        [ BindingElementList[?Yield] ]
     43        [ BindingElementList[?Yield] , Elisionopt BindingRestElement[?Yield]opt ]
     44 ---*/
     45 $DONOTEVALUATE();
     46 
     47 var iterCount = 0;
     48 
     49 async function fn() {
     50  for await (var [...[x], y] of [[1, 2, 3]]) {
     51    
     52 
     53    iterCount += 1;
     54  }
     55 }
     56 
     57 fn()
     58  .then(() => assert.sameValue(iterCount, 1, 'iteration occurred as expected'), $DONE)
     59  .then($DONE, $DONE);