Skip to content

Instantly share code, notes, and snippets.

@drawers
Created June 12, 2021 20:35
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 drawers/589ee57817168735d72b8e00b89e045f to your computer and use it in GitHub Desktop.
Save drawers/589ee57817168735d72b8e00b89e045f to your computer and use it in GitHub Desktop.
interface KSVisitor<D, R> {
fun visitNode(node: KSNode, data: D): R
fun visitAnnotated(annotated: KSAnnotated, data: D): R
// etc.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment