tor-browser

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

let-after-directive.js (203B)


      1 // 'let' after "use strict" directive without semicolon is lexed as TOK_NAME
      2 // before parsing the directive.  'let' with TOK_NAME should be handled
      3 // correctly in strict mode.
      4 
      5 "use strict"
      6 let a = 1;