tor-browser

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

bug1921211.js (334B)


      1 // |jit-test| --fast-warmup; --ion-pruning=off; --no-threads
      2 function test() {
      3  var arr = new BigInt64Array(117);
      4  for (var i = 0; i < 4; i++) {
      5    for (var j = 0; j < 4; j++) {
      6      var bigInt1 = arr[0];
      7      var a1 = Object.is(arr[i], bigInt1);
      8      var a2 = [...arr];
      9      try { throw 1; } catch (e) { }
     10    }
     11  }
     12 }
     13 test();