public interface IExpressionVisitor
| Modifier and Type | Method and Description |
|---|---|
boolean |
visit(IExpression expression)
The method that will be called for each expression that is
visited.
|
boolean visit(IExpression expression)
expression - The expression that the visitor visits.true to continue visiting other expressions or
false to break out.