Programming-Language-Design / gen / parser / CmmVisitor.java
CmmVisitor.java
Raw
// 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.ParseTreeVisitor;

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link CmmParser}.
 *
 * @param <T> The return type of the visit operation. Use {@link Void} for
 * operations with no return type.
 */
public interface CmmVisitor<T> extends ParseTreeVisitor<T> {
	/**
	 * Visit a parse tree produced by {@link CmmParser#program}.
	 * @param ctx the parse tree
	 * @return the visitor result
	 */
	T visitProgram(CmmParser.ProgramContext ctx);
}