@designliquido/delegua 0.20.14 → 0.20.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/package.json +1 -1
- package/fontes/avaliador-sintatico/dialetos/avaliador-sintatico-egua-classico.d.ts +2 -0
- package/fontes/avaliador-sintatico/dialetos/avaliador-sintatico-egua-classico.js +6 -4
- package/fontes/avaliador-sintatico/dialetos/avaliador-sintatico-egua-classico.js.map +1 -1
- package/fontes/bibliotecas/primitivas-vetor.js +5 -5
- package/fontes/bibliotecas/primitivas-vetor.js.map +1 -1
- package/fontes/lexador/dialetos/palavras-reservadas/egua-classico.d.ts +1 -4
- package/fontes/lexador/dialetos/palavras-reservadas/egua-classico.js +2 -5
- package/fontes/lexador/dialetos/palavras-reservadas/egua-classico.js.map +1 -1
- package/fontes/tipos-de-simbolos/egua-classico.d.ts +0 -2
- package/fontes/tipos-de-simbolos/egua-classico.js +0 -2
- package/fontes/tipos-de-simbolos/egua-classico.js.map +1 -1
- package/fontes/tradutores/index.d.ts +3 -0
- package/fontes/tradutores/index.js +3 -0
- package/fontes/tradutores/index.js.map +1 -1
- package/fontes/tradutores/python/python3-lexer.d.ts +5 -5
- package/fontes/tradutores/python/python3-lexer.js +567 -841
- package/fontes/tradutores/python/python3-lexer.js.map +1 -1
- package/fontes/tradutores/python/python3-listener.d.ts +184 -173
- package/fontes/tradutores/python/python3-listener.js +1 -0
- package/fontes/tradutores/python/python3-listener.js.map +1 -1
- package/fontes/tradutores/python/python3-parser.d.ts +85 -73
- package/fontes/tradutores/python/python3-parser.js +1485 -1415
- package/fontes/tradutores/python/python3-parser.js.map +1 -1
- package/fontes/tradutores/python/python3-visitor.d.ts +94 -87
- package/fontes/tradutores/python/python3-visitor.js +1 -0
- package/fontes/tradutores/python/python3-visitor.js.map +1 -1
- package/fontes/tradutores/tradutor-javascript.d.ts +2 -2
- package/fontes/tradutores/tradutor-javascript.js +1 -1
- package/fontes/tradutores/tradutor-javascript.js.map +1 -1
- package/fontes/tradutores/tradutor-portugol-ipt.d.ts +21 -0
- package/fontes/tradutores/tradutor-portugol-ipt.js +61 -0
- package/fontes/tradutores/tradutor-portugol-ipt.js.map +1 -0
- package/fontes/tradutores/tradutor-python.d.ts +16 -1
- package/fontes/tradutores/tradutor-python.js +41 -28
- package/fontes/tradutores/tradutor-python.js.map +1 -1
- package/fontes/tradutores/tradutor-reverso-python.d.ts +32 -0
- package/fontes/tradutores/tradutor-reverso-python.js +72 -0
- package/fontes/tradutores/tradutor-reverso-python.js.map +1 -0
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ import { StmtContext } from './python3-parser';
|
|
|
16
16
|
import { Simple_stmtContext } from './python3-parser';
|
|
17
17
|
import { Small_stmtContext } from './python3-parser';
|
|
18
18
|
import { Expr_stmtContext } from './python3-parser';
|
|
19
|
+
import { Simple_assignContext } from './python3-parser';
|
|
19
20
|
import { AnnassignContext } from './python3-parser';
|
|
20
21
|
import { Testlist_star_exprContext } from './python3-parser';
|
|
21
22
|
import { AugassignContext } from './python3-parser';
|
|
@@ -87,866 +88,876 @@ import { Yield_exprContext } from './python3-parser';
|
|
|
87
88
|
import { Yield_argContext } from './python3-parser';
|
|
88
89
|
/**
|
|
89
90
|
* This interface defines a complete listener for a parse tree produced by
|
|
90
|
-
* `
|
|
91
|
+
* `Python3Parser`.
|
|
91
92
|
*/
|
|
92
93
|
export interface Python3Listener extends ParseTreeListener {
|
|
93
94
|
/**
|
|
94
|
-
* Enter a parse tree produced by `
|
|
95
|
+
* Enter a parse tree produced by `Python3Parser.single_input`.
|
|
95
96
|
* @param ctx the parse tree
|
|
96
97
|
*/
|
|
97
98
|
enterSingle_input?: (ctx: Single_inputContext) => void;
|
|
98
99
|
/**
|
|
99
|
-
* Exit a parse tree produced by `
|
|
100
|
+
* Exit a parse tree produced by `Python3Parser.single_input`.
|
|
100
101
|
* @param ctx the parse tree
|
|
101
102
|
*/
|
|
102
103
|
exitSingle_input?: (ctx: Single_inputContext) => void;
|
|
103
104
|
/**
|
|
104
|
-
* Enter a parse tree produced by `
|
|
105
|
+
* Enter a parse tree produced by `Python3Parser.file_input`.
|
|
105
106
|
* @param ctx the parse tree
|
|
106
107
|
*/
|
|
107
108
|
enterFile_input?: (ctx: File_inputContext) => void;
|
|
108
109
|
/**
|
|
109
|
-
* Exit a parse tree produced by `
|
|
110
|
+
* Exit a parse tree produced by `Python3Parser.file_input`.
|
|
110
111
|
* @param ctx the parse tree
|
|
111
112
|
*/
|
|
112
113
|
exitFile_input?: (ctx: File_inputContext) => void;
|
|
113
114
|
/**
|
|
114
|
-
* Enter a parse tree produced by `
|
|
115
|
+
* Enter a parse tree produced by `Python3Parser.eval_input`.
|
|
115
116
|
* @param ctx the parse tree
|
|
116
117
|
*/
|
|
117
118
|
enterEval_input?: (ctx: Eval_inputContext) => void;
|
|
118
119
|
/**
|
|
119
|
-
* Exit a parse tree produced by `
|
|
120
|
+
* Exit a parse tree produced by `Python3Parser.eval_input`.
|
|
120
121
|
* @param ctx the parse tree
|
|
121
122
|
*/
|
|
122
123
|
exitEval_input?: (ctx: Eval_inputContext) => void;
|
|
123
124
|
/**
|
|
124
|
-
* Enter a parse tree produced by `
|
|
125
|
+
* Enter a parse tree produced by `Python3Parser.decorator`.
|
|
125
126
|
* @param ctx the parse tree
|
|
126
127
|
*/
|
|
127
128
|
enterDecorator?: (ctx: DecoratorContext) => void;
|
|
128
129
|
/**
|
|
129
|
-
* Exit a parse tree produced by `
|
|
130
|
+
* Exit a parse tree produced by `Python3Parser.decorator`.
|
|
130
131
|
* @param ctx the parse tree
|
|
131
132
|
*/
|
|
132
133
|
exitDecorator?: (ctx: DecoratorContext) => void;
|
|
133
134
|
/**
|
|
134
|
-
* Enter a parse tree produced by `
|
|
135
|
+
* Enter a parse tree produced by `Python3Parser.decorators`.
|
|
135
136
|
* @param ctx the parse tree
|
|
136
137
|
*/
|
|
137
138
|
enterDecorators?: (ctx: DecoratorsContext) => void;
|
|
138
139
|
/**
|
|
139
|
-
* Exit a parse tree produced by `
|
|
140
|
+
* Exit a parse tree produced by `Python3Parser.decorators`.
|
|
140
141
|
* @param ctx the parse tree
|
|
141
142
|
*/
|
|
142
143
|
exitDecorators?: (ctx: DecoratorsContext) => void;
|
|
143
144
|
/**
|
|
144
|
-
* Enter a parse tree produced by `
|
|
145
|
+
* Enter a parse tree produced by `Python3Parser.decorated`.
|
|
145
146
|
* @param ctx the parse tree
|
|
146
147
|
*/
|
|
147
148
|
enterDecorated?: (ctx: DecoratedContext) => void;
|
|
148
149
|
/**
|
|
149
|
-
* Exit a parse tree produced by `
|
|
150
|
+
* Exit a parse tree produced by `Python3Parser.decorated`.
|
|
150
151
|
* @param ctx the parse tree
|
|
151
152
|
*/
|
|
152
153
|
exitDecorated?: (ctx: DecoratedContext) => void;
|
|
153
154
|
/**
|
|
154
|
-
* Enter a parse tree produced by `
|
|
155
|
+
* Enter a parse tree produced by `Python3Parser.async_funcdef`.
|
|
155
156
|
* @param ctx the parse tree
|
|
156
157
|
*/
|
|
157
158
|
enterAsync_funcdef?: (ctx: Async_funcdefContext) => void;
|
|
158
159
|
/**
|
|
159
|
-
* Exit a parse tree produced by `
|
|
160
|
+
* Exit a parse tree produced by `Python3Parser.async_funcdef`.
|
|
160
161
|
* @param ctx the parse tree
|
|
161
162
|
*/
|
|
162
163
|
exitAsync_funcdef?: (ctx: Async_funcdefContext) => void;
|
|
163
164
|
/**
|
|
164
|
-
* Enter a parse tree produced by `
|
|
165
|
+
* Enter a parse tree produced by `Python3Parser.funcdef`.
|
|
165
166
|
* @param ctx the parse tree
|
|
166
167
|
*/
|
|
167
168
|
enterFuncdef?: (ctx: FuncdefContext) => void;
|
|
168
169
|
/**
|
|
169
|
-
* Exit a parse tree produced by `
|
|
170
|
+
* Exit a parse tree produced by `Python3Parser.funcdef`.
|
|
170
171
|
* @param ctx the parse tree
|
|
171
172
|
*/
|
|
172
173
|
exitFuncdef?: (ctx: FuncdefContext) => void;
|
|
173
174
|
/**
|
|
174
|
-
* Enter a parse tree produced by `
|
|
175
|
+
* Enter a parse tree produced by `Python3Parser.parameters`.
|
|
175
176
|
* @param ctx the parse tree
|
|
176
177
|
*/
|
|
177
178
|
enterParameters?: (ctx: ParametersContext) => void;
|
|
178
179
|
/**
|
|
179
|
-
* Exit a parse tree produced by `
|
|
180
|
+
* Exit a parse tree produced by `Python3Parser.parameters`.
|
|
180
181
|
* @param ctx the parse tree
|
|
181
182
|
*/
|
|
182
183
|
exitParameters?: (ctx: ParametersContext) => void;
|
|
183
184
|
/**
|
|
184
|
-
* Enter a parse tree produced by `
|
|
185
|
+
* Enter a parse tree produced by `Python3Parser.typedargslist`.
|
|
185
186
|
* @param ctx the parse tree
|
|
186
187
|
*/
|
|
187
188
|
enterTypedargslist?: (ctx: TypedargslistContext) => void;
|
|
188
189
|
/**
|
|
189
|
-
* Exit a parse tree produced by `
|
|
190
|
+
* Exit a parse tree produced by `Python3Parser.typedargslist`.
|
|
190
191
|
* @param ctx the parse tree
|
|
191
192
|
*/
|
|
192
193
|
exitTypedargslist?: (ctx: TypedargslistContext) => void;
|
|
193
194
|
/**
|
|
194
|
-
* Enter a parse tree produced by `
|
|
195
|
+
* Enter a parse tree produced by `Python3Parser.tfpdef`.
|
|
195
196
|
* @param ctx the parse tree
|
|
196
197
|
*/
|
|
197
198
|
enterTfpdef?: (ctx: TfpdefContext) => void;
|
|
198
199
|
/**
|
|
199
|
-
* Exit a parse tree produced by `
|
|
200
|
+
* Exit a parse tree produced by `Python3Parser.tfpdef`.
|
|
200
201
|
* @param ctx the parse tree
|
|
201
202
|
*/
|
|
202
203
|
exitTfpdef?: (ctx: TfpdefContext) => void;
|
|
203
204
|
/**
|
|
204
|
-
* Enter a parse tree produced by `
|
|
205
|
+
* Enter a parse tree produced by `Python3Parser.varargslist`.
|
|
205
206
|
* @param ctx the parse tree
|
|
206
207
|
*/
|
|
207
208
|
enterVarargslist?: (ctx: VarargslistContext) => void;
|
|
208
209
|
/**
|
|
209
|
-
* Exit a parse tree produced by `
|
|
210
|
+
* Exit a parse tree produced by `Python3Parser.varargslist`.
|
|
210
211
|
* @param ctx the parse tree
|
|
211
212
|
*/
|
|
212
213
|
exitVarargslist?: (ctx: VarargslistContext) => void;
|
|
213
214
|
/**
|
|
214
|
-
* Enter a parse tree produced by `
|
|
215
|
+
* Enter a parse tree produced by `Python3Parser.vfpdef`.
|
|
215
216
|
* @param ctx the parse tree
|
|
216
217
|
*/
|
|
217
218
|
enterVfpdef?: (ctx: VfpdefContext) => void;
|
|
218
219
|
/**
|
|
219
|
-
* Exit a parse tree produced by `
|
|
220
|
+
* Exit a parse tree produced by `Python3Parser.vfpdef`.
|
|
220
221
|
* @param ctx the parse tree
|
|
221
222
|
*/
|
|
222
223
|
exitVfpdef?: (ctx: VfpdefContext) => void;
|
|
223
224
|
/**
|
|
224
|
-
* Enter a parse tree produced by `
|
|
225
|
+
* Enter a parse tree produced by `Python3Parser.stmt`.
|
|
225
226
|
* @param ctx the parse tree
|
|
226
227
|
*/
|
|
227
228
|
enterStmt?: (ctx: StmtContext) => void;
|
|
228
229
|
/**
|
|
229
|
-
* Exit a parse tree produced by `
|
|
230
|
+
* Exit a parse tree produced by `Python3Parser.stmt`.
|
|
230
231
|
* @param ctx the parse tree
|
|
231
232
|
*/
|
|
232
233
|
exitStmt?: (ctx: StmtContext) => void;
|
|
233
234
|
/**
|
|
234
|
-
* Enter a parse tree produced by `
|
|
235
|
+
* Enter a parse tree produced by `Python3Parser.simple_stmt`.
|
|
235
236
|
* @param ctx the parse tree
|
|
236
237
|
*/
|
|
237
238
|
enterSimple_stmt?: (ctx: Simple_stmtContext) => void;
|
|
238
239
|
/**
|
|
239
|
-
* Exit a parse tree produced by `
|
|
240
|
+
* Exit a parse tree produced by `Python3Parser.simple_stmt`.
|
|
240
241
|
* @param ctx the parse tree
|
|
241
242
|
*/
|
|
242
243
|
exitSimple_stmt?: (ctx: Simple_stmtContext) => void;
|
|
243
244
|
/**
|
|
244
|
-
* Enter a parse tree produced by `
|
|
245
|
+
* Enter a parse tree produced by `Python3Parser.small_stmt`.
|
|
245
246
|
* @param ctx the parse tree
|
|
246
247
|
*/
|
|
247
248
|
enterSmall_stmt?: (ctx: Small_stmtContext) => void;
|
|
248
249
|
/**
|
|
249
|
-
* Exit a parse tree produced by `
|
|
250
|
+
* Exit a parse tree produced by `Python3Parser.small_stmt`.
|
|
250
251
|
* @param ctx the parse tree
|
|
251
252
|
*/
|
|
252
253
|
exitSmall_stmt?: (ctx: Small_stmtContext) => void;
|
|
253
254
|
/**
|
|
254
|
-
* Enter a parse tree produced by `
|
|
255
|
+
* Enter a parse tree produced by `Python3Parser.expr_stmt`.
|
|
255
256
|
* @param ctx the parse tree
|
|
256
257
|
*/
|
|
257
258
|
enterExpr_stmt?: (ctx: Expr_stmtContext) => void;
|
|
258
259
|
/**
|
|
259
|
-
* Exit a parse tree produced by `
|
|
260
|
+
* Exit a parse tree produced by `Python3Parser.expr_stmt`.
|
|
260
261
|
* @param ctx the parse tree
|
|
261
262
|
*/
|
|
262
263
|
exitExpr_stmt?: (ctx: Expr_stmtContext) => void;
|
|
263
264
|
/**
|
|
264
|
-
* Enter a parse tree produced by `
|
|
265
|
+
* Enter a parse tree produced by `Python3Parser.simple_assign`.
|
|
266
|
+
* @param ctx the parse tree
|
|
267
|
+
*/
|
|
268
|
+
enterSimple_assign?: (ctx: Simple_assignContext) => void;
|
|
269
|
+
/**
|
|
270
|
+
* Exit a parse tree produced by `Python3Parser.simple_assign`.
|
|
271
|
+
* @param ctx the parse tree
|
|
272
|
+
*/
|
|
273
|
+
exitSimple_assign?: (ctx: Simple_assignContext) => void;
|
|
274
|
+
/**
|
|
275
|
+
* Enter a parse tree produced by `Python3Parser.annassign`.
|
|
265
276
|
* @param ctx the parse tree
|
|
266
277
|
*/
|
|
267
278
|
enterAnnassign?: (ctx: AnnassignContext) => void;
|
|
268
279
|
/**
|
|
269
|
-
* Exit a parse tree produced by `
|
|
280
|
+
* Exit a parse tree produced by `Python3Parser.annassign`.
|
|
270
281
|
* @param ctx the parse tree
|
|
271
282
|
*/
|
|
272
283
|
exitAnnassign?: (ctx: AnnassignContext) => void;
|
|
273
284
|
/**
|
|
274
|
-
* Enter a parse tree produced by `
|
|
285
|
+
* Enter a parse tree produced by `Python3Parser.testlist_star_expr`.
|
|
275
286
|
* @param ctx the parse tree
|
|
276
287
|
*/
|
|
277
288
|
enterTestlist_star_expr?: (ctx: Testlist_star_exprContext) => void;
|
|
278
289
|
/**
|
|
279
|
-
* Exit a parse tree produced by `
|
|
290
|
+
* Exit a parse tree produced by `Python3Parser.testlist_star_expr`.
|
|
280
291
|
* @param ctx the parse tree
|
|
281
292
|
*/
|
|
282
293
|
exitTestlist_star_expr?: (ctx: Testlist_star_exprContext) => void;
|
|
283
294
|
/**
|
|
284
|
-
* Enter a parse tree produced by `
|
|
295
|
+
* Enter a parse tree produced by `Python3Parser.augassign`.
|
|
285
296
|
* @param ctx the parse tree
|
|
286
297
|
*/
|
|
287
298
|
enterAugassign?: (ctx: AugassignContext) => void;
|
|
288
299
|
/**
|
|
289
|
-
* Exit a parse tree produced by `
|
|
300
|
+
* Exit a parse tree produced by `Python3Parser.augassign`.
|
|
290
301
|
* @param ctx the parse tree
|
|
291
302
|
*/
|
|
292
303
|
exitAugassign?: (ctx: AugassignContext) => void;
|
|
293
304
|
/**
|
|
294
|
-
* Enter a parse tree produced by `
|
|
305
|
+
* Enter a parse tree produced by `Python3Parser.del_stmt`.
|
|
295
306
|
* @param ctx the parse tree
|
|
296
307
|
*/
|
|
297
308
|
enterDel_stmt?: (ctx: Del_stmtContext) => void;
|
|
298
309
|
/**
|
|
299
|
-
* Exit a parse tree produced by `
|
|
310
|
+
* Exit a parse tree produced by `Python3Parser.del_stmt`.
|
|
300
311
|
* @param ctx the parse tree
|
|
301
312
|
*/
|
|
302
313
|
exitDel_stmt?: (ctx: Del_stmtContext) => void;
|
|
303
314
|
/**
|
|
304
|
-
* Enter a parse tree produced by `
|
|
315
|
+
* Enter a parse tree produced by `Python3Parser.pass_stmt`.
|
|
305
316
|
* @param ctx the parse tree
|
|
306
317
|
*/
|
|
307
318
|
enterPass_stmt?: (ctx: Pass_stmtContext) => void;
|
|
308
319
|
/**
|
|
309
|
-
* Exit a parse tree produced by `
|
|
320
|
+
* Exit a parse tree produced by `Python3Parser.pass_stmt`.
|
|
310
321
|
* @param ctx the parse tree
|
|
311
322
|
*/
|
|
312
323
|
exitPass_stmt?: (ctx: Pass_stmtContext) => void;
|
|
313
324
|
/**
|
|
314
|
-
* Enter a parse tree produced by `
|
|
325
|
+
* Enter a parse tree produced by `Python3Parser.flow_stmt`.
|
|
315
326
|
* @param ctx the parse tree
|
|
316
327
|
*/
|
|
317
328
|
enterFlow_stmt?: (ctx: Flow_stmtContext) => void;
|
|
318
329
|
/**
|
|
319
|
-
* Exit a parse tree produced by `
|
|
330
|
+
* Exit a parse tree produced by `Python3Parser.flow_stmt`.
|
|
320
331
|
* @param ctx the parse tree
|
|
321
332
|
*/
|
|
322
333
|
exitFlow_stmt?: (ctx: Flow_stmtContext) => void;
|
|
323
334
|
/**
|
|
324
|
-
* Enter a parse tree produced by `
|
|
335
|
+
* Enter a parse tree produced by `Python3Parser.break_stmt`.
|
|
325
336
|
* @param ctx the parse tree
|
|
326
337
|
*/
|
|
327
338
|
enterBreak_stmt?: (ctx: Break_stmtContext) => void;
|
|
328
339
|
/**
|
|
329
|
-
* Exit a parse tree produced by `
|
|
340
|
+
* Exit a parse tree produced by `Python3Parser.break_stmt`.
|
|
330
341
|
* @param ctx the parse tree
|
|
331
342
|
*/
|
|
332
343
|
exitBreak_stmt?: (ctx: Break_stmtContext) => void;
|
|
333
344
|
/**
|
|
334
|
-
* Enter a parse tree produced by `
|
|
345
|
+
* Enter a parse tree produced by `Python3Parser.continue_stmt`.
|
|
335
346
|
* @param ctx the parse tree
|
|
336
347
|
*/
|
|
337
348
|
enterContinue_stmt?: (ctx: Continue_stmtContext) => void;
|
|
338
349
|
/**
|
|
339
|
-
* Exit a parse tree produced by `
|
|
350
|
+
* Exit a parse tree produced by `Python3Parser.continue_stmt`.
|
|
340
351
|
* @param ctx the parse tree
|
|
341
352
|
*/
|
|
342
353
|
exitContinue_stmt?: (ctx: Continue_stmtContext) => void;
|
|
343
354
|
/**
|
|
344
|
-
* Enter a parse tree produced by `
|
|
355
|
+
* Enter a parse tree produced by `Python3Parser.return_stmt`.
|
|
345
356
|
* @param ctx the parse tree
|
|
346
357
|
*/
|
|
347
358
|
enterReturn_stmt?: (ctx: Return_stmtContext) => void;
|
|
348
359
|
/**
|
|
349
|
-
* Exit a parse tree produced by `
|
|
360
|
+
* Exit a parse tree produced by `Python3Parser.return_stmt`.
|
|
350
361
|
* @param ctx the parse tree
|
|
351
362
|
*/
|
|
352
363
|
exitReturn_stmt?: (ctx: Return_stmtContext) => void;
|
|
353
364
|
/**
|
|
354
|
-
* Enter a parse tree produced by `
|
|
365
|
+
* Enter a parse tree produced by `Python3Parser.yield_stmt`.
|
|
355
366
|
* @param ctx the parse tree
|
|
356
367
|
*/
|
|
357
368
|
enterYield_stmt?: (ctx: Yield_stmtContext) => void;
|
|
358
369
|
/**
|
|
359
|
-
* Exit a parse tree produced by `
|
|
370
|
+
* Exit a parse tree produced by `Python3Parser.yield_stmt`.
|
|
360
371
|
* @param ctx the parse tree
|
|
361
372
|
*/
|
|
362
373
|
exitYield_stmt?: (ctx: Yield_stmtContext) => void;
|
|
363
374
|
/**
|
|
364
|
-
* Enter a parse tree produced by `
|
|
375
|
+
* Enter a parse tree produced by `Python3Parser.raise_stmt`.
|
|
365
376
|
* @param ctx the parse tree
|
|
366
377
|
*/
|
|
367
378
|
enterRaise_stmt?: (ctx: Raise_stmtContext) => void;
|
|
368
379
|
/**
|
|
369
|
-
* Exit a parse tree produced by `
|
|
380
|
+
* Exit a parse tree produced by `Python3Parser.raise_stmt`.
|
|
370
381
|
* @param ctx the parse tree
|
|
371
382
|
*/
|
|
372
383
|
exitRaise_stmt?: (ctx: Raise_stmtContext) => void;
|
|
373
384
|
/**
|
|
374
|
-
* Enter a parse tree produced by `
|
|
385
|
+
* Enter a parse tree produced by `Python3Parser.import_stmt`.
|
|
375
386
|
* @param ctx the parse tree
|
|
376
387
|
*/
|
|
377
388
|
enterImport_stmt?: (ctx: Import_stmtContext) => void;
|
|
378
389
|
/**
|
|
379
|
-
* Exit a parse tree produced by `
|
|
390
|
+
* Exit a parse tree produced by `Python3Parser.import_stmt`.
|
|
380
391
|
* @param ctx the parse tree
|
|
381
392
|
*/
|
|
382
393
|
exitImport_stmt?: (ctx: Import_stmtContext) => void;
|
|
383
394
|
/**
|
|
384
|
-
* Enter a parse tree produced by `
|
|
395
|
+
* Enter a parse tree produced by `Python3Parser.import_name`.
|
|
385
396
|
* @param ctx the parse tree
|
|
386
397
|
*/
|
|
387
398
|
enterImport_name?: (ctx: Import_nameContext) => void;
|
|
388
399
|
/**
|
|
389
|
-
* Exit a parse tree produced by `
|
|
400
|
+
* Exit a parse tree produced by `Python3Parser.import_name`.
|
|
390
401
|
* @param ctx the parse tree
|
|
391
402
|
*/
|
|
392
403
|
exitImport_name?: (ctx: Import_nameContext) => void;
|
|
393
404
|
/**
|
|
394
|
-
* Enter a parse tree produced by `
|
|
405
|
+
* Enter a parse tree produced by `Python3Parser.import_from`.
|
|
395
406
|
* @param ctx the parse tree
|
|
396
407
|
*/
|
|
397
408
|
enterImport_from?: (ctx: Import_fromContext) => void;
|
|
398
409
|
/**
|
|
399
|
-
* Exit a parse tree produced by `
|
|
410
|
+
* Exit a parse tree produced by `Python3Parser.import_from`.
|
|
400
411
|
* @param ctx the parse tree
|
|
401
412
|
*/
|
|
402
413
|
exitImport_from?: (ctx: Import_fromContext) => void;
|
|
403
414
|
/**
|
|
404
|
-
* Enter a parse tree produced by `
|
|
415
|
+
* Enter a parse tree produced by `Python3Parser.import_as_name`.
|
|
405
416
|
* @param ctx the parse tree
|
|
406
417
|
*/
|
|
407
418
|
enterImport_as_name?: (ctx: Import_as_nameContext) => void;
|
|
408
419
|
/**
|
|
409
|
-
* Exit a parse tree produced by `
|
|
420
|
+
* Exit a parse tree produced by `Python3Parser.import_as_name`.
|
|
410
421
|
* @param ctx the parse tree
|
|
411
422
|
*/
|
|
412
423
|
exitImport_as_name?: (ctx: Import_as_nameContext) => void;
|
|
413
424
|
/**
|
|
414
|
-
* Enter a parse tree produced by `
|
|
425
|
+
* Enter a parse tree produced by `Python3Parser.dotted_as_name`.
|
|
415
426
|
* @param ctx the parse tree
|
|
416
427
|
*/
|
|
417
428
|
enterDotted_as_name?: (ctx: Dotted_as_nameContext) => void;
|
|
418
429
|
/**
|
|
419
|
-
* Exit a parse tree produced by `
|
|
430
|
+
* Exit a parse tree produced by `Python3Parser.dotted_as_name`.
|
|
420
431
|
* @param ctx the parse tree
|
|
421
432
|
*/
|
|
422
433
|
exitDotted_as_name?: (ctx: Dotted_as_nameContext) => void;
|
|
423
434
|
/**
|
|
424
|
-
* Enter a parse tree produced by `
|
|
435
|
+
* Enter a parse tree produced by `Python3Parser.import_as_names`.
|
|
425
436
|
* @param ctx the parse tree
|
|
426
437
|
*/
|
|
427
438
|
enterImport_as_names?: (ctx: Import_as_namesContext) => void;
|
|
428
439
|
/**
|
|
429
|
-
* Exit a parse tree produced by `
|
|
440
|
+
* Exit a parse tree produced by `Python3Parser.import_as_names`.
|
|
430
441
|
* @param ctx the parse tree
|
|
431
442
|
*/
|
|
432
443
|
exitImport_as_names?: (ctx: Import_as_namesContext) => void;
|
|
433
444
|
/**
|
|
434
|
-
* Enter a parse tree produced by `
|
|
445
|
+
* Enter a parse tree produced by `Python3Parser.dotted_as_names`.
|
|
435
446
|
* @param ctx the parse tree
|
|
436
447
|
*/
|
|
437
448
|
enterDotted_as_names?: (ctx: Dotted_as_namesContext) => void;
|
|
438
449
|
/**
|
|
439
|
-
* Exit a parse tree produced by `
|
|
450
|
+
* Exit a parse tree produced by `Python3Parser.dotted_as_names`.
|
|
440
451
|
* @param ctx the parse tree
|
|
441
452
|
*/
|
|
442
453
|
exitDotted_as_names?: (ctx: Dotted_as_namesContext) => void;
|
|
443
454
|
/**
|
|
444
|
-
* Enter a parse tree produced by `
|
|
455
|
+
* Enter a parse tree produced by `Python3Parser.dotted_name`.
|
|
445
456
|
* @param ctx the parse tree
|
|
446
457
|
*/
|
|
447
458
|
enterDotted_name?: (ctx: Dotted_nameContext) => void;
|
|
448
459
|
/**
|
|
449
|
-
* Exit a parse tree produced by `
|
|
460
|
+
* Exit a parse tree produced by `Python3Parser.dotted_name`.
|
|
450
461
|
* @param ctx the parse tree
|
|
451
462
|
*/
|
|
452
463
|
exitDotted_name?: (ctx: Dotted_nameContext) => void;
|
|
453
464
|
/**
|
|
454
|
-
* Enter a parse tree produced by `
|
|
465
|
+
* Enter a parse tree produced by `Python3Parser.global_stmt`.
|
|
455
466
|
* @param ctx the parse tree
|
|
456
467
|
*/
|
|
457
468
|
enterGlobal_stmt?: (ctx: Global_stmtContext) => void;
|
|
458
469
|
/**
|
|
459
|
-
* Exit a parse tree produced by `
|
|
470
|
+
* Exit a parse tree produced by `Python3Parser.global_stmt`.
|
|
460
471
|
* @param ctx the parse tree
|
|
461
472
|
*/
|
|
462
473
|
exitGlobal_stmt?: (ctx: Global_stmtContext) => void;
|
|
463
474
|
/**
|
|
464
|
-
* Enter a parse tree produced by `
|
|
475
|
+
* Enter a parse tree produced by `Python3Parser.nonlocal_stmt`.
|
|
465
476
|
* @param ctx the parse tree
|
|
466
477
|
*/
|
|
467
478
|
enterNonlocal_stmt?: (ctx: Nonlocal_stmtContext) => void;
|
|
468
479
|
/**
|
|
469
|
-
* Exit a parse tree produced by `
|
|
480
|
+
* Exit a parse tree produced by `Python3Parser.nonlocal_stmt`.
|
|
470
481
|
* @param ctx the parse tree
|
|
471
482
|
*/
|
|
472
483
|
exitNonlocal_stmt?: (ctx: Nonlocal_stmtContext) => void;
|
|
473
484
|
/**
|
|
474
|
-
* Enter a parse tree produced by `
|
|
485
|
+
* Enter a parse tree produced by `Python3Parser.assert_stmt`.
|
|
475
486
|
* @param ctx the parse tree
|
|
476
487
|
*/
|
|
477
488
|
enterAssert_stmt?: (ctx: Assert_stmtContext) => void;
|
|
478
489
|
/**
|
|
479
|
-
* Exit a parse tree produced by `
|
|
490
|
+
* Exit a parse tree produced by `Python3Parser.assert_stmt`.
|
|
480
491
|
* @param ctx the parse tree
|
|
481
492
|
*/
|
|
482
493
|
exitAssert_stmt?: (ctx: Assert_stmtContext) => void;
|
|
483
494
|
/**
|
|
484
|
-
* Enter a parse tree produced by `
|
|
495
|
+
* Enter a parse tree produced by `Python3Parser.compound_stmt`.
|
|
485
496
|
* @param ctx the parse tree
|
|
486
497
|
*/
|
|
487
498
|
enterCompound_stmt?: (ctx: Compound_stmtContext) => void;
|
|
488
499
|
/**
|
|
489
|
-
* Exit a parse tree produced by `
|
|
500
|
+
* Exit a parse tree produced by `Python3Parser.compound_stmt`.
|
|
490
501
|
* @param ctx the parse tree
|
|
491
502
|
*/
|
|
492
503
|
exitCompound_stmt?: (ctx: Compound_stmtContext) => void;
|
|
493
504
|
/**
|
|
494
|
-
* Enter a parse tree produced by `
|
|
505
|
+
* Enter a parse tree produced by `Python3Parser.async_stmt`.
|
|
495
506
|
* @param ctx the parse tree
|
|
496
507
|
*/
|
|
497
508
|
enterAsync_stmt?: (ctx: Async_stmtContext) => void;
|
|
498
509
|
/**
|
|
499
|
-
* Exit a parse tree produced by `
|
|
510
|
+
* Exit a parse tree produced by `Python3Parser.async_stmt`.
|
|
500
511
|
* @param ctx the parse tree
|
|
501
512
|
*/
|
|
502
513
|
exitAsync_stmt?: (ctx: Async_stmtContext) => void;
|
|
503
514
|
/**
|
|
504
|
-
* Enter a parse tree produced by `
|
|
515
|
+
* Enter a parse tree produced by `Python3Parser.if_stmt`.
|
|
505
516
|
* @param ctx the parse tree
|
|
506
517
|
*/
|
|
507
518
|
enterIf_stmt?: (ctx: If_stmtContext) => void;
|
|
508
519
|
/**
|
|
509
|
-
* Exit a parse tree produced by `
|
|
520
|
+
* Exit a parse tree produced by `Python3Parser.if_stmt`.
|
|
510
521
|
* @param ctx the parse tree
|
|
511
522
|
*/
|
|
512
523
|
exitIf_stmt?: (ctx: If_stmtContext) => void;
|
|
513
524
|
/**
|
|
514
|
-
* Enter a parse tree produced by `
|
|
525
|
+
* Enter a parse tree produced by `Python3Parser.while_stmt`.
|
|
515
526
|
* @param ctx the parse tree
|
|
516
527
|
*/
|
|
517
528
|
enterWhile_stmt?: (ctx: While_stmtContext) => void;
|
|
518
529
|
/**
|
|
519
|
-
* Exit a parse tree produced by `
|
|
530
|
+
* Exit a parse tree produced by `Python3Parser.while_stmt`.
|
|
520
531
|
* @param ctx the parse tree
|
|
521
532
|
*/
|
|
522
533
|
exitWhile_stmt?: (ctx: While_stmtContext) => void;
|
|
523
534
|
/**
|
|
524
|
-
* Enter a parse tree produced by `
|
|
535
|
+
* Enter a parse tree produced by `Python3Parser.for_stmt`.
|
|
525
536
|
* @param ctx the parse tree
|
|
526
537
|
*/
|
|
527
538
|
enterFor_stmt?: (ctx: For_stmtContext) => void;
|
|
528
539
|
/**
|
|
529
|
-
* Exit a parse tree produced by `
|
|
540
|
+
* Exit a parse tree produced by `Python3Parser.for_stmt`.
|
|
530
541
|
* @param ctx the parse tree
|
|
531
542
|
*/
|
|
532
543
|
exitFor_stmt?: (ctx: For_stmtContext) => void;
|
|
533
544
|
/**
|
|
534
|
-
* Enter a parse tree produced by `
|
|
545
|
+
* Enter a parse tree produced by `Python3Parser.try_stmt`.
|
|
535
546
|
* @param ctx the parse tree
|
|
536
547
|
*/
|
|
537
548
|
enterTry_stmt?: (ctx: Try_stmtContext) => void;
|
|
538
549
|
/**
|
|
539
|
-
* Exit a parse tree produced by `
|
|
550
|
+
* Exit a parse tree produced by `Python3Parser.try_stmt`.
|
|
540
551
|
* @param ctx the parse tree
|
|
541
552
|
*/
|
|
542
553
|
exitTry_stmt?: (ctx: Try_stmtContext) => void;
|
|
543
554
|
/**
|
|
544
|
-
* Enter a parse tree produced by `
|
|
555
|
+
* Enter a parse tree produced by `Python3Parser.with_stmt`.
|
|
545
556
|
* @param ctx the parse tree
|
|
546
557
|
*/
|
|
547
558
|
enterWith_stmt?: (ctx: With_stmtContext) => void;
|
|
548
559
|
/**
|
|
549
|
-
* Exit a parse tree produced by `
|
|
560
|
+
* Exit a parse tree produced by `Python3Parser.with_stmt`.
|
|
550
561
|
* @param ctx the parse tree
|
|
551
562
|
*/
|
|
552
563
|
exitWith_stmt?: (ctx: With_stmtContext) => void;
|
|
553
564
|
/**
|
|
554
|
-
* Enter a parse tree produced by `
|
|
565
|
+
* Enter a parse tree produced by `Python3Parser.with_item`.
|
|
555
566
|
* @param ctx the parse tree
|
|
556
567
|
*/
|
|
557
568
|
enterWith_item?: (ctx: With_itemContext) => void;
|
|
558
569
|
/**
|
|
559
|
-
* Exit a parse tree produced by `
|
|
570
|
+
* Exit a parse tree produced by `Python3Parser.with_item`.
|
|
560
571
|
* @param ctx the parse tree
|
|
561
572
|
*/
|
|
562
573
|
exitWith_item?: (ctx: With_itemContext) => void;
|
|
563
574
|
/**
|
|
564
|
-
* Enter a parse tree produced by `
|
|
575
|
+
* Enter a parse tree produced by `Python3Parser.except_clause`.
|
|
565
576
|
* @param ctx the parse tree
|
|
566
577
|
*/
|
|
567
578
|
enterExcept_clause?: (ctx: Except_clauseContext) => void;
|
|
568
579
|
/**
|
|
569
|
-
* Exit a parse tree produced by `
|
|
580
|
+
* Exit a parse tree produced by `Python3Parser.except_clause`.
|
|
570
581
|
* @param ctx the parse tree
|
|
571
582
|
*/
|
|
572
583
|
exitExcept_clause?: (ctx: Except_clauseContext) => void;
|
|
573
584
|
/**
|
|
574
|
-
* Enter a parse tree produced by `
|
|
585
|
+
* Enter a parse tree produced by `Python3Parser.suite`.
|
|
575
586
|
* @param ctx the parse tree
|
|
576
587
|
*/
|
|
577
588
|
enterSuite?: (ctx: SuiteContext) => void;
|
|
578
589
|
/**
|
|
579
|
-
* Exit a parse tree produced by `
|
|
590
|
+
* Exit a parse tree produced by `Python3Parser.suite`.
|
|
580
591
|
* @param ctx the parse tree
|
|
581
592
|
*/
|
|
582
593
|
exitSuite?: (ctx: SuiteContext) => void;
|
|
583
594
|
/**
|
|
584
|
-
* Enter a parse tree produced by `
|
|
595
|
+
* Enter a parse tree produced by `Python3Parser.test`.
|
|
585
596
|
* @param ctx the parse tree
|
|
586
597
|
*/
|
|
587
598
|
enterTest?: (ctx: TestContext) => void;
|
|
588
599
|
/**
|
|
589
|
-
* Exit a parse tree produced by `
|
|
600
|
+
* Exit a parse tree produced by `Python3Parser.test`.
|
|
590
601
|
* @param ctx the parse tree
|
|
591
602
|
*/
|
|
592
603
|
exitTest?: (ctx: TestContext) => void;
|
|
593
604
|
/**
|
|
594
|
-
* Enter a parse tree produced by `
|
|
605
|
+
* Enter a parse tree produced by `Python3Parser.test_nocond`.
|
|
595
606
|
* @param ctx the parse tree
|
|
596
607
|
*/
|
|
597
608
|
enterTest_nocond?: (ctx: Test_nocondContext) => void;
|
|
598
609
|
/**
|
|
599
|
-
* Exit a parse tree produced by `
|
|
610
|
+
* Exit a parse tree produced by `Python3Parser.test_nocond`.
|
|
600
611
|
* @param ctx the parse tree
|
|
601
612
|
*/
|
|
602
613
|
exitTest_nocond?: (ctx: Test_nocondContext) => void;
|
|
603
614
|
/**
|
|
604
|
-
* Enter a parse tree produced by `
|
|
615
|
+
* Enter a parse tree produced by `Python3Parser.lambdef`.
|
|
605
616
|
* @param ctx the parse tree
|
|
606
617
|
*/
|
|
607
618
|
enterLambdef?: (ctx: LambdefContext) => void;
|
|
608
619
|
/**
|
|
609
|
-
* Exit a parse tree produced by `
|
|
620
|
+
* Exit a parse tree produced by `Python3Parser.lambdef`.
|
|
610
621
|
* @param ctx the parse tree
|
|
611
622
|
*/
|
|
612
623
|
exitLambdef?: (ctx: LambdefContext) => void;
|
|
613
624
|
/**
|
|
614
|
-
* Enter a parse tree produced by `
|
|
625
|
+
* Enter a parse tree produced by `Python3Parser.lambdef_nocond`.
|
|
615
626
|
* @param ctx the parse tree
|
|
616
627
|
*/
|
|
617
628
|
enterLambdef_nocond?: (ctx: Lambdef_nocondContext) => void;
|
|
618
629
|
/**
|
|
619
|
-
* Exit a parse tree produced by `
|
|
630
|
+
* Exit a parse tree produced by `Python3Parser.lambdef_nocond`.
|
|
620
631
|
* @param ctx the parse tree
|
|
621
632
|
*/
|
|
622
633
|
exitLambdef_nocond?: (ctx: Lambdef_nocondContext) => void;
|
|
623
634
|
/**
|
|
624
|
-
* Enter a parse tree produced by `
|
|
635
|
+
* Enter a parse tree produced by `Python3Parser.or_test`.
|
|
625
636
|
* @param ctx the parse tree
|
|
626
637
|
*/
|
|
627
638
|
enterOr_test?: (ctx: Or_testContext) => void;
|
|
628
639
|
/**
|
|
629
|
-
* Exit a parse tree produced by `
|
|
640
|
+
* Exit a parse tree produced by `Python3Parser.or_test`.
|
|
630
641
|
* @param ctx the parse tree
|
|
631
642
|
*/
|
|
632
643
|
exitOr_test?: (ctx: Or_testContext) => void;
|
|
633
644
|
/**
|
|
634
|
-
* Enter a parse tree produced by `
|
|
645
|
+
* Enter a parse tree produced by `Python3Parser.and_test`.
|
|
635
646
|
* @param ctx the parse tree
|
|
636
647
|
*/
|
|
637
648
|
enterAnd_test?: (ctx: And_testContext) => void;
|
|
638
649
|
/**
|
|
639
|
-
* Exit a parse tree produced by `
|
|
650
|
+
* Exit a parse tree produced by `Python3Parser.and_test`.
|
|
640
651
|
* @param ctx the parse tree
|
|
641
652
|
*/
|
|
642
653
|
exitAnd_test?: (ctx: And_testContext) => void;
|
|
643
654
|
/**
|
|
644
|
-
* Enter a parse tree produced by `
|
|
655
|
+
* Enter a parse tree produced by `Python3Parser.not_test`.
|
|
645
656
|
* @param ctx the parse tree
|
|
646
657
|
*/
|
|
647
658
|
enterNot_test?: (ctx: Not_testContext) => void;
|
|
648
659
|
/**
|
|
649
|
-
* Exit a parse tree produced by `
|
|
660
|
+
* Exit a parse tree produced by `Python3Parser.not_test`.
|
|
650
661
|
* @param ctx the parse tree
|
|
651
662
|
*/
|
|
652
663
|
exitNot_test?: (ctx: Not_testContext) => void;
|
|
653
664
|
/**
|
|
654
|
-
* Enter a parse tree produced by `
|
|
665
|
+
* Enter a parse tree produced by `Python3Parser.comparison`.
|
|
655
666
|
* @param ctx the parse tree
|
|
656
667
|
*/
|
|
657
668
|
enterComparison?: (ctx: ComparisonContext) => void;
|
|
658
669
|
/**
|
|
659
|
-
* Exit a parse tree produced by `
|
|
670
|
+
* Exit a parse tree produced by `Python3Parser.comparison`.
|
|
660
671
|
* @param ctx the parse tree
|
|
661
672
|
*/
|
|
662
673
|
exitComparison?: (ctx: ComparisonContext) => void;
|
|
663
674
|
/**
|
|
664
|
-
* Enter a parse tree produced by `
|
|
675
|
+
* Enter a parse tree produced by `Python3Parser.comp_op`.
|
|
665
676
|
* @param ctx the parse tree
|
|
666
677
|
*/
|
|
667
678
|
enterComp_op?: (ctx: Comp_opContext) => void;
|
|
668
679
|
/**
|
|
669
|
-
* Exit a parse tree produced by `
|
|
680
|
+
* Exit a parse tree produced by `Python3Parser.comp_op`.
|
|
670
681
|
* @param ctx the parse tree
|
|
671
682
|
*/
|
|
672
683
|
exitComp_op?: (ctx: Comp_opContext) => void;
|
|
673
684
|
/**
|
|
674
|
-
* Enter a parse tree produced by `
|
|
685
|
+
* Enter a parse tree produced by `Python3Parser.star_expr`.
|
|
675
686
|
* @param ctx the parse tree
|
|
676
687
|
*/
|
|
677
688
|
enterStar_expr?: (ctx: Star_exprContext) => void;
|
|
678
689
|
/**
|
|
679
|
-
* Exit a parse tree produced by `
|
|
690
|
+
* Exit a parse tree produced by `Python3Parser.star_expr`.
|
|
680
691
|
* @param ctx the parse tree
|
|
681
692
|
*/
|
|
682
693
|
exitStar_expr?: (ctx: Star_exprContext) => void;
|
|
683
694
|
/**
|
|
684
|
-
* Enter a parse tree produced by `
|
|
695
|
+
* Enter a parse tree produced by `Python3Parser.expr`.
|
|
685
696
|
* @param ctx the parse tree
|
|
686
697
|
*/
|
|
687
698
|
enterExpr?: (ctx: ExprContext) => void;
|
|
688
699
|
/**
|
|
689
|
-
* Exit a parse tree produced by `
|
|
700
|
+
* Exit a parse tree produced by `Python3Parser.expr`.
|
|
690
701
|
* @param ctx the parse tree
|
|
691
702
|
*/
|
|
692
703
|
exitExpr?: (ctx: ExprContext) => void;
|
|
693
704
|
/**
|
|
694
|
-
* Enter a parse tree produced by `
|
|
705
|
+
* Enter a parse tree produced by `Python3Parser.xor_expr`.
|
|
695
706
|
* @param ctx the parse tree
|
|
696
707
|
*/
|
|
697
708
|
enterXor_expr?: (ctx: Xor_exprContext) => void;
|
|
698
709
|
/**
|
|
699
|
-
* Exit a parse tree produced by `
|
|
710
|
+
* Exit a parse tree produced by `Python3Parser.xor_expr`.
|
|
700
711
|
* @param ctx the parse tree
|
|
701
712
|
*/
|
|
702
713
|
exitXor_expr?: (ctx: Xor_exprContext) => void;
|
|
703
714
|
/**
|
|
704
|
-
* Enter a parse tree produced by `
|
|
715
|
+
* Enter a parse tree produced by `Python3Parser.and_expr`.
|
|
705
716
|
* @param ctx the parse tree
|
|
706
717
|
*/
|
|
707
718
|
enterAnd_expr?: (ctx: And_exprContext) => void;
|
|
708
719
|
/**
|
|
709
|
-
* Exit a parse tree produced by `
|
|
720
|
+
* Exit a parse tree produced by `Python3Parser.and_expr`.
|
|
710
721
|
* @param ctx the parse tree
|
|
711
722
|
*/
|
|
712
723
|
exitAnd_expr?: (ctx: And_exprContext) => void;
|
|
713
724
|
/**
|
|
714
|
-
* Enter a parse tree produced by `
|
|
725
|
+
* Enter a parse tree produced by `Python3Parser.shift_expr`.
|
|
715
726
|
* @param ctx the parse tree
|
|
716
727
|
*/
|
|
717
728
|
enterShift_expr?: (ctx: Shift_exprContext) => void;
|
|
718
729
|
/**
|
|
719
|
-
* Exit a parse tree produced by `
|
|
730
|
+
* Exit a parse tree produced by `Python3Parser.shift_expr`.
|
|
720
731
|
* @param ctx the parse tree
|
|
721
732
|
*/
|
|
722
733
|
exitShift_expr?: (ctx: Shift_exprContext) => void;
|
|
723
734
|
/**
|
|
724
|
-
* Enter a parse tree produced by `
|
|
735
|
+
* Enter a parse tree produced by `Python3Parser.arith_expr`.
|
|
725
736
|
* @param ctx the parse tree
|
|
726
737
|
*/
|
|
727
738
|
enterArith_expr?: (ctx: Arith_exprContext) => void;
|
|
728
739
|
/**
|
|
729
|
-
* Exit a parse tree produced by `
|
|
740
|
+
* Exit a parse tree produced by `Python3Parser.arith_expr`.
|
|
730
741
|
* @param ctx the parse tree
|
|
731
742
|
*/
|
|
732
743
|
exitArith_expr?: (ctx: Arith_exprContext) => void;
|
|
733
744
|
/**
|
|
734
|
-
* Enter a parse tree produced by `
|
|
745
|
+
* Enter a parse tree produced by `Python3Parser.term`.
|
|
735
746
|
* @param ctx the parse tree
|
|
736
747
|
*/
|
|
737
748
|
enterTerm?: (ctx: TermContext) => void;
|
|
738
749
|
/**
|
|
739
|
-
* Exit a parse tree produced by `
|
|
750
|
+
* Exit a parse tree produced by `Python3Parser.term`.
|
|
740
751
|
* @param ctx the parse tree
|
|
741
752
|
*/
|
|
742
753
|
exitTerm?: (ctx: TermContext) => void;
|
|
743
754
|
/**
|
|
744
|
-
* Enter a parse tree produced by `
|
|
755
|
+
* Enter a parse tree produced by `Python3Parser.factor`.
|
|
745
756
|
* @param ctx the parse tree
|
|
746
757
|
*/
|
|
747
758
|
enterFactor?: (ctx: FactorContext) => void;
|
|
748
759
|
/**
|
|
749
|
-
* Exit a parse tree produced by `
|
|
760
|
+
* Exit a parse tree produced by `Python3Parser.factor`.
|
|
750
761
|
* @param ctx the parse tree
|
|
751
762
|
*/
|
|
752
763
|
exitFactor?: (ctx: FactorContext) => void;
|
|
753
764
|
/**
|
|
754
|
-
* Enter a parse tree produced by `
|
|
765
|
+
* Enter a parse tree produced by `Python3Parser.power`.
|
|
755
766
|
* @param ctx the parse tree
|
|
756
767
|
*/
|
|
757
768
|
enterPower?: (ctx: PowerContext) => void;
|
|
758
769
|
/**
|
|
759
|
-
* Exit a parse tree produced by `
|
|
770
|
+
* Exit a parse tree produced by `Python3Parser.power`.
|
|
760
771
|
* @param ctx the parse tree
|
|
761
772
|
*/
|
|
762
773
|
exitPower?: (ctx: PowerContext) => void;
|
|
763
774
|
/**
|
|
764
|
-
* Enter a parse tree produced by `
|
|
775
|
+
* Enter a parse tree produced by `Python3Parser.atom_expr`.
|
|
765
776
|
* @param ctx the parse tree
|
|
766
777
|
*/
|
|
767
778
|
enterAtom_expr?: (ctx: Atom_exprContext) => void;
|
|
768
779
|
/**
|
|
769
|
-
* Exit a parse tree produced by `
|
|
780
|
+
* Exit a parse tree produced by `Python3Parser.atom_expr`.
|
|
770
781
|
* @param ctx the parse tree
|
|
771
782
|
*/
|
|
772
783
|
exitAtom_expr?: (ctx: Atom_exprContext) => void;
|
|
773
784
|
/**
|
|
774
|
-
* Enter a parse tree produced by `
|
|
785
|
+
* Enter a parse tree produced by `Python3Parser.atom`.
|
|
775
786
|
* @param ctx the parse tree
|
|
776
787
|
*/
|
|
777
788
|
enterAtom?: (ctx: AtomContext) => void;
|
|
778
789
|
/**
|
|
779
|
-
* Exit a parse tree produced by `
|
|
790
|
+
* Exit a parse tree produced by `Python3Parser.atom`.
|
|
780
791
|
* @param ctx the parse tree
|
|
781
792
|
*/
|
|
782
793
|
exitAtom?: (ctx: AtomContext) => void;
|
|
783
794
|
/**
|
|
784
|
-
* Enter a parse tree produced by `
|
|
795
|
+
* Enter a parse tree produced by `Python3Parser.testlist_comp`.
|
|
785
796
|
* @param ctx the parse tree
|
|
786
797
|
*/
|
|
787
798
|
enterTestlist_comp?: (ctx: Testlist_compContext) => void;
|
|
788
799
|
/**
|
|
789
|
-
* Exit a parse tree produced by `
|
|
800
|
+
* Exit a parse tree produced by `Python3Parser.testlist_comp`.
|
|
790
801
|
* @param ctx the parse tree
|
|
791
802
|
*/
|
|
792
803
|
exitTestlist_comp?: (ctx: Testlist_compContext) => void;
|
|
793
804
|
/**
|
|
794
|
-
* Enter a parse tree produced by `
|
|
805
|
+
* Enter a parse tree produced by `Python3Parser.trailer`.
|
|
795
806
|
* @param ctx the parse tree
|
|
796
807
|
*/
|
|
797
808
|
enterTrailer?: (ctx: TrailerContext) => void;
|
|
798
809
|
/**
|
|
799
|
-
* Exit a parse tree produced by `
|
|
810
|
+
* Exit a parse tree produced by `Python3Parser.trailer`.
|
|
800
811
|
* @param ctx the parse tree
|
|
801
812
|
*/
|
|
802
813
|
exitTrailer?: (ctx: TrailerContext) => void;
|
|
803
814
|
/**
|
|
804
|
-
* Enter a parse tree produced by `
|
|
815
|
+
* Enter a parse tree produced by `Python3Parser.subscriptlist`.
|
|
805
816
|
* @param ctx the parse tree
|
|
806
817
|
*/
|
|
807
818
|
enterSubscriptlist?: (ctx: SubscriptlistContext) => void;
|
|
808
819
|
/**
|
|
809
|
-
* Exit a parse tree produced by `
|
|
820
|
+
* Exit a parse tree produced by `Python3Parser.subscriptlist`.
|
|
810
821
|
* @param ctx the parse tree
|
|
811
822
|
*/
|
|
812
823
|
exitSubscriptlist?: (ctx: SubscriptlistContext) => void;
|
|
813
824
|
/**
|
|
814
|
-
* Enter a parse tree produced by `
|
|
825
|
+
* Enter a parse tree produced by `Python3Parser.subscript`.
|
|
815
826
|
* @param ctx the parse tree
|
|
816
827
|
*/
|
|
817
828
|
enterSubscript?: (ctx: SubscriptContext) => void;
|
|
818
829
|
/**
|
|
819
|
-
* Exit a parse tree produced by `
|
|
830
|
+
* Exit a parse tree produced by `Python3Parser.subscript`.
|
|
820
831
|
* @param ctx the parse tree
|
|
821
832
|
*/
|
|
822
833
|
exitSubscript?: (ctx: SubscriptContext) => void;
|
|
823
834
|
/**
|
|
824
|
-
* Enter a parse tree produced by `
|
|
835
|
+
* Enter a parse tree produced by `Python3Parser.sliceop`.
|
|
825
836
|
* @param ctx the parse tree
|
|
826
837
|
*/
|
|
827
838
|
enterSliceop?: (ctx: SliceopContext) => void;
|
|
828
839
|
/**
|
|
829
|
-
* Exit a parse tree produced by `
|
|
840
|
+
* Exit a parse tree produced by `Python3Parser.sliceop`.
|
|
830
841
|
* @param ctx the parse tree
|
|
831
842
|
*/
|
|
832
843
|
exitSliceop?: (ctx: SliceopContext) => void;
|
|
833
844
|
/**
|
|
834
|
-
* Enter a parse tree produced by `
|
|
845
|
+
* Enter a parse tree produced by `Python3Parser.exprlist`.
|
|
835
846
|
* @param ctx the parse tree
|
|
836
847
|
*/
|
|
837
848
|
enterExprlist?: (ctx: ExprlistContext) => void;
|
|
838
849
|
/**
|
|
839
|
-
* Exit a parse tree produced by `
|
|
850
|
+
* Exit a parse tree produced by `Python3Parser.exprlist`.
|
|
840
851
|
* @param ctx the parse tree
|
|
841
852
|
*/
|
|
842
853
|
exitExprlist?: (ctx: ExprlistContext) => void;
|
|
843
854
|
/**
|
|
844
|
-
* Enter a parse tree produced by `
|
|
855
|
+
* Enter a parse tree produced by `Python3Parser.testlist`.
|
|
845
856
|
* @param ctx the parse tree
|
|
846
857
|
*/
|
|
847
858
|
enterTestlist?: (ctx: TestlistContext) => void;
|
|
848
859
|
/**
|
|
849
|
-
* Exit a parse tree produced by `
|
|
860
|
+
* Exit a parse tree produced by `Python3Parser.testlist`.
|
|
850
861
|
* @param ctx the parse tree
|
|
851
862
|
*/
|
|
852
863
|
exitTestlist?: (ctx: TestlistContext) => void;
|
|
853
864
|
/**
|
|
854
|
-
* Enter a parse tree produced by `
|
|
865
|
+
* Enter a parse tree produced by `Python3Parser.dictorsetmaker`.
|
|
855
866
|
* @param ctx the parse tree
|
|
856
867
|
*/
|
|
857
868
|
enterDictorsetmaker?: (ctx: DictorsetmakerContext) => void;
|
|
858
869
|
/**
|
|
859
|
-
* Exit a parse tree produced by `
|
|
870
|
+
* Exit a parse tree produced by `Python3Parser.dictorsetmaker`.
|
|
860
871
|
* @param ctx the parse tree
|
|
861
872
|
*/
|
|
862
873
|
exitDictorsetmaker?: (ctx: DictorsetmakerContext) => void;
|
|
863
874
|
/**
|
|
864
|
-
* Enter a parse tree produced by `
|
|
875
|
+
* Enter a parse tree produced by `Python3Parser.classdef`.
|
|
865
876
|
* @param ctx the parse tree
|
|
866
877
|
*/
|
|
867
878
|
enterClassdef?: (ctx: ClassdefContext) => void;
|
|
868
879
|
/**
|
|
869
|
-
* Exit a parse tree produced by `
|
|
880
|
+
* Exit a parse tree produced by `Python3Parser.classdef`.
|
|
870
881
|
* @param ctx the parse tree
|
|
871
882
|
*/
|
|
872
883
|
exitClassdef?: (ctx: ClassdefContext) => void;
|
|
873
884
|
/**
|
|
874
|
-
* Enter a parse tree produced by `
|
|
885
|
+
* Enter a parse tree produced by `Python3Parser.arglist`.
|
|
875
886
|
* @param ctx the parse tree
|
|
876
887
|
*/
|
|
877
888
|
enterArglist?: (ctx: ArglistContext) => void;
|
|
878
889
|
/**
|
|
879
|
-
* Exit a parse tree produced by `
|
|
890
|
+
* Exit a parse tree produced by `Python3Parser.arglist`.
|
|
880
891
|
* @param ctx the parse tree
|
|
881
892
|
*/
|
|
882
893
|
exitArglist?: (ctx: ArglistContext) => void;
|
|
883
894
|
/**
|
|
884
|
-
* Enter a parse tree produced by `
|
|
895
|
+
* Enter a parse tree produced by `Python3Parser.argument`.
|
|
885
896
|
* @param ctx the parse tree
|
|
886
897
|
*/
|
|
887
898
|
enterArgument?: (ctx: ArgumentContext) => void;
|
|
888
899
|
/**
|
|
889
|
-
* Exit a parse tree produced by `
|
|
900
|
+
* Exit a parse tree produced by `Python3Parser.argument`.
|
|
890
901
|
* @param ctx the parse tree
|
|
891
902
|
*/
|
|
892
903
|
exitArgument?: (ctx: ArgumentContext) => void;
|
|
893
904
|
/**
|
|
894
|
-
* Enter a parse tree produced by `
|
|
905
|
+
* Enter a parse tree produced by `Python3Parser.comp_iter`.
|
|
895
906
|
* @param ctx the parse tree
|
|
896
907
|
*/
|
|
897
908
|
enterComp_iter?: (ctx: Comp_iterContext) => void;
|
|
898
909
|
/**
|
|
899
|
-
* Exit a parse tree produced by `
|
|
910
|
+
* Exit a parse tree produced by `Python3Parser.comp_iter`.
|
|
900
911
|
* @param ctx the parse tree
|
|
901
912
|
*/
|
|
902
913
|
exitComp_iter?: (ctx: Comp_iterContext) => void;
|
|
903
914
|
/**
|
|
904
|
-
* Enter a parse tree produced by `
|
|
915
|
+
* Enter a parse tree produced by `Python3Parser.comp_for`.
|
|
905
916
|
* @param ctx the parse tree
|
|
906
917
|
*/
|
|
907
918
|
enterComp_for?: (ctx: Comp_forContext) => void;
|
|
908
919
|
/**
|
|
909
|
-
* Exit a parse tree produced by `
|
|
920
|
+
* Exit a parse tree produced by `Python3Parser.comp_for`.
|
|
910
921
|
* @param ctx the parse tree
|
|
911
922
|
*/
|
|
912
923
|
exitComp_for?: (ctx: Comp_forContext) => void;
|
|
913
924
|
/**
|
|
914
|
-
* Enter a parse tree produced by `
|
|
925
|
+
* Enter a parse tree produced by `Python3Parser.comp_if`.
|
|
915
926
|
* @param ctx the parse tree
|
|
916
927
|
*/
|
|
917
928
|
enterComp_if?: (ctx: Comp_ifContext) => void;
|
|
918
929
|
/**
|
|
919
|
-
* Exit a parse tree produced by `
|
|
930
|
+
* Exit a parse tree produced by `Python3Parser.comp_if`.
|
|
920
931
|
* @param ctx the parse tree
|
|
921
932
|
*/
|
|
922
933
|
exitComp_if?: (ctx: Comp_ifContext) => void;
|
|
923
934
|
/**
|
|
924
|
-
* Enter a parse tree produced by `
|
|
935
|
+
* Enter a parse tree produced by `Python3Parser.encoding_decl`.
|
|
925
936
|
* @param ctx the parse tree
|
|
926
937
|
*/
|
|
927
938
|
enterEncoding_decl?: (ctx: Encoding_declContext) => void;
|
|
928
939
|
/**
|
|
929
|
-
* Exit a parse tree produced by `
|
|
940
|
+
* Exit a parse tree produced by `Python3Parser.encoding_decl`.
|
|
930
941
|
* @param ctx the parse tree
|
|
931
942
|
*/
|
|
932
943
|
exitEncoding_decl?: (ctx: Encoding_declContext) => void;
|
|
933
944
|
/**
|
|
934
|
-
* Enter a parse tree produced by `
|
|
945
|
+
* Enter a parse tree produced by `Python3Parser.yield_expr`.
|
|
935
946
|
* @param ctx the parse tree
|
|
936
947
|
*/
|
|
937
948
|
enterYield_expr?: (ctx: Yield_exprContext) => void;
|
|
938
949
|
/**
|
|
939
|
-
* Exit a parse tree produced by `
|
|
950
|
+
* Exit a parse tree produced by `Python3Parser.yield_expr`.
|
|
940
951
|
* @param ctx the parse tree
|
|
941
952
|
*/
|
|
942
953
|
exitYield_expr?: (ctx: Yield_exprContext) => void;
|
|
943
954
|
/**
|
|
944
|
-
* Enter a parse tree produced by `
|
|
955
|
+
* Enter a parse tree produced by `Python3Parser.yield_arg`.
|
|
945
956
|
* @param ctx the parse tree
|
|
946
957
|
*/
|
|
947
958
|
enterYield_arg?: (ctx: Yield_argContext) => void;
|
|
948
959
|
/**
|
|
949
|
-
* Exit a parse tree produced by `
|
|
960
|
+
* Exit a parse tree produced by `Python3Parser.yield_arg`.
|
|
950
961
|
* @param ctx the parse tree
|
|
951
962
|
*/
|
|
952
963
|
exitYield_arg?: (ctx: Yield_argContext) => void;
|