Skip to content

Instantly share code, notes, and snippets.

@Morfly
Last active July 17, 2021 06:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Morfly/336ac46177d177442d306ad12db502b4 to your computer and use it in GitHub Desktop.
Save Morfly/336ac46177d177442d306ad12db502b4 to your computer and use it in GitHub Desktop.
class FunctionProcessor(...) : SymbolProcessor {
...
inner class Visitor(private val file: OutputStream) : KSVisitorVoid() {
override fun visitClassDeclaration(classDeclaration: KSClassDeclaration, data: Unit) {
}
override fun visitPropertyDeclaration(property: KSPropertyDeclaration, data: Unit) {
}
override fun visitTypeArgument(typeArgument: KSTypeArgument, data: Unit) {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment