Fix JS source maps for increment expression used as statement
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
fun foo(x: Int) {
|
||||
var y = x
|
||||
y++
|
||||
println(y)
|
||||
++y
|
||||
println(y)
|
||||
y += 2
|
||||
println(y)
|
||||
}
|
||||
|
||||
// LINES: 2 3 4 5 6 7 8
|
||||
Reference in New Issue
Block a user