blob: 18d71747aeb0163686c00abeddf4931e7d731f79 (
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
27
28
29
30
31
|
// Generated from /home/gabri/Desktop/clp_project/src/svm/SVM.g4 by ANTLR 4.13.1
package svm;
import org.antlr.v4.runtime.tree.ParseTreeListener;
/**
* This interface defines a complete listener for a parse tree produced by
* {@link SVMParser}.
*/
public interface SVMListener extends ParseTreeListener {
/**
* Enter a parse tree produced by {@link SVMParser#assembly}.
* @param ctx the parse tree
*/
void enterAssembly(SVMParser.AssemblyContext ctx);
/**
* Exit a parse tree produced by {@link SVMParser#assembly}.
* @param ctx the parse tree
*/
void exitAssembly(SVMParser.AssemblyContext ctx);
/**
* Enter a parse tree produced by {@link SVMParser#instruction}.
* @param ctx the parse tree
*/
void enterInstruction(SVMParser.InstructionContext ctx);
/**
* Exit a parse tree produced by {@link SVMParser#instruction}.
* @param ctx the parse tree
*/
void exitInstruction(SVMParser.InstructionContext ctx);
}
|