Is it possible to get info on the implementation b...
# ksp
g
Is it possible to get info on the implementation by delegation ?
Copy code
class 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?
e
No, that is an expression and ksp does not provide any info on expressions
🙏 1