a939f9ccd0
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
16 lines
332 B
Kotlin
Vendored
16 lines
332 B
Kotlin
Vendored
fun box() {
|
|
println("1")
|
|
bar()
|
|
println("2")
|
|
bar()
|
|
println("3")
|
|
}
|
|
|
|
inline fun bar() {
|
|
println("bar1")
|
|
println("bar2")
|
|
}
|
|
|
|
// LINES(JS): 1 7 2 2 10 10 11 11 4 4 10 10 11 11 6 6 9 9 9 9 9 12 10 10 11 11
|
|
// LINES(JS_IR): 1 1 2 2 3 * 10 10 11 11 4 4 5 * 10 10 11 11 6 6 9 9 10 10 11 11
|