Files
kotlin-fork/js/js.translator/testData/lineNumbers/expressionAsFunctionBody.kt
T
Alexey Andreev b70c52e41f Fix JS source maps for optional arguments
Also, when function has expression body, use expression instead
of function declaration to mark return statement.
2017-06-07 11:13:46 +03:00

7 lines
64 B
Kotlin
Vendored

fun box() =
foo()
fun foo() =
23
// LINES: 2 5