mirror of https://github.com/tc39/test262.git
20 lines
685 B
JavaScript
20 lines
685 B
JavaScript
// Copyright (C) 2021 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
description: >
|
|
ImportCall parameter list forwards the Yield production parameter - invalid IdentifierReference
|
|
esid: sec-import-call-runtime-semantics-evaluation
|
|
info: |
|
|
ImportCall[Yield, Await]:
|
|
import ( AssignmentExpression[+In, ?Yield, ?Await] ,opt )
|
|
import ( AssignmentExpression[+In, ?Yield, ?Await] , AssignmentExpression[+In, ?Yield, ?Await] ,opt )
|
|
features: [dynamic-import, import-attributes]
|
|
flags: [onlyStrict]
|
|
negative:
|
|
phase: parse
|
|
type: SyntaxError
|
|
---*/
|
|
$DONOTEVALUATE();
|
|
|
|
import('./empty_FIXTURE.js', yield);
|