27fb46712a
This commit unifies the expectation format between the stepping and LVT tests in the new debugging test harness. Furthermore, it introduces a compression of runs of locations without linenumbers. These default to showing as bytecode offsets from previous line number, which overspecifies the tests: the bytecodes chosen should not be constrained by a debugging step test.
16 lines
233 B
Kotlin
Vendored
16 lines
233 B
Kotlin
Vendored
//FILE: test.kt
|
|
|
|
fun foo() {
|
|
fun bar() {
|
|
}
|
|
}
|
|
|
|
fun box() {
|
|
foo()
|
|
}
|
|
// IGNORE_BACKEND: JVM_IR
|
|
// LOCAL VARIABLES
|
|
// test.kt:9 box:
|
|
// test.kt:4 foo:
|
|
// test.kt:6 foo: $fun$bar$1:TestKt$foo$1=TestKt$foo$1
|
|
// test.kt:10 box: |