-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArgumentScriptListener.java
59 lines (58 loc) · 2.01 KB
/
ArgumentScriptListener.java
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Generated from ArgumentScript.g4 by ANTLR 4.7.1
import org.antlr.v4.runtime.tree.ParseTreeListener;
/**
* This interface defines a complete listener for a parse tree produced by
* {@link ArgumentScriptParser}.
*/
public interface ArgumentScriptListener extends ParseTreeListener {
/**
* Enter a parse tree produced by {@link ArgumentScriptParser#file}.
* @param ctx the parse tree
*/
void enterFile(ArgumentScriptParser.FileContext ctx);
/**
* Exit a parse tree produced by {@link ArgumentScriptParser#file}.
* @param ctx the parse tree
*/
void exitFile(ArgumentScriptParser.FileContext ctx);
/**
* Enter a parse tree produced by {@link ArgumentScriptParser#definition}.
* @param ctx the parse tree
*/
void enterDefinition(ArgumentScriptParser.DefinitionContext ctx);
/**
* Exit a parse tree produced by {@link ArgumentScriptParser#definition}.
* @param ctx the parse tree
*/
void exitDefinition(ArgumentScriptParser.DefinitionContext ctx);
/**
* Enter a parse tree produced by {@link ArgumentScriptParser#argument}.
* @param ctx the parse tree
*/
void enterArgument(ArgumentScriptParser.ArgumentContext ctx);
/**
* Exit a parse tree produced by {@link ArgumentScriptParser#argument}.
* @param ctx the parse tree
*/
void exitArgument(ArgumentScriptParser.ArgumentContext ctx);
/**
* Enter a parse tree produced by {@link ArgumentScriptParser#assertion}.
* @param ctx the parse tree
*/
void enterAssertion(ArgumentScriptParser.AssertionContext ctx);
/**
* Exit a parse tree produced by {@link ArgumentScriptParser#assertion}.
* @param ctx the parse tree
*/
void exitAssertion(ArgumentScriptParser.AssertionContext ctx);
/**
* Enter a parse tree produced by {@link ArgumentScriptParser#proposition}.
* @param ctx the parse tree
*/
void enterProposition(ArgumentScriptParser.PropositionContext ctx);
/**
* Exit a parse tree produced by {@link ArgumentScriptParser#proposition}.
* @param ctx the parse tree
*/
void exitProposition(ArgumentScriptParser.PropositionContext ctx);
}