27e319a279
Also, fix generation of source maps of content of js() function. See KT-19794
8 lines
144 B
Kotlin
Vendored
8 lines
144 B
Kotlin
Vendored
fun foo() {
|
|
var x = "foo"
|
|
println("before: $x")
|
|
js("console.log('js' + x);")
|
|
println("after: $x")
|
|
}
|
|
|
|
// LINES: 6 2 2 3 3 4 4 5 5 |