tor-browser

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

bug1993404.js (225B)


      1 class C {
      2  constructor(a,b,c) {}
      3 }
      4 class D extends C {
      5  constructor(x) {
      6    super(...x);
      7  }
      8 }
      9 let P = new Proxy(D, {});
     10 
     11 function foo() {
     12  return new P([1,2]);
     13 }
     14 
     15 with ({}) {}
     16 for (var i = 0; i < 2000; i++) {
     17  foo();
     18 }