Is there an implementation of `KSVisitor` that act...
# ksp
j
Is there an implementation of
KSVisitor
that actually traverses the object?
Nevermind I think I found it
KSTopDownVisitor
Still not great that one. visitClassDeclaration doesn’t invoke calls to visit functions properties etc
t
Yep
KSVisitor
is just a skeleton.
KSTopDownVisitor.visitClassDeclaration
should visit member functions and properties via
visitDeclarationContainer
. If not, please let me know.