tor-browser

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

shadowing-loop-variable-in-same-scope-as-continue.js (420B)


      1 // Copyright (C) 2014 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.12
      5 description: >
      6    shadowing loop variable in same scope as continue
      7 ---*/
      8 var count = 0;
      9 for (let x = 0; x < 10;) {
     10  x++;
     11  count++;
     12  {
     13    let x = "hello";
     14    continue;
     15  }
     16 }
     17 assert.sameValue(count, 10, "The value of `count` is `10`");
     18 
     19 reportCompare(0, 0);