Find Usages: Restrict search scope of private top-level declarations
#KT-7622 Fixed
This commit is contained in:
+1
-3
@@ -1,9 +1,7 @@
|
||||
package a;
|
||||
|
||||
import b.TestKt;
|
||||
|
||||
class J {
|
||||
void bar() {
|
||||
TestKt.test();
|
||||
MainKt.test();
|
||||
}
|
||||
}
|
||||
|
||||
-2
@@ -1,7 +1,5 @@
|
||||
package a
|
||||
|
||||
import b.test
|
||||
|
||||
fun bar() {
|
||||
test()
|
||||
}
|
||||
|
||||
Vendored
-1
@@ -1,2 +1 @@
|
||||
Getter for property bar uses property foo which will be inaccessible after move
|
||||
Property foo uses property bar which will be inaccessible after move
|
||||
+2
-4
@@ -1,10 +1,8 @@
|
||||
package a;
|
||||
|
||||
import b.TestKt;
|
||||
|
||||
class J {
|
||||
void bar() {
|
||||
TestKt.setTest("");
|
||||
System.out.println(TestKt.getTest());
|
||||
MainKt.setTest("");
|
||||
System.out.println(MainKt.getTest());
|
||||
}
|
||||
}
|
||||
|
||||
-2
@@ -1,7 +1,5 @@
|
||||
package a
|
||||
|
||||
import b.test
|
||||
|
||||
fun bar() {
|
||||
test = ""
|
||||
println(test)
|
||||
|
||||
Reference in New Issue
Block a user