mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Fix line number generation for assignments where the right-hand side of the assignment is not on the same line. Fix line number generation for intrinsics functions where the function is not on the same line as the last argument. Be careful to not break stepping behavior with the iinc optimizations.
7 lines
80 B
Kotlin
Vendored
7 lines
80 B
Kotlin
Vendored
fun main(args: Array<String>) {
|
|
var i = 10
|
|
++i
|
|
++(l@ i)
|
|
}
|
|
|
|
// 2 IINC |