[ULC] Improve UL facades for private properties without accessors

This commit is contained in:
Igor Yakovlev
2020-05-21 01:26:22 +03:00
parent 025e2f2fe9
commit 129979b0ff
2 changed files with 19 additions and 5 deletions
@@ -71,3 +71,10 @@ public var int2: Int
public get
internal set
private val privateVal: Int = 42
private val privateVar: Int = 42
private fun privateFun(): Int = 42
val x: String = ""
get;
var x: String = ""
private set;