tor-browser

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

getname-uninitialized-let.js (153B)


      1 function f() {
      2    for (var i = 0; i < 12; i++) {
      3        try {
      4            eval("");
      5 
      6            void x;
      7        } catch (e) { }
      8    }
      9 }
     10 
     11 f();
     12 
     13 let x;