blob: 30832ca85f08d221b82a0bb0f80ed43adee7718a [file] [log] [blame]
// Generated from Expr.g4 by ANTLR 4.3
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.ParseTreeListener;
/**
* This interface defines a complete listener for a parse tree produced by
* {@link ExprParser}.
*/
public interface ExprListener extends ParseTreeListener {
/**
* Enter a parse tree produced by {@link ExprParser#expr}.
* @param ctx the parse tree
*/
void enterExpr(@NotNull ExprParser.ExprContext ctx);
/**
* Exit a parse tree produced by {@link ExprParser#expr}.
* @param ctx the parse tree
*/
void exitExpr(@NotNull ExprParser.ExprContext ctx);
/**
* Enter a parse tree produced by {@link ExprParser#prog}.
* @param ctx the parse tree
*/
void enterProg(@NotNull ExprParser.ProgContext ctx);
/**
* Exit a parse tree produced by {@link ExprParser#prog}.
* @param ctx the parse tree
*/
void exitProg(@NotNull ExprParser.ProgContext ctx);
}