// Generated from C:/Users/Guillermo Arce/OneDrive - Universidad de Oviedo/Daily/2ndSemester/DLP/Lab/lab_project/src/parser\Cmm.g4 by ANTLR 4.9.1 package parser; import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; /** * This class provides an empty implementation of {@link CmmVisitor}, * which can be extended to create a visitor which only needs to handle a subset * of the available methods. * * @param <T> The return type of the visit operation. Use {@link Void} for * operations with no return type. */ public class CmmBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements CmmVisitor<T> { /** * {@inheritDoc} * * <p>The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.</p> */ @Override public T visitProgram(CmmParser.ProgramContext ctx) { return visitChildren(ctx); } }