tor-browser

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

bug1926238.js (198B)


      1 class Cls {
      2  constructor(x) {
      3    f(x);
      4    super[this];
      5  }
      6 }
      7 function f(x) {
      8  if (x > 0) {
      9    new Cls(x - 1);
     10  }
     11 }
     12 function test() {
     13  for (var i = 0; i < 1000; i++) {
     14    f(5);
     15  }
     16 }
     17 test();