Traverse the AST tree depth first. Note that the AST passed in is not visited itself. Visitation starts with its children.

Namespace: NHibernate.Hql.Ast.ANTLR.Util
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public void TraverseDepthFirst(
	IASTNode ast
)
Visual Basic
Public Sub TraverseDepthFirst ( _
	ast As IASTNode _
)
Visual C++
public:
void TraverseDepthFirst(
	IASTNode^ ast
)

See Also