tor-browser

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

bug1808210.js (328B)


      1 // |jit-test| --ion-offthread-compile=off; --fast-warmup; --blinterp-warmup-threshold=1; --blinterp-eager
      2 
      3 let a = {};
      4 let b = {};
      5 class Foo {}
      6 let bar = function() { return new Foo(); };
      7 for (let i = 0; i < 100; i++) {
      8  for (let j = 0; j < i; j++) {
      9    b.x + a.x;
     10    bar();
     11  }
     12  for (let k = 0; k < 100; k++) {}
     13  bar();
     14 }