Debugger: Navigate to the right file in MPP projects (#KT-25152, #KT-25147)

This commit is contained in:
Yan Zhulanow
2018-07-08 17:01:02 +03:00
parent 02ee3aef3f
commit a4b3653e1c
27 changed files with 1013 additions and 53 deletions
@@ -0,0 +1,21 @@
//FILE: a/a.kt
class A(
val firstName: String,
val lastName: String,
val age: Int
) {
val c = 1
val d = "A"
}
//FILE: b/a.kt
class B(
val firstName: String,
val lastName: String,
val age: Int
) {
init {
val a = 5
val b = 6
}
}