J2K: get/set-methods converted to properties (but lot of TODOs left)

This commit is contained in:
Valentin Kipyatkov
2015-09-23 00:54:48 +03:00
parent 3f6cadf9b7
commit 320102bbdb
41 changed files with 1266 additions and 298 deletions
+1 -1
View File
@@ -6,6 +6,6 @@ class AAA {
}
fun bar(b: B) {
println(b.YY)
println(b.yy)
}
}
+2 -2
View File
@@ -1,9 +1,9 @@
internal class B {
fun foo(a: AAA) {
a.x = a.x + 1
YY += "a"
yy += "a"
}
var YY = ""
var yy = ""
private set
}