Navigation: Support "Navigate/Related Symbol" for expects/actuals

#KT-20952 Fixed
This commit is contained in:
Alexey Sedunov
2017-11-01 18:17:17 +03:00
parent b2e5e9dab5
commit b20ffe76b7
42 changed files with 386 additions and 41 deletions
@@ -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
@@ -0,0 +1,5 @@
package test
actual class Foo {
actual val bar: Int get() = 1
}
@@ -0,0 +1,5 @@
package test
actual class Foo {
actual val bar: Int get() = 1
}