tor-browser

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

let-ary-ptrn-rest-init-ary.js (1774B)


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