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
11 lines
192 B
Kotlin
Vendored
11 lines
192 B
Kotlin
Vendored
class A(val x: Int) {
|
|
inner class B {
|
|
fun foo() {
|
|
println(x)
|
|
}
|
|
}
|
|
}
|
|
|
|
// LINES(JS): 1 1 2 2 3 5 4 4
|
|
// LINES(JS_IR): 2 2 2 2 3 4 4 1 1 1 1 1 1 1
|