-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Component commits: 2c0e01a Fix misplaced comma in auto imported specifier Co-authored-by: Andrew Branch <[email protected]>
- Loading branch information
1 parent
3e7a8e7
commit 65b84e7
Showing
2 changed files
with
25 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/// <reference path="fourslash.ts" /> | ||
|
||
// Bug #40219 only happens when existing import specifiers are unsorted. | ||
|
||
// @Filename: index.ts | ||
//// import { | ||
//// T2, | ||
//// T1, | ||
//// } from "./types"; | ||
//// | ||
//// const x: T3/**/ | ||
|
||
// @Filename: types.ts | ||
//// export type T1 = 0; | ||
//// export type T2 = 0; | ||
//// export type T3 = 0; | ||
|
||
verify.importFixAtPosition([`import { | ||
T2, | ||
T1, | ||
T3, | ||
} from "./types"; | ||
const x: T3`]); |