-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGrammarListener.java
More file actions
43 lines (42 loc) · 1.39 KB
/
Copy pathGrammarListener.java
File metadata and controls
43 lines (42 loc) · 1.39 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
// Generated from Grammar.g4 by ANTLR 4.9.2
import org.antlr.v4.runtime.tree.ParseTreeListener;
/**
* This interface defines a complete listener for a parse tree produced by
* {@link GrammarParser}.
*/
public interface GrammarListener extends ParseTreeListener {
/**
* Enter a parse tree produced by {@link GrammarParser#prog}.
* @param ctx the parse tree
*/
void enterProg(GrammarParser.ProgContext ctx);
/**
* Exit a parse tree produced by {@link GrammarParser#prog}.
* @param ctx the parse tree
*/
void exitProg(GrammarParser.ProgContext ctx);
/**
* Enter a parse tree produced by the {@code operacionBinaria}
* labeled alternative in {@link GrammarParser#expr}.
* @param ctx the parse tree
*/
void enterOperacionBinaria(GrammarParser.OperacionBinariaContext ctx);
/**
* Exit a parse tree produced by the {@code operacionBinaria}
* labeled alternative in {@link GrammarParser#expr}.
* @param ctx the parse tree
*/
void exitOperacionBinaria(GrammarParser.OperacionBinariaContext ctx);
/**
* Enter a parse tree produced by the {@code numero}
* labeled alternative in {@link GrammarParser#expr}.
* @param ctx the parse tree
*/
void enterNumero(GrammarParser.NumeroContext ctx);
/**
* Exit a parse tree produced by the {@code numero}
* labeled alternative in {@link GrammarParser#expr}.
* @param ctx the parse tree
*/
void exitNumero(GrammarParser.NumeroContext ctx);
}