tor-browser

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

parse-err-decl-pos-import-switch-dftl.js (422B)


      1 // |reftest| error:SyntaxError module
      2 // Copyright (C) 2016 the V8 project authors. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 /*---
      5 description: Statement cannot contain an `import` declaration
      6 esid: sec-modules
      7 negative:
      8  phase: parse
      9  type: SyntaxError
     10 flags: [module]
     11 ---*/
     12 
     13 $DONOTEVALUATE();
     14 
     15 switch(0) { default: import v from './decl-pos-import-switch-dftl.js'; }