tor-browser

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

access.js (126B)


      1 class C {
      2    x = 5;
      3 }
      4 
      5 c = new C();
      6 assertEq(5, c.x);
      7 
      8 if (typeof reportCompare === "function")
      9  reportCompare(true, true);