Fix generation of JS source maps for closures

This commit is contained in:
Alexey Andreev
2017-05-04 17:14:17 +03:00
parent 3a7df13440
commit 28140b0883
3 changed files with 16 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
fun box(x: Int, y: Int): Int {
fun foo(
z: Int) =
x + z
return foo(y)
}
// LINES: 2 4 2 5