Skip to content

Instantly share code, notes, and snippets.

@arthurpalves
Created May 27, 2020 07:44
Show Gist options
  • Save arthurpalves/4f1e3907355631bb034fa3d74070901f to your computer and use it in GitHub Desktop.
Save arthurpalves/4f1e3907355631bb034fa3d74070901f to your computer and use it in GitHub Desktop.
override func visit(_ node: ClassDeclSyntax) -> SyntaxVisitorContinueKind {
// Do something with a class node
return .visitChildren
}
override func visit(_ node: ExtensionDeclSyntax) -> SyntaxVisitorContinueKind {
// Do something totally different with an extension node
return .visitChildren
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment