// Generated from /home/gabri/Desktop/clp_project/src/svm/SVM.g4 by ANTLR 4.13.1 package svm; import org.antlr.v4.runtime.tree.ParseTreeListener; /** * This interface defines a complete listener for a parse tree produced by * {@link SVMParser}. */ public interface SVMListener extends ParseTreeListener { /** * Enter a parse tree produced by {@link SVMParser#assembly}. * @param ctx the parse tree */ void enterAssembly(SVMParser.AssemblyContext ctx); /** * Exit a parse tree produced by {@link SVMParser#assembly}. * @param ctx the parse tree */ void exitAssembly(SVMParser.AssemblyContext ctx); /** * Enter a parse tree produced by {@link SVMParser#instruction}. * @param ctx the parse tree */ void enterInstruction(SVMParser.InstructionContext ctx); /** * Exit a parse tree produced by {@link SVMParser#instruction}. * @param ctx the parse tree */ void exitInstruction(SVMParser.InstructionContext ctx); }