Files
kotlin-fork/compiler/testData/debug/stepping/for.kt
T
Yan Zhulanow f115bde682 Debugger, BE: Provide Java-like stepping for 'for' loops
- Visit '}' instead of 'for' keyword on post-condition
- Visit 'for' keyword on pre-condition
2020-02-14 17:35:17 +09:00

21 lines
313 B
Kotlin
Vendored

//FILE: test.kt
fun box() {
for (i in 1..3) {
foo(i)
}
}
inline fun foo(n: Int) {}
// LINENUMBERS
// TestKt.box():3
// TestKt.box():4
// TestKt.box():8
// TestKt.box():3
// TestKt.box():4
// TestKt.box():8
// TestKt.box():3
// TestKt.box():4
// TestKt.box():8
// TestKt.box():3
// TestKt.box():6