tor-browser

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

bug767234.js (204B)


      1 function* gen()
      2 {
      3    var local = new Date();
      4    yield 1;
      5    local = null;
      6    gc();
      7    gcslice(0); // Start IGC, but don't mark anything.
      8    yield 2;
      9 }
     10 
     11 var g = gen();
     12 g.next();
     13 g.next();
     14 gcslice();