Misc: Support light-methodless members in overrider search
In particular, support line markers for expect-class members and navigation to expect-class members from corresponding base members
This commit is contained in:
+8
-2
@@ -2,6 +2,12 @@
|
||||
|
||||
package test
|
||||
|
||||
actual open class ExpectedChild : SimpleParent()
|
||||
actual open class ExpectedChild : SimpleParent() {
|
||||
actual override fun foo(n: Int) {}
|
||||
actual override val bar: Int get() = 1
|
||||
}
|
||||
|
||||
class ExpectedChildChildJvm : ExpectedChild()
|
||||
class ExpectedChildChildJvm : ExpectedChild() {
|
||||
override fun foo(n: Int) {}
|
||||
override val bar: Int get() = 1
|
||||
}
|
||||
Reference in New Issue
Block a user