Fix JS source map of decomposed conditional expression
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
fun box(x: Int) {
|
||||
println(
|
||||
if (
|
||||
x > 100
|
||||
)
|
||||
42
|
||||
else
|
||||
foo()
|
||||
)
|
||||
}
|
||||
|
||||
private inline fun foo(): Int {
|
||||
println("foo")
|
||||
return 23
|
||||
}
|
||||
|
||||
// LINES: 3 3 4 3 6 13 3 14 2 13 14
|
||||
Reference in New Issue
Block a user