Uast: Fix for missing local variables in ctor-s bodies

similar to how it is done in `KotlinUBlockExpression`
This commit is contained in:
Nicolay Mitropolsky
2018-01-12 21:29:42 +03:00
parent 322ac6340a
commit f4a7ecc1bb
4 changed files with 13 additions and 3 deletions
+2
View File
@@ -67,6 +67,8 @@ class AWithSecondaryInit {
constructor(s: String) {
a = s
var local: String = s
local.toString()
}
}