Fix generation of JS source maps for call expressions

This commit is contained in:
Alexey Andreev
2017-05-10 18:26:09 +03:00
parent 6e489900cb
commit e1009622af
3 changed files with 26 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
fun box(a: C, x: dynamic) {
println(a
.foo()
.bar())
println(a
.baz
.boo)
}
class C {
fun foo(): dynamic = null
val baz: dynamic get() = null
}
// LINES: 2 4 3 2 6 8 7 6 12 * 14