Fix JS source maps for lambdas

This commit is contained in:
Alexey Andreev
2017-05-12 13:57:16 +03:00
parent 82d37c0d57
commit d7a10750e0
4 changed files with 9 additions and 8 deletions
@@ -0,0 +1,7 @@
fun foo(x: Int): () -> Unit = {
println(x)
}
fun bar() = 23
// LINES: 1 2 1 5