blob: 0e4193e9df16fdf7612a0d07a753eb90a9749adc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Generated from /home/gabri/Desktop/clp_project/src/svm/SVM.g4 by ANTLR 4.13.1
package svm;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
/**
* This interface defines a complete generic visitor for a parse tree produced
* by {@link SVMParser}.
*
* @param <T> The return type of the visit operation. Use {@link Void} for
* operations with no return type.
*/
public interface SVMVisitor<T> extends ParseTreeVisitor<T> {
/**
* Visit a parse tree produced by {@link SVMParser#assembly}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitAssembly(SVMParser.AssemblyContext ctx);
/**
* Visit a parse tree produced by {@link SVMParser#instruction}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitInstruction(SVMParser.InstructionContext ctx);
}
|