blob: 09be936788b7ec0997a0045be000e67769823d5a [file] [log] [blame]
// Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Dynamic Import receives an AssignmentExpression (this)
esid: prod-ImportCall
info: |
ImportCall [Yield]:
import ( AssignmentExpression[+In, ?Yield] )
AssignmentExpression[In, Yield, Await]:
ConditionalExpression[?In, ?Yield, ?Await]
[+Yield]YieldExpression[?In, ?Await]
ArrowFunction[?In, ?Yield, ?Await]
AsyncArrowFunction[?In, ?Yield, ?Await]
LeftHandSideExpression[?Yield, ?Await] = AssignmentExpression[?In, ?Yield, ?Await]
LeftHandSideExpression[?Yield, ?Await] AssignmentOperator AssignmentExpression[?In, ?Yield, ?Await]
PrimaryExpression[Yield, Await]:
this
flags: [async]
features: [dynamic-import]
---*/
async function fn() {
const ns1 = await import(this); // import('./module-code_FIXTURE.js')
assert.sameValue(ns1.local1, 'Test262');
assert.sameValue(ns1.default, 42);
}
fn.call('./module-code_FIXTURE.js').then($DONE, $DONE).catch($DONE);