J2K: get/set-methods converted to properties (but lot of TODOs left)
This commit is contained in:
+1
-1
@@ -6,6 +6,6 @@ class AAA {
|
||||
}
|
||||
|
||||
fun bar(b: B) {
|
||||
println(b.YY)
|
||||
println(b.yy)
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user