Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arthurpalves/7c709b162523650c4c8b68195c26b193 to your computer and use it in GitHub Desktop.
Save arthurpalves/7c709b162523650c4c8b68195c26b193 to your computer and use it in GitHub Desktop.
enum SyntaxVisitorContinueKind
public enum SyntaxVisitorContinueKind {
/// The visitor should visit the descendents of the current node.
case visitChildren
/// The visitor should avoid visiting the descendents of the current node.
case skipChildren
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment