tor-browser

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

private-fields.js (165B)


      1 load(libdir + 'bytecode-cache.js');
      2 
      3 function test() {
      4  class A {
      5    #x;
      6  }
      7 };
      8 
      9 evalWithCache(test.toString(), { assertEqBytecode: true, assertEqResult: true });