Class MinimalVisitor<T>

java.lang.Object
nz.org.riskscape.rl.ast.MinimalVisitor<T>
Type Parameters:
T - return type and data type
All Implemented Interfaces:
ExpressionVisitor<T,T>

public class MinimalVisitor<T> extends Object implements ExpressionVisitor<T,T>

Subclass of ExpressionVisitor that does a traversal through the AST, without modifying anything. Useful for visitors that only want to inspect a specific part of an expression.