Searching for property accessors, too.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package test;
|
||||
|
||||
import foo.FooPackage;
|
||||
import foo.Obj;
|
||||
|
||||
class usedInJava {
|
||||
public static void main(String[] args) {
|
||||
FooPackage.getUsedByGetter();
|
||||
FooPackage.setUsedBySetter(":|");
|
||||
System.out.println(Obj.CONST);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package foo
|
||||
|
||||
val usedByGetter = ":)"
|
||||
var usedBySetter = ":)"
|
||||
|
||||
object Obj {
|
||||
val CONST = ":)"
|
||||
}
|
||||
Reference in New Issue
Block a user