tor-browser

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

var-ary-ptrn-rest-init-obj.js (1667B)


      1 // |reftest| error:SyntaxError
      2 // This file was procedurally generated from the following sources:
      3 // - src/dstr-binding/ary-ptrn-rest-init-obj.case
      4 // - src/dstr-binding/default/for-of-var.template
      5 /*---
      6 description: Rest element (nested object 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 ( var ForBinding of AssignmentExpression ) Statement
     16 
     17    [...]
     18    3. Return ForIn/OfBodyEvaluation(ForBinding, Statement, keyResult,
     19       varBinding, 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              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 for (var [...{ x } = []] of [[]]) {
     50  
     51 
     52  iterCount += 1;
     53 }
     54 
     55 assert.sameValue(iterCount, 1, 'Iteration occurred as expected');