With the custom getter and setter technique, you w...
# language-proposals
b
With the custom getter and setter technique, you would need to write:
Copy code
var propertyAlias
    get() = property1.nested.property2
    set(value) {
      property1.nested.property2 = value
    }
which is much more verbose