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
17 lines
393 B
Kotlin
Vendored
17 lines
393 B
Kotlin
Vendored
open class A {
|
|
open var x = 23
|
|
|
|
var y: String = "42"
|
|
get() = field +
|
|
"!"
|
|
set(value) {
|
|
print(
|
|
field)
|
|
field =
|
|
value.removeSuffix("!")
|
|
}
|
|
}
|
|
|
|
// LINES(JS): 1 2 2 4 4 2 2 2 2 5 5 5 6 7 12 8 9 10 11
|
|
// LINES(JS_IR): 1 1 2 2 4 4 2 2 2 2 2 2 7 8 9 10 10 11 5 6 6 5 6
|