tor-browser

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

top-level-no-new-call-expression.js (676B)


      1 // |reftest| error:SyntaxError
      2 // This file was procedurally generated from the following sources:
      3 // - src/dynamic-import/no-new-call-expression.case
      4 // - src/dynamic-import/syntax/invalid/top-level.template
      5 /*---
      6 description: ImportCall is a CallExpression, it can't be preceded by the new keyword (top level syntax)
      7 esid: sec-import-call-runtime-semantics-evaluation
      8 features: [dynamic-import]
      9 flags: [generated]
     10 negative:
     11  phase: parse
     12  type: SyntaxError
     13 info: |
     14    ImportCall :
     15        import( AssignmentExpression )
     16 
     17 
     18    CallExpression:
     19      ImportCall
     20 
     21    ImportCall :
     22        import( AssignmentExpression[+In, ?Yield] )
     23 ---*/
     24 
     25 $DONOTEVALUATE();
     26 
     27 new import('');