Files
kotlin-fork/js/js.translator/testData/lineNumbers/andAndWithSideEffect.kt
T
Sergej Jaskiewicz a939f9ccd0 [JS IR] Improve debug info precision for blocks
Namely:
- Generate debug info for closing braces, which allows the breakpoints
  set on closing braces to be hit
- Generate debug info for 'if' and 'try/catch' statements.

KT-46276
2022-10-18 14:31:14 +00:00

11 lines
325 B
Kotlin
Vendored

fun box(x: Int, y: Int) {
println(
try { foo(x) } finally { println(x) } > 10 &&
try { foo(y) } finally { println(y) } > 20)
}
fun foo(x: Int) = x
// LINES(JS): 1 5 3 3 4 3 3 3 3 * 3 3 4 4 4 4 * 4 4 4 4 2 3 7 7 7
// LINES(JS_IR): 1 1 * 3 3 3 * 3 3 * 4 4 4 * 4 4 2 7 7 7 7