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.
17 lines
347 B
Kotlin
Vendored
17 lines
347 B
Kotlin
Vendored
// FILE: test.kt
|
|
// WITH_RUNTIME
|
|
class C {
|
|
@kotlin.jvm.JvmOverloads fun foo(firstParam: Int, secondParam: String = "") {
|
|
}
|
|
}
|
|
|
|
fun box() {
|
|
C().foo(4)
|
|
}
|
|
|
|
// LOCAL VARIABLES
|
|
// test.kt:9 box:
|
|
// test.kt:3 <init>:
|
|
// test.kt:9 box:
|
|
// test.kt:5 foo: firstParam:int=4:int, secondParam:java.lang.String="":java.lang.String
|
|
// test.kt:10 box: |