mirror of https://github.com/tc39/test262.git
28 lines
758 B
JavaScript
28 lines
758 B
JavaScript
// This file was procedurally generated from the following sources:
|
|
// - src/dynamic-import/import-source-no-new-call-expression.case
|
|
// - src/dynamic-import/syntax/invalid/top-level.template
|
|
/*---
|
|
description: ImportCall is a CallExpression, it can't be preceded by the new keyword (top level syntax)
|
|
esid: sec-import-call-runtime-semantics-evaluation
|
|
features: [source-phase-imports, source-phase-imports-module-source, dynamic-import]
|
|
flags: [generated]
|
|
negative:
|
|
phase: parse
|
|
type: SyntaxError
|
|
info: |
|
|
ImportCall :
|
|
import( AssignmentExpression )
|
|
|
|
|
|
CallExpression:
|
|
ImportCall
|
|
|
|
ImportCall :
|
|
import . source ( AssignmentExpression[+In, ?Yield, ?Await] )
|
|
|
|
---*/
|
|
|
|
$DONOTEVALUATE();
|
|
|
|
new import.source('<module source>');
|