test262/test/language/expressions/dynamic-import/syntax/invalid/nested-if-assignment-expr-n...

38 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-08-10 21:14:38 +02:00
// This file was procedurally generated from the following sources:
2018-10-03 19:39:16 +02:00
// - src/dynamic-import/assignment-expr-not-optional.case
2018-10-02 20:59:07 +02:00
// - src/dynamic-import/syntax/invalid/nested-if.template
2018-08-10 21:14:38 +02:00
/*---
description: It's a SyntaxError if AssignmentExpression is omitted (nested if syntax)
esid: sec-import-call-runtime-semantics-evaluation
features: [dynamic-import]
2018-10-05 19:01:16 +02:00
flags: [generated]
2018-08-10 21:14:38 +02:00
negative:
phase: parse
type: SyntaxError
info: |
ImportCall :
import( AssignmentExpression )
1. Let referencingScriptOrModule be ! GetActiveScriptOrModule().
2. Assert: referencingScriptOrModule is a Script Record or Module Record (i.e. is not null).
3. Let argRef be the result of evaluating AssignmentExpression.
4. Let specifier be ? GetValue(argRef).
5. Let promiseCapability be ! NewPromiseCapability(%Promise%).
6. Let specifierString be ToString(specifier).
7. IfAbruptRejectPromise(specifierString, promiseCapability).
8. Perform ! HostImportModuleDynamically(referencingScriptOrModule, specifierString, promiseCapability).
9. Return promiseCapability.[[Promise]].
ImportCall :
2018-10-03 19:39:16 +02:00
import( AssignmentExpression[+In, ?Yield] )
2018-08-10 21:14:38 +02:00
---*/
2018-10-02 20:59:07 +02:00
2018-10-19 11:09:40 +02:00
$DONOTEVALUATE();
2018-08-10 21:14:38 +02:00
if (true) {
import();
}
/* The params region intentionally empty */