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.
10 lines
281 B
Kotlin
Vendored
10 lines
281 B
Kotlin
Vendored
// WITH_COROUTINES
|
|
// FILE: test.kt
|
|
|
|
suspend fun box() {
|
|
var x = 1
|
|
}
|
|
|
|
// LOCAL VARIABLES
|
|
// test.kt:5 box: $completion:kotlin.coroutines.Continuation=helpers.ResultContinuation
|
|
// test.kt:6 box: $completion:kotlin.coroutines.Continuation=helpers.ResultContinuation, x:int=1:int |