Interface IExpressionVisitor
public interface IExpressionVisitor
A general purpose visitor that will visit each node in an expression tree.
- Since:
- 2.0
-
Method Summary
Modifier and TypeMethodDescriptionboolean
visit
(IExpression expression) The method that will be called for each expression that is visited.
-
Method Details
-
visit
The method that will be called for each expression that is visited.- Parameters:
expression
- The expression that the visitor visits.- Returns:
true
to continue visiting other expressions orfalse
to break out.
-