Files
kotlin-fork/js/js.translator/testData/lineNumbers/jsCode.kt
T
2022-03-28 21:47:43 +00:00

12 lines
306 B
Kotlin
Vendored

fun foo() {
var x = "foo"
println("before: $x")
js("console.log('js' + x);")
println("after: $x")
}
// LINES(JS): 1 6 2 2 3 3 4 4 5 5
// LINES(JS_IR): 2 2 3 3 2 2 5 5
// FIXME: ^^^^^^^
// js function call debug info is incorrect