-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGroupListener.py
More file actions
147 lines (99 loc) · 4.73 KB
/
GroupListener.py
File metadata and controls
147 lines (99 loc) · 4.73 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# Generated from Group.g4 by ANTLR 4.9.2
from antlr4 import *
if __name__ is not None and "." in __name__:
from .GroupParser import GroupParser
else:
from GroupParser import GroupParser
# This class defines a complete listener for a parse tree produced by GroupParser.
class GroupListener(ParseTreeListener):
# Enter a parse tree produced by GroupParser#python_file.
def enterPython_file(self, ctx:GroupParser.Python_fileContext):
pass
# Exit a parse tree produced by GroupParser#python_file.
def exitPython_file(self, ctx:GroupParser.Python_fileContext):
pass
# Enter a parse tree produced by GroupParser#multi_input.
def enterMulti_input(self, ctx:GroupParser.Multi_inputContext):
pass
# Exit a parse tree produced by GroupParser#multi_input.
def exitMulti_input(self, ctx:GroupParser.Multi_inputContext):
pass
# Enter a parse tree produced by GroupParser#multiLine_input.
def enterMultiLine_input(self, ctx:GroupParser.MultiLine_inputContext):
pass
# Exit a parse tree produced by GroupParser#multiLine_input.
def exitMultiLine_input(self, ctx:GroupParser.MultiLine_inputContext):
pass
# Enter a parse tree produced by GroupParser#single_input.
def enterSingle_input(self, ctx:GroupParser.Single_inputContext):
pass
# Exit a parse tree produced by GroupParser#single_input.
def exitSingle_input(self, ctx:GroupParser.Single_inputContext):
pass
# Enter a parse tree produced by GroupParser#assignment_expr.
def enterAssignment_expr(self, ctx:GroupParser.Assignment_exprContext):
pass
# Exit a parse tree produced by GroupParser#assignment_expr.
def exitAssignment_expr(self, ctx:GroupParser.Assignment_exprContext):
pass
# Enter a parse tree produced by GroupParser#mathmatical_expr.
def enterMathmatical_expr(self, ctx:GroupParser.Mathmatical_exprContext):
pass
# Exit a parse tree produced by GroupParser#mathmatical_expr.
def exitMathmatical_expr(self, ctx:GroupParser.Mathmatical_exprContext):
pass
# Enter a parse tree produced by GroupParser#list_expr.
def enterList_expr(self, ctx:GroupParser.List_exprContext):
pass
# Exit a parse tree produced by GroupParser#list_expr.
def exitList_expr(self, ctx:GroupParser.List_exprContext):
pass
# Enter a parse tree produced by GroupParser#variable_expr.
def enterVariable_expr(self, ctx:GroupParser.Variable_exprContext):
pass
# Exit a parse tree produced by GroupParser#variable_expr.
def exitVariable_expr(self, ctx:GroupParser.Variable_exprContext):
pass
# Enter a parse tree produced by GroupParser#conditional_expr.
def enterConditional_expr(self, ctx:GroupParser.Conditional_exprContext):
pass
# Exit a parse tree produced by GroupParser#conditional_expr.
def exitConditional_expr(self, ctx:GroupParser.Conditional_exprContext):
pass
# Enter a parse tree produced by GroupParser#star_conditional_expr.
def enterStar_conditional_expr(self, ctx:GroupParser.Star_conditional_exprContext):
pass
# Exit a parse tree produced by GroupParser#star_conditional_expr.
def exitStar_conditional_expr(self, ctx:GroupParser.Star_conditional_exprContext):
pass
# Enter a parse tree produced by GroupParser#if_expr.
def enterIf_expr(self, ctx:GroupParser.If_exprContext):
pass
# Exit a parse tree produced by GroupParser#if_expr.
def exitIf_expr(self, ctx:GroupParser.If_exprContext):
pass
# Enter a parse tree produced by GroupParser#for_expr.
def enterFor_expr(self, ctx:GroupParser.For_exprContext):
pass
# Exit a parse tree produced by GroupParser#for_expr.
def exitFor_expr(self, ctx:GroupParser.For_exprContext):
pass
# Enter a parse tree produced by GroupParser#while_expr.
def enterWhile_expr(self, ctx:GroupParser.While_exprContext):
pass
# Exit a parse tree produced by GroupParser#while_expr.
def exitWhile_expr(self, ctx:GroupParser.While_exprContext):
pass
# Enter a parse tree produced by GroupParser#function_def_expr.
def enterFunction_def_expr(self, ctx:GroupParser.Function_def_exprContext):
pass
# Exit a parse tree produced by GroupParser#function_def_expr.
def exitFunction_def_expr(self, ctx:GroupParser.Function_def_exprContext):
pass
# Enter a parse tree produced by GroupParser#function_call_expr.
def enterFunction_call_expr(self, ctx:GroupParser.Function_call_exprContext):
pass
# Exit a parse tree produced by GroupParser#function_call_expr.
def exitFunction_call_expr(self, ctx:GroupParser.Function_call_exprContext):
pass
del GroupParser