Interface ExpressionVisitor<T>

Type Parameters:
T - The return type of the visit operation. Use Void for operations with no return type.
All Superinterfaces:
ParseTreeVisitor<T>
All Known Implementing Classes:
ExpressionBaseVisitor

public interface ExpressionVisitor<T> extends ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced by ExpressionParser.