Fix JS source maps for && expression with complex operands
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
fun box(x: Int, y: Int) {
|
||||
println(
|
||||
try { foo(x) } finally { println(x) } > 10 &&
|
||||
try { foo(y) } finally { println(y) } > 20)
|
||||
}
|
||||
|
||||
fun foo(x: Int) = x
|
||||
|
||||
// LINES: 3 3 3 4 4 4 4 2 3 7
|
||||
Reference in New Issue
Block a user