Grégory Lureau
11/13/2021, 8:57 AMclass Wrapper(
_delegate: DepInterface
) : DepInterface by _delegate {
[...]
}
I find the constructor parameter and the fact that Wrapper
implements DepInterface
, but I'm not able to find the by _delegate
part.
Also I was expecting to have the delegated method in getAllFunctions()
I suppose I'll have to resolve() the super to get them?efemoney
11/14/2021, 10:31 AM