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.
18 lines
526 B
Kotlin
Vendored
18 lines
526 B
Kotlin
Vendored
//FILE: test.kt
|
|
|
|
data class someClass(val a: Double, val b: Double)
|
|
|
|
fun box() {
|
|
val a = someClass(1.0, 2.0)
|
|
val b = a.copy(b = 3.0)
|
|
}
|
|
|
|
// LOCAL VARIABLES
|
|
// test.kt:6 box:
|
|
// test.kt:3 <init>: a:double=1.0:double, b:double=2.0:double
|
|
// test.kt:6 box:
|
|
// test.kt:7 box: a:someClass=someClass
|
|
// test.kt:3 <init>: a:double=1.0:double, b:double=3.0:double
|
|
// test.kt:-1 copy: a:double=1.0:double, b:double=3.0:double
|
|
// test.kt:7 box: a:someClass=someClass
|
|
// test.kt:8 box: a:someClass=someClass, b:someClass=someClass |