// Generated from /home/gabri/Desktop/clp_project/src/svm/SVM.g4 by ANTLR 4.13.1 package svm; import org.antlr.v4.runtime.ParserRuleContext; import org.antlr.v4.runtime.tree.ErrorNode; import org.antlr.v4.runtime.tree.TerminalNode; /** * This class provides an empty implementation of {@link SVMListener}, * which can be extended to create a listener which only needs to handle a subset * of the available methods. */ @SuppressWarnings("CheckReturnValue") public class SVMBaseListener implements SVMListener { /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterAssembly(SVMParser.AssemblyContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitAssembly(SVMParser.AssemblyContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterInstruction(SVMParser.InstructionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitInstruction(SVMParser.InstructionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void enterEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void exitEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void visitTerminal(TerminalNode node) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ @Override public void visitErrorNode(ErrorNode node) { } }