Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Closed
Description
Suggestion
In#9211: we are planning to enforce the following invariants in our AST forTSExternalModuleReference (used inTSImportEqualsDeclaration):
expressionmust be a string literal, so the following is a parsing error:importx=require(1);importx=require(1+1);
@sosukesuzuki@fisker Do these look safe to you?