`override x by y.z`: in my example above I could u...
# announcements
n
`override x by y.z`: in my example above I could use
Copy code
class C : A by AImpl() , B by BImpl()
but that would not handle renaming of properties. And also falls apart if AImpl() and BImpl() require complex parameters (e.g.
Bimpl
needs value from
AImpl
), or if AImpl() and BImpl() each provide half the required properties from the base interface