46b98a1e98
- Don't produce mapping for closing bracket in case of expressionBody - Map Kt*Function declaration into corresponding js fun declaration - Update test data & add new test
15 lines
223 B
Kotlin
Vendored
15 lines
223 B
Kotlin
Vendored
fun box() {
|
|
println("1")
|
|
bar()
|
|
println("2")
|
|
bar()
|
|
println("3")
|
|
}
|
|
|
|
inline fun bar() {
|
|
println("bar1")
|
|
println("bar2")
|
|
}
|
|
|
|
// LINES: 1 7 2 2 10 10 11 11 4 4 10 10 11 11 6 6 9 9 9 9 9 12 10 10 11 11
|