Fix JS source maps for initialization of variables captured by class

This commit is contained in:
Alexey Andreev
2017-05-12 18:22:25 +03:00
parent bfc3a9c2af
commit 13795b47fb
5 changed files with 40 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
class A(val x: Int) {
inner class B {
fun foo() {
println(x)
}
}
}
// LINES: 1 2 4