tor-browser

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

bug1919246-2.js (185B)


      1 // |jit-test| --fast-warmup
      2 function f() {
      3  var i = 0;
      4  while (true) {
      5    for (let a = 2; a;) {
      6      for (c = 0; c < 10;) {
      7        if (i++ > 2500) return;
      8      }
      9    }
     10  }
     11 }
     12 f();