tor-browser

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

bug1911858.js (182B)


      1 // |jit-test| --fast-warmup; --no-threads
      2 function f(x, y) {
      3    if (!Array.isArray(x)) {
      4        y = [y];
      5    }
      6    gc();
      7 }
      8 for (var i = 0; i < 100; i++) {
      9    [1, 2, 3].sort(f);
     10 }