tor-browser

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

cptn-decl-itr.js (1125B)


      1 // Copyright (C) 2016 the V8 project authors. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 /*---
      4 es6id: 13.7.5.11
      5 description: >
      6    Completion value when head has a declaration and iteration occurs
      7 info: |
      8    IterationStatement : for ( var ForBinding in Expression ) Statement
      9 
     10    1. Let keyResult be ForIn/OfHeadEvaluation( « », Expression, enumerate).
     11    2. ReturnIfAbrupt(keyResult).
     12    3. Return ForIn/OfBodyEvaluation(ForBinding, Statement, keyResult,
     13       varBinding, labelSet).
     14 
     15    13.7.5.13 Runtime Semantics: ForIn/OfBodyEvaluation
     16 
     17    [...]
     18    2. Let V = undefined.
     19    [...]
     20    5. Repeat
     21       a. Let nextResult be IteratorStep(iterator).
     22       b. ReturnIfAbrupt(nextResult).
     23       c. If nextResult is false, return NormalCompletion(V).
     24       [...]
     25       k. Let result be the result of evaluating stmt.
     26       [...]
     27       n. If result.[[value]] is not empty, let V be result.[[value]].
     28 ---*/
     29 
     30 assert.sameValue(eval('1; for (var a in { x: 0 }) { }'), undefined);
     31 assert.sameValue(eval('2; for (var b in { x: 0 }) { 3; }'), 3);
     32 
     33 reportCompare(0, 0);