You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This second use has the same compile error: CodeActionKindSourceSortImports is undefined. Use the TypeScript-specific CodeActionKindSourceSortImportsTs constant so the fourslash test package builds.
Validate resolved target before rejecting declaration-file imports
tsc/internal/checker/checker.go:14857
This tests the module specifier text rather than the resolved file. A valid bare package such as import source m from "foo.d.ts" can export a .wasm file, but IsDeclarationFileName("foo.d.ts") makes the import an error even though no declaration file was imported. Require the resolved target to be a declaration too before issuing this diagnostic.
Use named-import comparer when sorting local bindings
tsc/internal/ls/organizeimports.go:488
This sorts local bindings with the module-specifier comparer. In auto mode, module-specifier and named-import casing/order are detected independently, so source bindings can be ordered differently from the file's identifier convention. Pass the named-import comparer for these names instead (the explicit sort test does not expose this because both comparers are identical there).
This file contains hidden or 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
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.
Fixes #61216
This patch adds support for TC39 Source Phase Imports