tor-browser

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

bug1894604.js (125B)


      1 class C {
      2  set f(val) {
      3    this.f = val;
      4    super.g++;
      5  }
      6 }
      7 
      8 let c = new C();
      9 gczeal(14,50);
     10 try {
     11  c.f = 1;
     12 } catch {}