AstVisitAction Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Each Visit* method in AstVisitor returns one of these values to control how visiting nodes in the AST should proceed.
public enum class AstVisitAction
public enum AstVisitAction
type AstVisitAction =
Public Enum AstVisitAction
- Inheritance
-
AstVisitAction
Fields
Name | Value | Description |
---|---|---|
Continue | 0 | Continue visiting all nodes the ast. |
SkipChildren | 1 | Skip visiting child nodes of currently visited node, but continue visiting other nodes. |
StopVisit | 2 | Stop visiting all nodes. |