Visit a parse tree produced by the {@code Add} labeled alternative in {@link ExprParser#expr}. @param ctx the parse tree @return the visitor result
Visit a parse tree produced by the {@code BracketExpr} labeled alternative in {@link ExprParser#expr}. @param ctx the parse tree @return the visitor result
Visit a parse tree produced by the {@code Div} labeled alternative in {@link ExprParser#expr}. @param ctx the parse tree @return the visitor result
Visit a parse tree produced by the {@code Int} labeled alternative in {@link ExprParser#expr}. @param ctx the parse tree @return the visitor result
Visit a parse tree produced by the {@code Mul} labeled alternative in {@link ExprParser#expr}. @param ctx the parse tree @return the visitor result
Visit a parse tree produced by {@link ExprParser#prog}. @param ctx the parse tree @return the visitor result
Visit a parse tree produced by the {@code Sub} labeled alternative in {@link ExprParser#expr}. @param ctx the parse tree @return the visitor result
Visit a parse tree, and return a user-defined result of the operation.
Visit the children of a node, and return a user-defined result of the operation.
Visit a terminal node, and return a user-defined result of the operation.
Visit an error node, and return a user-defined result of the operation.
This interface defines a complete generic visitor for a parse tree produced by {@link ExprParser}.
@param Variant The return type of the visit operation. Use {@link void} for operations with no return type.