Fix generation of JS source maps for long literals

This commit is contained in:
Alexey Andreev
2017-05-10 18:04:38 +03:00
parent 89e3fb7592
commit 6e489900cb
3 changed files with 17 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
fun foo() {
println(
23L)
println(
0L)
}
// LINES: 2 3 4 5