KT-3542 Can't navigate to property implementation
#KT-3542 Fixed
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
package testing.jj;
|
||||
|
||||
public class JavaBase extends testing.kt.KotlinBase {
|
||||
@Override
|
||||
public String getSome() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setSome(String someValue) {
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
package testing.kt
|
||||
|
||||
open class KotlinBase {
|
||||
open var <caret>some = "Test"
|
||||
}
|
||||
|
||||
// REF: (in testing.jj.JavaBase).getSome()
|
||||
// REF: (in testing.jj.JavaBase).setSome(String)
|
||||
Reference in New Issue
Block a user