tor-browser

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

bug-1979359.js (215B)


      1 // |jit-test| --enable-symbols-as-weakmap-keys
      2 gcslice(0);
      3 newGlobal({newCompartment: true});
      4 var key = Symbol('foo');
      5 var map = new WeakMap();
      6 map.set(key, 2);
      7 gcslice(0);
      8 var key = Symbol('bar');
      9 map.set(key, 2);