We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Code
See moveToNewFile_moveImport.ts.
moveToNewFile_moveImport.ts
[|import { a, b } from "m"; a;|] b;
Expected behavior:
The import of b is kept in the original file since it's still needed.
b
Actual behavior:
The import is wholly removed from the old file, and an extra import is added to the new file for a even though it already has that.
a
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Code
See
moveToNewFile_moveImport.ts
.Expected behavior:
The import of
b
is kept in the original file since it's still needed.Actual behavior:
The import is wholly removed from the old file, and an extra import is added to the new file for
a
even though it already has that.The text was updated successfully, but these errors were encountered: