-
Notifications
You must be signed in to change notification settings - Fork 781
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamic import syntax support #1728
Labels
Comments
New productions:
AST format addition: interface Import {
type: 'Import';
} where it is being used: interface CallExpression {
type: 'CallExpression';
callee: Expression | Import;
arguments: ArgumentListElement[];
} References:
|
ariya
added a commit
to ariya/esprima
that referenced
this issue
Jan 29, 2017
ariya
added a commit
to ariya/esprima
that referenced
this issue
Jan 29, 2017
ariya
added a commit
to ariya/esprima
that referenced
this issue
Jan 30, 2017
ariya
added a commit
to ariya/esprima
that referenced
this issue
Jan 31, 2017
ariya
added a commit
to ariya/esprima
that referenced
this issue
Feb 23, 2017
ariya
added a commit
to ariya/esprima
that referenced
this issue
Feb 23, 2017
ariya
added a commit
that referenced
this issue
Feb 25, 2017
@ariya is it possible to release a minor version in v4 with this feature? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I couldn't find an issue tracking this already, but let me know if it is a duplicate. This may well be implementable now that it is Stage 3 (estree/estree#137).
The text was updated successfully, but these errors were encountered: