-
Notifications
You must be signed in to change notification settings - Fork 12.6k
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
Add support for import defer
proposal
#60757
Open
nicolo-ribaudo
wants to merge
17
commits into
microsoft:main
Choose a base branch
from
nicolo-ribaudo:import-defer
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
bd82b0b
Add support for `import defer` proposal
ryzokuken 4b3c02c
Update AST to unify `type` with other modifiers
nicolo-ribaudo b66fb03
Add test for comments around `defer`
nicolo-ribaudo bdf98f5
Remove unnecessary backwards compat check
nicolo-ribaudo e8d76ea
Add support for `import.defer(...)`
nicolo-ribaudo 68d3d25
Also support `module: NodeNext`
nicolo-ribaudo 066d762
`aren't` -> `are not`
nicolo-ribaudo daf55fe
ImportPhaseModifier -> ImportPhaseModifierSyntaxKind
nicolo-ribaudo ef4eecb
Move import clause checks to checker.ts
nicolo-ribaudo 5f4ca3b
Report `'(' expected` for import.defer
nicolo-ribaudo 84f7535
Make meta property error localizable
nicolo-ribaudo 33f70c0
Move `import.defer` checks to checker.ts
nicolo-ribaudo 2a8e8b6
Unify tests testing different values of `module`
nicolo-ribaudo 455d843
Move `errorType` for `import.defer` handling
nicolo-ribaudo 831d771
Do not consider `import.defer` in `import.defer(...)` as an expression
nicolo-ribaudo b764f3a
fmt
nicolo-ribaudo 8c85100
Sort tokens alphabetically
nicolo-ribaudo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should
import.defer
be returningerrorType
here? Should we also report an error here forimport.defer
outside of a call?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I now moved the
import.defer
check to thecheckMetaProperty
, which also already callscheckGrammarMetaProperty
to check ifimport.defer
is outside of a call. I also changesisExpressionNode()
to returnfalse
for theimport.defer
inimport.defer(...)
.So now this branch is only reached if we have a "standalone"
import.defer
, for whichcheckGrammarMetaProperty
reports an error, and so returningerrorType
is correct.