-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExpressoesListener.py
129 lines (87 loc) · 4.53 KB
/
ExpressoesListener.py
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Generated from Expressoes.g4 by ANTLR 4.13.2
from antlr4 import *
if "." in __name__:
from .ExpressoesParser import ExpressoesParser
else:
from ExpressoesParser import ExpressoesParser
# This class defines a complete listener for a parse tree produced by ExpressoesParser.
class ExpressoesListener(ParseTreeListener):
# Enter a parse tree produced by ExpressoesParser#prog.
def enterProg(self, ctx:ExpressoesParser.ProgContext):
pass
# Exit a parse tree produced by ExpressoesParser#prog.
def exitProg(self, ctx:ExpressoesParser.ProgContext):
pass
# Enter a parse tree produced by ExpressoesParser#stmt.
def enterStmt(self, ctx:ExpressoesParser.StmtContext):
pass
# Exit a parse tree produced by ExpressoesParser#stmt.
def exitStmt(self, ctx:ExpressoesParser.StmtContext):
pass
# Enter a parse tree produced by ExpressoesParser#titleStmt.
def enterTitleStmt(self, ctx:ExpressoesParser.TitleStmtContext):
pass
# Exit a parse tree produced by ExpressoesParser#titleStmt.
def exitTitleStmt(self, ctx:ExpressoesParser.TitleStmtContext):
pass
# Enter a parse tree produced by ExpressoesParser#descriptionStmt.
def enterDescriptionStmt(self, ctx:ExpressoesParser.DescriptionStmtContext):
pass
# Exit a parse tree produced by ExpressoesParser#descriptionStmt.
def exitDescriptionStmt(self, ctx:ExpressoesParser.DescriptionStmtContext):
pass
# Enter a parse tree produced by ExpressoesParser#insertItemTextStmt.
def enterInsertItemTextStmt(self, ctx:ExpressoesParser.InsertItemTextStmtContext):
pass
# Exit a parse tree produced by ExpressoesParser#insertItemTextStmt.
def exitInsertItemTextStmt(self, ctx:ExpressoesParser.InsertItemTextStmtContext):
pass
# Enter a parse tree produced by ExpressoesParser#insertItemParagraphTextStmt.
def enterInsertItemParagraphTextStmt(self, ctx:ExpressoesParser.InsertItemParagraphTextStmtContext):
pass
# Exit a parse tree produced by ExpressoesParser#insertItemParagraphTextStmt.
def exitInsertItemParagraphTextStmt(self, ctx:ExpressoesParser.InsertItemParagraphTextStmtContext):
pass
# Enter a parse tree produced by ExpressoesParser#insertItemMultipleChoicetStmt.
def enterInsertItemMultipleChoicetStmt(self, ctx:ExpressoesParser.InsertItemMultipleChoicetStmtContext):
pass
# Exit a parse tree produced by ExpressoesParser#insertItemMultipleChoicetStmt.
def exitInsertItemMultipleChoicetStmt(self, ctx:ExpressoesParser.InsertItemMultipleChoicetStmtContext):
pass
# Enter a parse tree produced by ExpressoesParser#insertItemSectionHeadertStmt.
def enterInsertItemSectionHeadertStmt(self, ctx:ExpressoesParser.InsertItemSectionHeadertStmtContext):
pass
# Exit a parse tree produced by ExpressoesParser#insertItemSectionHeadertStmt.
def exitInsertItemSectionHeadertStmt(self, ctx:ExpressoesParser.InsertItemSectionHeadertStmtContext):
pass
# Enter a parse tree produced by ExpressoesParser#showStmt.
def enterShowStmt(self, ctx:ExpressoesParser.ShowStmtContext):
pass
# Exit a parse tree produced by ExpressoesParser#showStmt.
def exitShowStmt(self, ctx:ExpressoesParser.ShowStmtContext):
pass
# Enter a parse tree produced by ExpressoesParser#exportStmt.
def enterExportStmt(self, ctx:ExpressoesParser.ExportStmtContext):
pass
# Exit a parse tree produced by ExpressoesParser#exportStmt.
def exitExportStmt(self, ctx:ExpressoesParser.ExportStmtContext):
pass
# Enter a parse tree produced by ExpressoesParser#itemKeys.
def enterItemKeys(self, ctx:ExpressoesParser.ItemKeysContext):
pass
# Exit a parse tree produced by ExpressoesParser#itemKeys.
def exitItemKeys(self, ctx:ExpressoesParser.ItemKeysContext):
pass
# Enter a parse tree produced by ExpressoesParser#values.
def enterValues(self, ctx:ExpressoesParser.ValuesContext):
pass
# Exit a parse tree produced by ExpressoesParser#values.
def exitValues(self, ctx:ExpressoesParser.ValuesContext):
pass
# Enter a parse tree produced by ExpressoesParser#value.
def enterValue(self, ctx:ExpressoesParser.ValueContext):
pass
# Exit a parse tree produced by ExpressoesParser#value.
def exitValue(self, ctx:ExpressoesParser.ValueContext):
pass
del ExpressoesParser