-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
internal-issue-createdAn internal Google issue has been created to track this GitHub issueAn internal Google issue has been created to track this GitHub issuetriage-doneHas been reviewed by someone on triage rotation.Has been reviewed by someone on triage rotation.
Description
Support dynamic import :
https://developers.google.com/web/updates/2017/11/dynamic-import
module.js :
export const foo = _ => {
console.log('foo');
}
main.js :
const main = async _ => {
const m = await import('module.js');
m.foo();
(await import('module.js')).foo();
}
main();
Should display :
foo
foo
The thing is about supporting 'export' and 'import' keywords.
teppeis, au-phiware, nicksrandall, maxmilton, taromero and 16 more
Metadata
Metadata
Assignees
Labels
internal-issue-createdAn internal Google issue has been created to track this GitHub issueAn internal Google issue has been created to track this GitHub issuetriage-doneHas been reviewed by someone on triage rotation.Has been reviewed by someone on triage rotation.