Rename: Use qualified class name when looking for occurrences in non-code files

#KT-14128 Fixed
 #KT-13862 Fixed
 #KT-6199 Fixed
This commit is contained in:
Alexey Sedunov
2016-10-04 18:34:57 +03:00
parent da1178fe0c
commit fad4944eee
10 changed files with 89 additions and 2 deletions
@@ -0,0 +1,3 @@
C
A.B.C
test.A.B.D
@@ -0,0 +1,9 @@
package test
class A {
private class B {
class D {
}
}
}
@@ -0,0 +1,3 @@
C
A.B.C
test.A.B.C
@@ -0,0 +1,9 @@
package test
class A {
private class B {
class /*rename*/C {
}
}
}
@@ -0,0 +1,6 @@
{
"type": "MARKED_ELEMENT",
"mainFile": "test/test.kt",
"newName": "D",
"withRuntime": "true"
}