tor-browser

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

lex-and-nonlex.js (265B)


      1 var rollupLexAndNonlex = (function () {
      2  'use strict';
      3 
      4  function root() {
      5    function someHelper(){
      6      console.log("pause here", root, Thing);
      7    }
      8 
      9    class Thing {}
     10 
     11    someHelper();
     12  }
     13 
     14  return root;
     15 
     16 }());
     17 //# sourceMappingURL=lex-and-nonlex.js.map