tor-browser

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

fn-body-lex-and-nonlex.js (210B)


      1 function fn() {
      2  var nonlex;
      3  let lex;
      4 
      5 }
      6 
      7 function fn2() {
      8  function nonlex(){}
      9  let lex;
     10 
     11 }
     12 
     13 function fn3() {
     14  var nonlex;
     15  class Thing {}
     16 
     17 }
     18 
     19 function fn4() {
     20  function nonlex(){}
     21  class Thing {}
     22 
     23 }