Skip to content

Instantly share code, notes, and snippets.

@arthurpalves
Created May 27, 2020 07:45
Show Gist options
  • Save arthurpalves/54785868df7d5e50c77939310c56f10e to your computer and use it in GitHub Desktop.
Save arthurpalves/54785868df7d5e50c77939310c56f10e to your computer and use it in GitHub Desktop.
open func visit(_ node: ClassDeclSyntax) -> SyntaxVisitorContinueKind
/// Visiting `ClassDeclSyntax` specifically.
/// - Parameter node: the node we are visiting.
/// - Returns: how should we continue visiting.
open func visit(_ node: ClassDeclSyntax) -> SyntaxVisitorContinueKind {
return .visitChildren
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment