Skip to content
This repository has been archived by the owner on Oct 17, 2021. It is now read-only.

VisitorContinueKind

mattt edited this page Jan 14, 2021 · 1 revision

VisitorContinueKind

public enum VisitorContinueKind

Enumeration Cases

visitChildren

The visitor should visit the descendents of the current node.

case visitChildren

skipChildren

The visitor should avoid visiting the descendents of the current node.

case skipChildren

inherit

The visitor should inherit the behavior from the current context.

case inherit
Clone this wiki locally