Navigation: Support "Navigate/Related Symbol" for expects/actuals
#KT-20952 Fixed
This commit is contained in:
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
expect class Foo {
|
||||
val <caret>bar: Int
|
||||
}
|
||||
|
||||
// REF: [jvm] (in test.Foo).bar
|
||||
// REF: [js] (in test.Foo).bar
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
actual class Foo {
|
||||
actual val bar: Int get() = 1
|
||||
}
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
actual class Foo {
|
||||
actual val bar: Int get() = 1
|
||||
}
|
||||
Reference in New Issue
Block a user