Fix generation of source maps for synthetic code in enums in JS BE

This commit is contained in:
Alexey Andreev
2017-05-04 16:46:49 +03:00
parent fb3a864892
commit 3a7df13440
6 changed files with 44 additions and 18 deletions
@@ -0,0 +1,11 @@
enum class E {
X,
Y,
Z {
init {
println("Z")
}
}
}
// LINES: 1 1 1 1 2 3 4 * 2 2 * 3 3 4 4 6 * 1 * 1 1 1 1 1 1