Files
kotlin-fork/js/js.translator/testData/lineNumbers/literals.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

31 lines
588 B
Kotlin
Vendored

class A {
fun box() {
bar(
this,
null,
0,
1,
"2",
true,
false
)
bar(
true,
false,
0,
1,
"2",
this,
null
)
}
}
fun bar(vararg x: Any?) {
println(x)
}
// LINES(JS): 1 2 22 3 4 5 6 7 8 9 10 13 14 15 16 17 18 19 20 * 25 27 26 26
// LINES(JS_IR): 1 1 2 3 4 5 6 7 8 9 10 13 14 15 16 17 18 19 20 25 25 26 26