TreeVisitorVisit Method (Object, ITreeVisitorAction) |
Visit every node in tree t and trigger an action for each node
before/after having visited all of its children. Bottom up walk.
Execute both actions even if t has no children. Ignore return
results from transforming children since they will have altered
the child list of this node (their parent). Return result of
applying post action to this node.
Namespace:
Stimulsoft.Data.Expressions.Antlr.Runtime.Tree
Assembly:
Stimulsoft.Data (in Stimulsoft.Data.dll) Version: 2019.3.1.0
Syntaxpublic Object Visit(
Object t,
ITreeVisitorAction action
)
Public Function Visit (
t As Object,
action As ITreeVisitorAction
) As Object
Parameters
- t
- Type: SystemObject
[Missing <param name="t"/> documentation for "M:Stimulsoft.Data.Expressions.Antlr.Runtime.Tree.TreeVisitor.Visit(System.Object,Stimulsoft.Data.Expressions.Antlr.Runtime.Tree.ITreeVisitorAction)"]
- action
- Type: Stimulsoft.Data.Expressions.Antlr.Runtime.TreeITreeVisitorAction
[Missing <param name="action"/> documentation for "M:Stimulsoft.Data.Expressions.Antlr.Runtime.Tree.TreeVisitor.Visit(System.Object,Stimulsoft.Data.Expressions.Antlr.Runtime.Tree.ITreeVisitorAction)"]
Return Value
Type:
Object[Missing <returns> documentation for "M:Stimulsoft.Data.Expressions.Antlr.Runtime.Tree.TreeVisitor.Visit(System.Object,Stimulsoft.Data.Expressions.Antlr.Runtime.Tree.ITreeVisitorAction)"]
See Also