tor-browser

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

try-catch-1.js (131B)


      1 function F() {
      2    try {
      3 var T = {};
      4        throw 12;
      5    } catch (e) {
      6 // Don't throw.
      7        T.x = 5;
      8    }
      9 }
     10 F();
     11 F();
     12 F();