summaryrefslogtreecommitdiff
path: root/src/parser/Python3ParserVisitor.java
blob: 09d552787dae6a35f8bfcf8ab04513d8aad85cf0 (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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
package parser;

// Generated from src/parser/Python3Parser.g4 by ANTLR 4.13.1
import org.antlr.v4.runtime.tree.ParseTreeVisitor;

/**
 * This interface defines a complete generic visitor for a parse tree produced
 * by {@link Python3Parser}.
 *
 * @param <T> The return type of the visit operation. Use {@link Void} for
 *            operations with no return type.
 */
public interface Python3ParserVisitor<T> extends ParseTreeVisitor<T> {
    /**
     * Visit a parse tree produced by {@link Python3Parser#root}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitRoot(Python3Parser.RootContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#simple_stmts}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitSimple_stmts(Python3Parser.Simple_stmtsContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#compound_stmt}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitCompound_stmt(Python3Parser.Compound_stmtContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#simple_stmt}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitSimple_stmt(Python3Parser.Simple_stmtContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#assignment}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitAssignment(Python3Parser.AssignmentContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#return_stmt}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitReturn_stmt(Python3Parser.Return_stmtContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#import_stm}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitImport_stm(Python3Parser.Import_stmContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#dotted_name}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitDotted_name(Python3Parser.Dotted_nameContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#funcdef}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitFuncdef(Python3Parser.FuncdefContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#paramlist}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitParamlist(Python3Parser.ParamlistContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#paramdef}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitParamdef(Python3Parser.ParamdefContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#augassign}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitAugassign(Python3Parser.AugassignContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#if_stmt}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitIf_stmt(Python3Parser.If_stmtContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#while_stmt}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitWhile_stmt(Python3Parser.While_stmtContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#for_stmt}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitFor_stmt(Python3Parser.For_stmtContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#block}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitBlock(Python3Parser.BlockContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#comp_op}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitComp_op(Python3Parser.Comp_opContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#expr}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitExpr(Python3Parser.ExprContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#atom}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitAtom(Python3Parser.AtomContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#testlist_comp}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitTestlist_comp(Python3Parser.Testlist_compContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#trailer}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitTrailer(Python3Parser.TrailerContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#exprlist}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitExprlist(Python3Parser.ExprlistContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#arglist}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitArglist(Python3Parser.ArglistContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#argument}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitArgument(Python3Parser.ArgumentContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#comp_iter}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitComp_iter(Python3Parser.Comp_iterContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#comp_for}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitComp_for(Python3Parser.Comp_forContext ctx);

    /**
     * Visit a parse tree produced by {@link Python3Parser#comp_if}.
     * 
     * @param ctx the parse tree
     * @return the visitor result
     */
    T visitComp_if(Python3Parser.Comp_ifContext ctx);
}