tor-browser

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

class-property.js (95B)


      1 export {};
      2 
      3 class Foo {
      4  prop = this.init();
      5 
      6  other = do {
      7    var one;
      8    let two;
      9  };
     10 }