// 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 The return type of the visit operation. Use {@link Void} for * operations with no return type. */ public class CmmBaseVisitor extends AbstractParseTreeVisitor implements CmmVisitor { /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitProgram(CmmParser.ProgramContext ctx) { return visitChildren(ctx); } }