We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdc33f5 commit 9b01783Copy full SHA for 9b01783
1 file changed
tests/cases/fourslash/renameImportOfExportEquals.ts
@@ -0,0 +1,18 @@
1
+/// <reference path='fourslash.ts' />
2
+
3
+////declare namespace N {
4
+//// export var x: number;
5
+////}
6
+////declare module "mod" {
7
+//// export = N;
8
9
+////declare module "test" {
10
+//// import * as [|N|] from "mod";
11
+//// export { [|N|] }; // Renaming N here would rename
12
13
14
+let ranges = test.ranges()
15
+for (let range of ranges) {
16
+ goTo.position(range.start);
17
+ verify.renameLocations(/*findInStrings*/ false, /*findInComments*/ false);
18
+}
0 commit comments