tor-browser

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

bug-1940719.js (164B)


      1 // |jit-test| allow-oom
      2 
      3 {
      4  const a = 1 << 28;
      5  const d = a / 8;
      6  let f = [];
      7  for (let g = 0; g < d; g++) {
      8    f[g] = g;
      9  }
     10  const g = a - 6;
     11  f[g] = g;
     12 }