KT-5492 J2K: convert field with getter/setter to property

#KT-5492 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-10-14 17:33:20 +04:00
parent 129c592581
commit a84b32af98
45 changed files with 691 additions and 139 deletions
@@ -0,0 +1,7 @@
public class AAA {
private var x = 42
public fun setX(x: Int) {
this.x = x
}
}