Fix JS source maps for properties without initializer

This commit is contained in:
Alexey Andreev
2017-05-15 16:01:08 +03:00
parent fdf098d65c
commit c9545f291a
3 changed files with 20 additions and 2 deletions
@@ -0,0 +1,12 @@
open class A {
val x: Int
open val y: Int
init {
x = 23
y = 42
}
}
// LINES: 2 4 7 8 4