Files
kotlin-fork/compiler/testData/codegen/boxInline/smap/interleavedFiles.kt
T
2021-02-02 17:53:52 +03:00

56 lines
520 B
Kotlin
Vendored

// FILE: 1.kt
package test
inline fun f() {}
// FILE: 2.kt
import test.*
inline fun g() {}
inline fun h() {
f() // line N+1 -> 1.kt:4
g() // line N+2 -> 2.kt:4
f() // line N+3 -> 1.kt:4 again
}
fun box(): String {
h()
return "OK"
}
// SMAP_FILE: 1.smap
// SMAP_FILE: 2.smap
SMAP
2.kt
Kotlin
*S Kotlin
*F
+ 1 2.kt
_2Kt
+ 2 1.kt
test/_1Kt
*L
1#1,17:1
4#1:19
7#1:21
8#1:23
4#1,7:24
4#2:18
4#2:20
4#2:22
*S KotlinDebug
*F
+ 1 2.kt
_2Kt
*L
8#1:19
13#1:21
13#1:23
13#1:24,7
7#1:18
9#1:20
13#1:22
*E