mirror of https://github.com/tc39/test262.git
27 lines
686 B
JavaScript
27 lines
686 B
JavaScript
|
// This file was procedurally generated from the following sources:
|
||
|
// - src/dynamic-import/no-new-call-expression.case
|
||
|
// - src/dynamic-import/syntax/invalid/top-level.template
|
||
|
/*---
|
||
|
description: ImportCall is a CallExpression, it can't be preceeded by the new keyword (top level syntax)
|
||
|
esid: sec-import-call-runtime-semantics-evaluation
|
||
|
features: [dynamic-import]
|
||
|
flags: [generated]
|
||
|
negative:
|
||
|
phase: parse
|
||
|
type: SyntaxError
|
||
|
info: |
|
||
|
ImportCall :
|
||
|
import( AssignmentExpression )
|
||
|
|
||
|
|
||
|
CallExpression:
|
||
|
ImportCall
|
||
|
|
||
|
ImportCall :
|
||
|
import( AssignmentExpression[+In, ?Yield] )
|
||
|
---*/
|
||
|
|
||
|
throw "Test262: This statement should not be evaluated.";
|
||
|
|
||
|
new import('');
|