tor-browser

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

bug509982.js (205B)


      1 function g() {
      2    const e = 0;
      3    return function () {
      4        switch (7) {
      5        case e:
      6        }
      7    };
      8 }
      9 
     10 for (var i = 0; i < 2; i++) {
     11    let f = g;
     12    f();
     13 }
     14 
     15 // Just test that we don't crash.