@cubejs-backend/schema-compiler 1.3.55 → 1.3.57

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.
Files changed (77) hide show
  1. package/dist/src/adapter/BaseQuery.d.ts.map +1 -1
  2. package/dist/src/adapter/BaseQuery.js +0 -4
  3. package/dist/src/adapter/BaseQuery.js.map +1 -1
  4. package/dist/src/adapter/PrestodbQuery.d.ts.map +1 -1
  5. package/dist/src/adapter/PrestodbQuery.js +2 -0
  6. package/dist/src/adapter/PrestodbQuery.js.map +1 -1
  7. package/dist/src/compiler/CubeSymbols.d.ts +3 -0
  8. package/dist/src/compiler/CubeSymbols.d.ts.map +1 -1
  9. package/dist/src/compiler/CubeSymbols.js.map +1 -1
  10. package/dist/src/compiler/CubeValidator.d.ts.map +1 -1
  11. package/dist/src/compiler/CubeValidator.js +8 -2
  12. package/dist/src/compiler/CubeValidator.js.map +1 -1
  13. package/dist/src/compiler/DataSchemaCompiler.d.ts +2 -1
  14. package/dist/src/compiler/DataSchemaCompiler.d.ts.map +1 -1
  15. package/dist/src/compiler/DataSchemaCompiler.js +119 -55
  16. package/dist/src/compiler/DataSchemaCompiler.js.map +1 -1
  17. package/dist/src/compiler/PrepareCompiler.d.ts.map +1 -1
  18. package/dist/src/compiler/PrepareCompiler.js +1 -0
  19. package/dist/src/compiler/PrepareCompiler.js.map +1 -1
  20. package/dist/src/compiler/YamlCompiler.d.ts +2 -2
  21. package/dist/src/compiler/YamlCompiler.d.ts.map +1 -1
  22. package/dist/src/compiler/YamlCompiler.js +10 -5
  23. package/dist/src/compiler/YamlCompiler.js.map +1 -1
  24. package/dist/src/compiler/transpilers/CubePropContextTranspiler.d.ts.map +1 -1
  25. package/dist/src/compiler/transpilers/CubePropContextTranspiler.js.map +1 -1
  26. package/dist/src/compiler/transpilers/IIFETranspiler.d.ts +13 -0
  27. package/dist/src/compiler/transpilers/IIFETranspiler.d.ts.map +1 -0
  28. package/dist/src/compiler/transpilers/IIFETranspiler.js +52 -0
  29. package/dist/src/compiler/transpilers/IIFETranspiler.js.map +1 -0
  30. package/dist/src/compiler/transpilers/ImportExportTranspiler.js +6 -6
  31. package/dist/src/compiler/transpilers/ImportExportTranspiler.js.map +1 -1
  32. package/dist/src/compiler/transpilers/index.d.ts +1 -0
  33. package/dist/src/compiler/transpilers/index.d.ts.map +1 -1
  34. package/dist/src/compiler/transpilers/index.js +1 -0
  35. package/dist/src/compiler/transpilers/index.js.map +1 -1
  36. package/dist/src/compiler/transpilers/transpiler_worker.js +2 -0
  37. package/dist/src/compiler/transpilers/transpiler_worker.js.map +1 -1
  38. package/dist/src/parser/GenericSqlLexer.d.ts +11 -12
  39. package/dist/src/parser/GenericSqlLexer.d.ts.map +1 -1
  40. package/dist/src/parser/GenericSqlLexer.js +97 -144
  41. package/dist/src/parser/GenericSqlLexer.js.map +1 -1
  42. package/dist/src/parser/GenericSqlListener.d.ts +15 -15
  43. package/dist/src/parser/GenericSqlListener.d.ts.map +1 -1
  44. package/dist/src/parser/GenericSqlListener.js +140 -1
  45. package/dist/src/parser/GenericSqlListener.js.map +1 -1
  46. package/dist/src/parser/GenericSqlParser.d.ts +61 -66
  47. package/dist/src/parser/GenericSqlParser.d.ts.map +1 -1
  48. package/dist/src/parser/GenericSqlParser.js +445 -452
  49. package/dist/src/parser/GenericSqlParser.js.map +1 -1
  50. package/dist/src/parser/GenericSqlVisitor.d.ts +15 -15
  51. package/dist/src/parser/GenericSqlVisitor.d.ts.map +1 -1
  52. package/dist/src/parser/GenericSqlVisitor.js +91 -1
  53. package/dist/src/parser/GenericSqlVisitor.js.map +1 -1
  54. package/dist/src/parser/Python3Lexer.d.ts +13 -20
  55. package/dist/src/parser/Python3Lexer.d.ts.map +1 -1
  56. package/dist/src/parser/Python3Lexer.js +631 -772
  57. package/dist/src/parser/Python3Lexer.js.map +1 -1
  58. package/dist/src/parser/Python3Parser.d.ts +385 -393
  59. package/dist/src/parser/Python3Parser.d.ts.map +1 -1
  60. package/dist/src/parser/Python3Parser.js +3637 -3703
  61. package/dist/src/parser/Python3Parser.js.map +1 -1
  62. package/dist/src/parser/Python3ParserListener.d.ts +92 -92
  63. package/dist/src/parser/Python3ParserListener.d.ts.map +1 -1
  64. package/dist/src/parser/Python3ParserListener.js +910 -1
  65. package/dist/src/parser/Python3ParserListener.js.map +1 -1
  66. package/dist/src/parser/Python3ParserVisitor.d.ts +92 -92
  67. package/dist/src/parser/Python3ParserVisitor.d.ts.map +1 -1
  68. package/dist/src/parser/Python3ParserVisitor.js +553 -1
  69. package/dist/src/parser/Python3ParserVisitor.js.map +1 -1
  70. package/dist/src/parser/PythonParser.d.ts +2 -1
  71. package/dist/src/parser/PythonParser.d.ts.map +1 -1
  72. package/dist/src/parser/PythonParser.js +45 -27
  73. package/dist/src/parser/PythonParser.js.map +1 -1
  74. package/dist/src/parser/SqlParser.d.ts.map +1 -1
  75. package/dist/src/parser/SqlParser.js +71 -38
  76. package/dist/src/parser/SqlParser.js.map +1 -1
  77. package/package.json +8 -9
@@ -1,4 +1,913 @@
1
1
  "use strict";
2
- // Generated from src/parser/Python3Parser.g4 by ANTLR 4.9.0-SNAPSHOT
2
+ // Generated from src/parser/Python3Parser.g4 by ANTLR 4.13.2
3
+ // @ts-nocheck
3
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
+ const antlr4_1 = require("antlr4");
6
+ /**
7
+ * This interface defines a complete listener for a parse tree produced by
8
+ * `Python3Parser`.
9
+ */
10
+ class Python3ParserListener extends antlr4_1.ParseTreeListener {
11
+ /**
12
+ * Enter a parse tree produced by `Python3Parser.file_input`.
13
+ * @param ctx the parse tree
14
+ */
15
+ enterFile_input;
16
+ /**
17
+ * Exit a parse tree produced by `Python3Parser.file_input`.
18
+ * @param ctx the parse tree
19
+ */
20
+ exitFile_input;
21
+ /**
22
+ * Enter a parse tree produced by `Python3Parser.single_input`.
23
+ * @param ctx the parse tree
24
+ */
25
+ enterSingle_input;
26
+ /**
27
+ * Exit a parse tree produced by `Python3Parser.single_input`.
28
+ * @param ctx the parse tree
29
+ */
30
+ exitSingle_input;
31
+ /**
32
+ * Enter a parse tree produced by `Python3Parser.eval_input`.
33
+ * @param ctx the parse tree
34
+ */
35
+ enterEval_input;
36
+ /**
37
+ * Exit a parse tree produced by `Python3Parser.eval_input`.
38
+ * @param ctx the parse tree
39
+ */
40
+ exitEval_input;
41
+ /**
42
+ * Enter a parse tree produced by `Python3Parser.decorator`.
43
+ * @param ctx the parse tree
44
+ */
45
+ enterDecorator;
46
+ /**
47
+ * Exit a parse tree produced by `Python3Parser.decorator`.
48
+ * @param ctx the parse tree
49
+ */
50
+ exitDecorator;
51
+ /**
52
+ * Enter a parse tree produced by `Python3Parser.decorators`.
53
+ * @param ctx the parse tree
54
+ */
55
+ enterDecorators;
56
+ /**
57
+ * Exit a parse tree produced by `Python3Parser.decorators`.
58
+ * @param ctx the parse tree
59
+ */
60
+ exitDecorators;
61
+ /**
62
+ * Enter a parse tree produced by `Python3Parser.decorated`.
63
+ * @param ctx the parse tree
64
+ */
65
+ enterDecorated;
66
+ /**
67
+ * Exit a parse tree produced by `Python3Parser.decorated`.
68
+ * @param ctx the parse tree
69
+ */
70
+ exitDecorated;
71
+ /**
72
+ * Enter a parse tree produced by `Python3Parser.async_funcdef`.
73
+ * @param ctx the parse tree
74
+ */
75
+ enterAsync_funcdef;
76
+ /**
77
+ * Exit a parse tree produced by `Python3Parser.async_funcdef`.
78
+ * @param ctx the parse tree
79
+ */
80
+ exitAsync_funcdef;
81
+ /**
82
+ * Enter a parse tree produced by `Python3Parser.funcdef`.
83
+ * @param ctx the parse tree
84
+ */
85
+ enterFuncdef;
86
+ /**
87
+ * Exit a parse tree produced by `Python3Parser.funcdef`.
88
+ * @param ctx the parse tree
89
+ */
90
+ exitFuncdef;
91
+ /**
92
+ * Enter a parse tree produced by `Python3Parser.parameters`.
93
+ * @param ctx the parse tree
94
+ */
95
+ enterParameters;
96
+ /**
97
+ * Exit a parse tree produced by `Python3Parser.parameters`.
98
+ * @param ctx the parse tree
99
+ */
100
+ exitParameters;
101
+ /**
102
+ * Enter a parse tree produced by `Python3Parser.typedargslist`.
103
+ * @param ctx the parse tree
104
+ */
105
+ enterTypedargslist;
106
+ /**
107
+ * Exit a parse tree produced by `Python3Parser.typedargslist`.
108
+ * @param ctx the parse tree
109
+ */
110
+ exitTypedargslist;
111
+ /**
112
+ * Enter a parse tree produced by `Python3Parser.tfpdef`.
113
+ * @param ctx the parse tree
114
+ */
115
+ enterTfpdef;
116
+ /**
117
+ * Exit a parse tree produced by `Python3Parser.tfpdef`.
118
+ * @param ctx the parse tree
119
+ */
120
+ exitTfpdef;
121
+ /**
122
+ * Enter a parse tree produced by `Python3Parser.varargslist`.
123
+ * @param ctx the parse tree
124
+ */
125
+ enterVarargslist;
126
+ /**
127
+ * Exit a parse tree produced by `Python3Parser.varargslist`.
128
+ * @param ctx the parse tree
129
+ */
130
+ exitVarargslist;
131
+ /**
132
+ * Enter a parse tree produced by `Python3Parser.vfpdef`.
133
+ * @param ctx the parse tree
134
+ */
135
+ enterVfpdef;
136
+ /**
137
+ * Exit a parse tree produced by `Python3Parser.vfpdef`.
138
+ * @param ctx the parse tree
139
+ */
140
+ exitVfpdef;
141
+ /**
142
+ * Enter a parse tree produced by `Python3Parser.stmt`.
143
+ * @param ctx the parse tree
144
+ */
145
+ enterStmt;
146
+ /**
147
+ * Exit a parse tree produced by `Python3Parser.stmt`.
148
+ * @param ctx the parse tree
149
+ */
150
+ exitStmt;
151
+ /**
152
+ * Enter a parse tree produced by `Python3Parser.simple_stmt`.
153
+ * @param ctx the parse tree
154
+ */
155
+ enterSimple_stmt;
156
+ /**
157
+ * Exit a parse tree produced by `Python3Parser.simple_stmt`.
158
+ * @param ctx the parse tree
159
+ */
160
+ exitSimple_stmt;
161
+ /**
162
+ * Enter a parse tree produced by `Python3Parser.small_stmt`.
163
+ * @param ctx the parse tree
164
+ */
165
+ enterSmall_stmt;
166
+ /**
167
+ * Exit a parse tree produced by `Python3Parser.small_stmt`.
168
+ * @param ctx the parse tree
169
+ */
170
+ exitSmall_stmt;
171
+ /**
172
+ * Enter a parse tree produced by `Python3Parser.expr_stmt`.
173
+ * @param ctx the parse tree
174
+ */
175
+ enterExpr_stmt;
176
+ /**
177
+ * Exit a parse tree produced by `Python3Parser.expr_stmt`.
178
+ * @param ctx the parse tree
179
+ */
180
+ exitExpr_stmt;
181
+ /**
182
+ * Enter a parse tree produced by `Python3Parser.annassign`.
183
+ * @param ctx the parse tree
184
+ */
185
+ enterAnnassign;
186
+ /**
187
+ * Exit a parse tree produced by `Python3Parser.annassign`.
188
+ * @param ctx the parse tree
189
+ */
190
+ exitAnnassign;
191
+ /**
192
+ * Enter a parse tree produced by `Python3Parser.testlist_star_expr`.
193
+ * @param ctx the parse tree
194
+ */
195
+ enterTestlist_star_expr;
196
+ /**
197
+ * Exit a parse tree produced by `Python3Parser.testlist_star_expr`.
198
+ * @param ctx the parse tree
199
+ */
200
+ exitTestlist_star_expr;
201
+ /**
202
+ * Enter a parse tree produced by `Python3Parser.augassign`.
203
+ * @param ctx the parse tree
204
+ */
205
+ enterAugassign;
206
+ /**
207
+ * Exit a parse tree produced by `Python3Parser.augassign`.
208
+ * @param ctx the parse tree
209
+ */
210
+ exitAugassign;
211
+ /**
212
+ * Enter a parse tree produced by `Python3Parser.del_stmt`.
213
+ * @param ctx the parse tree
214
+ */
215
+ enterDel_stmt;
216
+ /**
217
+ * Exit a parse tree produced by `Python3Parser.del_stmt`.
218
+ * @param ctx the parse tree
219
+ */
220
+ exitDel_stmt;
221
+ /**
222
+ * Enter a parse tree produced by `Python3Parser.pass_stmt`.
223
+ * @param ctx the parse tree
224
+ */
225
+ enterPass_stmt;
226
+ /**
227
+ * Exit a parse tree produced by `Python3Parser.pass_stmt`.
228
+ * @param ctx the parse tree
229
+ */
230
+ exitPass_stmt;
231
+ /**
232
+ * Enter a parse tree produced by `Python3Parser.flow_stmt`.
233
+ * @param ctx the parse tree
234
+ */
235
+ enterFlow_stmt;
236
+ /**
237
+ * Exit a parse tree produced by `Python3Parser.flow_stmt`.
238
+ * @param ctx the parse tree
239
+ */
240
+ exitFlow_stmt;
241
+ /**
242
+ * Enter a parse tree produced by `Python3Parser.break_stmt`.
243
+ * @param ctx the parse tree
244
+ */
245
+ enterBreak_stmt;
246
+ /**
247
+ * Exit a parse tree produced by `Python3Parser.break_stmt`.
248
+ * @param ctx the parse tree
249
+ */
250
+ exitBreak_stmt;
251
+ /**
252
+ * Enter a parse tree produced by `Python3Parser.continue_stmt`.
253
+ * @param ctx the parse tree
254
+ */
255
+ enterContinue_stmt;
256
+ /**
257
+ * Exit a parse tree produced by `Python3Parser.continue_stmt`.
258
+ * @param ctx the parse tree
259
+ */
260
+ exitContinue_stmt;
261
+ /**
262
+ * Enter a parse tree produced by `Python3Parser.return_stmt`.
263
+ * @param ctx the parse tree
264
+ */
265
+ enterReturn_stmt;
266
+ /**
267
+ * Exit a parse tree produced by `Python3Parser.return_stmt`.
268
+ * @param ctx the parse tree
269
+ */
270
+ exitReturn_stmt;
271
+ /**
272
+ * Enter a parse tree produced by `Python3Parser.yield_stmt`.
273
+ * @param ctx the parse tree
274
+ */
275
+ enterYield_stmt;
276
+ /**
277
+ * Exit a parse tree produced by `Python3Parser.yield_stmt`.
278
+ * @param ctx the parse tree
279
+ */
280
+ exitYield_stmt;
281
+ /**
282
+ * Enter a parse tree produced by `Python3Parser.raise_stmt`.
283
+ * @param ctx the parse tree
284
+ */
285
+ enterRaise_stmt;
286
+ /**
287
+ * Exit a parse tree produced by `Python3Parser.raise_stmt`.
288
+ * @param ctx the parse tree
289
+ */
290
+ exitRaise_stmt;
291
+ /**
292
+ * Enter a parse tree produced by `Python3Parser.import_stmt`.
293
+ * @param ctx the parse tree
294
+ */
295
+ enterImport_stmt;
296
+ /**
297
+ * Exit a parse tree produced by `Python3Parser.import_stmt`.
298
+ * @param ctx the parse tree
299
+ */
300
+ exitImport_stmt;
301
+ /**
302
+ * Enter a parse tree produced by `Python3Parser.import_name`.
303
+ * @param ctx the parse tree
304
+ */
305
+ enterImport_name;
306
+ /**
307
+ * Exit a parse tree produced by `Python3Parser.import_name`.
308
+ * @param ctx the parse tree
309
+ */
310
+ exitImport_name;
311
+ /**
312
+ * Enter a parse tree produced by `Python3Parser.import_from`.
313
+ * @param ctx the parse tree
314
+ */
315
+ enterImport_from;
316
+ /**
317
+ * Exit a parse tree produced by `Python3Parser.import_from`.
318
+ * @param ctx the parse tree
319
+ */
320
+ exitImport_from;
321
+ /**
322
+ * Enter a parse tree produced by `Python3Parser.import_as_name`.
323
+ * @param ctx the parse tree
324
+ */
325
+ enterImport_as_name;
326
+ /**
327
+ * Exit a parse tree produced by `Python3Parser.import_as_name`.
328
+ * @param ctx the parse tree
329
+ */
330
+ exitImport_as_name;
331
+ /**
332
+ * Enter a parse tree produced by `Python3Parser.dotted_as_name`.
333
+ * @param ctx the parse tree
334
+ */
335
+ enterDotted_as_name;
336
+ /**
337
+ * Exit a parse tree produced by `Python3Parser.dotted_as_name`.
338
+ * @param ctx the parse tree
339
+ */
340
+ exitDotted_as_name;
341
+ /**
342
+ * Enter a parse tree produced by `Python3Parser.import_as_names`.
343
+ * @param ctx the parse tree
344
+ */
345
+ enterImport_as_names;
346
+ /**
347
+ * Exit a parse tree produced by `Python3Parser.import_as_names`.
348
+ * @param ctx the parse tree
349
+ */
350
+ exitImport_as_names;
351
+ /**
352
+ * Enter a parse tree produced by `Python3Parser.dotted_as_names`.
353
+ * @param ctx the parse tree
354
+ */
355
+ enterDotted_as_names;
356
+ /**
357
+ * Exit a parse tree produced by `Python3Parser.dotted_as_names`.
358
+ * @param ctx the parse tree
359
+ */
360
+ exitDotted_as_names;
361
+ /**
362
+ * Enter a parse tree produced by `Python3Parser.dotted_name`.
363
+ * @param ctx the parse tree
364
+ */
365
+ enterDotted_name;
366
+ /**
367
+ * Exit a parse tree produced by `Python3Parser.dotted_name`.
368
+ * @param ctx the parse tree
369
+ */
370
+ exitDotted_name;
371
+ /**
372
+ * Enter a parse tree produced by `Python3Parser.global_stmt`.
373
+ * @param ctx the parse tree
374
+ */
375
+ enterGlobal_stmt;
376
+ /**
377
+ * Exit a parse tree produced by `Python3Parser.global_stmt`.
378
+ * @param ctx the parse tree
379
+ */
380
+ exitGlobal_stmt;
381
+ /**
382
+ * Enter a parse tree produced by `Python3Parser.nonlocal_stmt`.
383
+ * @param ctx the parse tree
384
+ */
385
+ enterNonlocal_stmt;
386
+ /**
387
+ * Exit a parse tree produced by `Python3Parser.nonlocal_stmt`.
388
+ * @param ctx the parse tree
389
+ */
390
+ exitNonlocal_stmt;
391
+ /**
392
+ * Enter a parse tree produced by `Python3Parser.assert_stmt`.
393
+ * @param ctx the parse tree
394
+ */
395
+ enterAssert_stmt;
396
+ /**
397
+ * Exit a parse tree produced by `Python3Parser.assert_stmt`.
398
+ * @param ctx the parse tree
399
+ */
400
+ exitAssert_stmt;
401
+ /**
402
+ * Enter a parse tree produced by `Python3Parser.compound_stmt`.
403
+ * @param ctx the parse tree
404
+ */
405
+ enterCompound_stmt;
406
+ /**
407
+ * Exit a parse tree produced by `Python3Parser.compound_stmt`.
408
+ * @param ctx the parse tree
409
+ */
410
+ exitCompound_stmt;
411
+ /**
412
+ * Enter a parse tree produced by `Python3Parser.async_stmt`.
413
+ * @param ctx the parse tree
414
+ */
415
+ enterAsync_stmt;
416
+ /**
417
+ * Exit a parse tree produced by `Python3Parser.async_stmt`.
418
+ * @param ctx the parse tree
419
+ */
420
+ exitAsync_stmt;
421
+ /**
422
+ * Enter a parse tree produced by `Python3Parser.if_stmt`.
423
+ * @param ctx the parse tree
424
+ */
425
+ enterIf_stmt;
426
+ /**
427
+ * Exit a parse tree produced by `Python3Parser.if_stmt`.
428
+ * @param ctx the parse tree
429
+ */
430
+ exitIf_stmt;
431
+ /**
432
+ * Enter a parse tree produced by `Python3Parser.while_stmt`.
433
+ * @param ctx the parse tree
434
+ */
435
+ enterWhile_stmt;
436
+ /**
437
+ * Exit a parse tree produced by `Python3Parser.while_stmt`.
438
+ * @param ctx the parse tree
439
+ */
440
+ exitWhile_stmt;
441
+ /**
442
+ * Enter a parse tree produced by `Python3Parser.for_stmt`.
443
+ * @param ctx the parse tree
444
+ */
445
+ enterFor_stmt;
446
+ /**
447
+ * Exit a parse tree produced by `Python3Parser.for_stmt`.
448
+ * @param ctx the parse tree
449
+ */
450
+ exitFor_stmt;
451
+ /**
452
+ * Enter a parse tree produced by `Python3Parser.try_stmt`.
453
+ * @param ctx the parse tree
454
+ */
455
+ enterTry_stmt;
456
+ /**
457
+ * Exit a parse tree produced by `Python3Parser.try_stmt`.
458
+ * @param ctx the parse tree
459
+ */
460
+ exitTry_stmt;
461
+ /**
462
+ * Enter a parse tree produced by `Python3Parser.with_stmt`.
463
+ * @param ctx the parse tree
464
+ */
465
+ enterWith_stmt;
466
+ /**
467
+ * Exit a parse tree produced by `Python3Parser.with_stmt`.
468
+ * @param ctx the parse tree
469
+ */
470
+ exitWith_stmt;
471
+ /**
472
+ * Enter a parse tree produced by `Python3Parser.with_item`.
473
+ * @param ctx the parse tree
474
+ */
475
+ enterWith_item;
476
+ /**
477
+ * Exit a parse tree produced by `Python3Parser.with_item`.
478
+ * @param ctx the parse tree
479
+ */
480
+ exitWith_item;
481
+ /**
482
+ * Enter a parse tree produced by `Python3Parser.except_clause`.
483
+ * @param ctx the parse tree
484
+ */
485
+ enterExcept_clause;
486
+ /**
487
+ * Exit a parse tree produced by `Python3Parser.except_clause`.
488
+ * @param ctx the parse tree
489
+ */
490
+ exitExcept_clause;
491
+ /**
492
+ * Enter a parse tree produced by `Python3Parser.suite`.
493
+ * @param ctx the parse tree
494
+ */
495
+ enterSuite;
496
+ /**
497
+ * Exit a parse tree produced by `Python3Parser.suite`.
498
+ * @param ctx the parse tree
499
+ */
500
+ exitSuite;
501
+ /**
502
+ * Enter a parse tree produced by `Python3Parser.test`.
503
+ * @param ctx the parse tree
504
+ */
505
+ enterTest;
506
+ /**
507
+ * Exit a parse tree produced by `Python3Parser.test`.
508
+ * @param ctx the parse tree
509
+ */
510
+ exitTest;
511
+ /**
512
+ * Enter a parse tree produced by `Python3Parser.test_nocond`.
513
+ * @param ctx the parse tree
514
+ */
515
+ enterTest_nocond;
516
+ /**
517
+ * Exit a parse tree produced by `Python3Parser.test_nocond`.
518
+ * @param ctx the parse tree
519
+ */
520
+ exitTest_nocond;
521
+ /**
522
+ * Enter a parse tree produced by `Python3Parser.lambdef`.
523
+ * @param ctx the parse tree
524
+ */
525
+ enterLambdef;
526
+ /**
527
+ * Exit a parse tree produced by `Python3Parser.lambdef`.
528
+ * @param ctx the parse tree
529
+ */
530
+ exitLambdef;
531
+ /**
532
+ * Enter a parse tree produced by `Python3Parser.lambdef_nocond`.
533
+ * @param ctx the parse tree
534
+ */
535
+ enterLambdef_nocond;
536
+ /**
537
+ * Exit a parse tree produced by `Python3Parser.lambdef_nocond`.
538
+ * @param ctx the parse tree
539
+ */
540
+ exitLambdef_nocond;
541
+ /**
542
+ * Enter a parse tree produced by `Python3Parser.or_test`.
543
+ * @param ctx the parse tree
544
+ */
545
+ enterOr_test;
546
+ /**
547
+ * Exit a parse tree produced by `Python3Parser.or_test`.
548
+ * @param ctx the parse tree
549
+ */
550
+ exitOr_test;
551
+ /**
552
+ * Enter a parse tree produced by `Python3Parser.and_test`.
553
+ * @param ctx the parse tree
554
+ */
555
+ enterAnd_test;
556
+ /**
557
+ * Exit a parse tree produced by `Python3Parser.and_test`.
558
+ * @param ctx the parse tree
559
+ */
560
+ exitAnd_test;
561
+ /**
562
+ * Enter a parse tree produced by `Python3Parser.not_test`.
563
+ * @param ctx the parse tree
564
+ */
565
+ enterNot_test;
566
+ /**
567
+ * Exit a parse tree produced by `Python3Parser.not_test`.
568
+ * @param ctx the parse tree
569
+ */
570
+ exitNot_test;
571
+ /**
572
+ * Enter a parse tree produced by `Python3Parser.comparison`.
573
+ * @param ctx the parse tree
574
+ */
575
+ enterComparison;
576
+ /**
577
+ * Exit a parse tree produced by `Python3Parser.comparison`.
578
+ * @param ctx the parse tree
579
+ */
580
+ exitComparison;
581
+ /**
582
+ * Enter a parse tree produced by `Python3Parser.comp_op`.
583
+ * @param ctx the parse tree
584
+ */
585
+ enterComp_op;
586
+ /**
587
+ * Exit a parse tree produced by `Python3Parser.comp_op`.
588
+ * @param ctx the parse tree
589
+ */
590
+ exitComp_op;
591
+ /**
592
+ * Enter a parse tree produced by `Python3Parser.star_expr`.
593
+ * @param ctx the parse tree
594
+ */
595
+ enterStar_expr;
596
+ /**
597
+ * Exit a parse tree produced by `Python3Parser.star_expr`.
598
+ * @param ctx the parse tree
599
+ */
600
+ exitStar_expr;
601
+ /**
602
+ * Enter a parse tree produced by `Python3Parser.expr`.
603
+ * @param ctx the parse tree
604
+ */
605
+ enterExpr;
606
+ /**
607
+ * Exit a parse tree produced by `Python3Parser.expr`.
608
+ * @param ctx the parse tree
609
+ */
610
+ exitExpr;
611
+ /**
612
+ * Enter a parse tree produced by `Python3Parser.xor_expr`.
613
+ * @param ctx the parse tree
614
+ */
615
+ enterXor_expr;
616
+ /**
617
+ * Exit a parse tree produced by `Python3Parser.xor_expr`.
618
+ * @param ctx the parse tree
619
+ */
620
+ exitXor_expr;
621
+ /**
622
+ * Enter a parse tree produced by `Python3Parser.and_expr`.
623
+ * @param ctx the parse tree
624
+ */
625
+ enterAnd_expr;
626
+ /**
627
+ * Exit a parse tree produced by `Python3Parser.and_expr`.
628
+ * @param ctx the parse tree
629
+ */
630
+ exitAnd_expr;
631
+ /**
632
+ * Enter a parse tree produced by `Python3Parser.shift_expr`.
633
+ * @param ctx the parse tree
634
+ */
635
+ enterShift_expr;
636
+ /**
637
+ * Exit a parse tree produced by `Python3Parser.shift_expr`.
638
+ * @param ctx the parse tree
639
+ */
640
+ exitShift_expr;
641
+ /**
642
+ * Enter a parse tree produced by `Python3Parser.arith_expr`.
643
+ * @param ctx the parse tree
644
+ */
645
+ enterArith_expr;
646
+ /**
647
+ * Exit a parse tree produced by `Python3Parser.arith_expr`.
648
+ * @param ctx the parse tree
649
+ */
650
+ exitArith_expr;
651
+ /**
652
+ * Enter a parse tree produced by `Python3Parser.term`.
653
+ * @param ctx the parse tree
654
+ */
655
+ enterTerm;
656
+ /**
657
+ * Exit a parse tree produced by `Python3Parser.term`.
658
+ * @param ctx the parse tree
659
+ */
660
+ exitTerm;
661
+ /**
662
+ * Enter a parse tree produced by `Python3Parser.factor`.
663
+ * @param ctx the parse tree
664
+ */
665
+ enterFactor;
666
+ /**
667
+ * Exit a parse tree produced by `Python3Parser.factor`.
668
+ * @param ctx the parse tree
669
+ */
670
+ exitFactor;
671
+ /**
672
+ * Enter a parse tree produced by `Python3Parser.power`.
673
+ * @param ctx the parse tree
674
+ */
675
+ enterPower;
676
+ /**
677
+ * Exit a parse tree produced by `Python3Parser.power`.
678
+ * @param ctx the parse tree
679
+ */
680
+ exitPower;
681
+ /**
682
+ * Enter a parse tree produced by `Python3Parser.atom_expr`.
683
+ * @param ctx the parse tree
684
+ */
685
+ enterAtom_expr;
686
+ /**
687
+ * Exit a parse tree produced by `Python3Parser.atom_expr`.
688
+ * @param ctx the parse tree
689
+ */
690
+ exitAtom_expr;
691
+ /**
692
+ * Enter a parse tree produced by `Python3Parser.atom`.
693
+ * @param ctx the parse tree
694
+ */
695
+ enterAtom;
696
+ /**
697
+ * Exit a parse tree produced by `Python3Parser.atom`.
698
+ * @param ctx the parse tree
699
+ */
700
+ exitAtom;
701
+ /**
702
+ * Enter a parse tree produced by `Python3Parser.testlist_comp`.
703
+ * @param ctx the parse tree
704
+ */
705
+ enterTestlist_comp;
706
+ /**
707
+ * Exit a parse tree produced by `Python3Parser.testlist_comp`.
708
+ * @param ctx the parse tree
709
+ */
710
+ exitTestlist_comp;
711
+ /**
712
+ * Enter a parse tree produced by `Python3Parser.trailer`.
713
+ * @param ctx the parse tree
714
+ */
715
+ enterTrailer;
716
+ /**
717
+ * Exit a parse tree produced by `Python3Parser.trailer`.
718
+ * @param ctx the parse tree
719
+ */
720
+ exitTrailer;
721
+ /**
722
+ * Enter a parse tree produced by `Python3Parser.subscriptlist`.
723
+ * @param ctx the parse tree
724
+ */
725
+ enterSubscriptlist;
726
+ /**
727
+ * Exit a parse tree produced by `Python3Parser.subscriptlist`.
728
+ * @param ctx the parse tree
729
+ */
730
+ exitSubscriptlist;
731
+ /**
732
+ * Enter a parse tree produced by `Python3Parser.subscript`.
733
+ * @param ctx the parse tree
734
+ */
735
+ enterSubscript;
736
+ /**
737
+ * Exit a parse tree produced by `Python3Parser.subscript`.
738
+ * @param ctx the parse tree
739
+ */
740
+ exitSubscript;
741
+ /**
742
+ * Enter a parse tree produced by `Python3Parser.sliceop`.
743
+ * @param ctx the parse tree
744
+ */
745
+ enterSliceop;
746
+ /**
747
+ * Exit a parse tree produced by `Python3Parser.sliceop`.
748
+ * @param ctx the parse tree
749
+ */
750
+ exitSliceop;
751
+ /**
752
+ * Enter a parse tree produced by `Python3Parser.exprlist`.
753
+ * @param ctx the parse tree
754
+ */
755
+ enterExprlist;
756
+ /**
757
+ * Exit a parse tree produced by `Python3Parser.exprlist`.
758
+ * @param ctx the parse tree
759
+ */
760
+ exitExprlist;
761
+ /**
762
+ * Enter a parse tree produced by `Python3Parser.testlist`.
763
+ * @param ctx the parse tree
764
+ */
765
+ enterTestlist;
766
+ /**
767
+ * Exit a parse tree produced by `Python3Parser.testlist`.
768
+ * @param ctx the parse tree
769
+ */
770
+ exitTestlist;
771
+ /**
772
+ * Enter a parse tree produced by `Python3Parser.dictorsetmaker`.
773
+ * @param ctx the parse tree
774
+ */
775
+ enterDictorsetmaker;
776
+ /**
777
+ * Exit a parse tree produced by `Python3Parser.dictorsetmaker`.
778
+ * @param ctx the parse tree
779
+ */
780
+ exitDictorsetmaker;
781
+ /**
782
+ * Enter a parse tree produced by `Python3Parser.classdef`.
783
+ * @param ctx the parse tree
784
+ */
785
+ enterClassdef;
786
+ /**
787
+ * Exit a parse tree produced by `Python3Parser.classdef`.
788
+ * @param ctx the parse tree
789
+ */
790
+ exitClassdef;
791
+ /**
792
+ * Enter a parse tree produced by `Python3Parser.callArguments`.
793
+ * @param ctx the parse tree
794
+ */
795
+ enterCallArguments;
796
+ /**
797
+ * Exit a parse tree produced by `Python3Parser.callArguments`.
798
+ * @param ctx the parse tree
799
+ */
800
+ exitCallArguments;
801
+ /**
802
+ * Enter a parse tree produced by `Python3Parser.arglist`.
803
+ * @param ctx the parse tree
804
+ */
805
+ enterArglist;
806
+ /**
807
+ * Exit a parse tree produced by `Python3Parser.arglist`.
808
+ * @param ctx the parse tree
809
+ */
810
+ exitArglist;
811
+ /**
812
+ * Enter a parse tree produced by `Python3Parser.argument`.
813
+ * @param ctx the parse tree
814
+ */
815
+ enterArgument;
816
+ /**
817
+ * Exit a parse tree produced by `Python3Parser.argument`.
818
+ * @param ctx the parse tree
819
+ */
820
+ exitArgument;
821
+ /**
822
+ * Enter a parse tree produced by `Python3Parser.comp_iter`.
823
+ * @param ctx the parse tree
824
+ */
825
+ enterComp_iter;
826
+ /**
827
+ * Exit a parse tree produced by `Python3Parser.comp_iter`.
828
+ * @param ctx the parse tree
829
+ */
830
+ exitComp_iter;
831
+ /**
832
+ * Enter a parse tree produced by `Python3Parser.comp_for`.
833
+ * @param ctx the parse tree
834
+ */
835
+ enterComp_for;
836
+ /**
837
+ * Exit a parse tree produced by `Python3Parser.comp_for`.
838
+ * @param ctx the parse tree
839
+ */
840
+ exitComp_for;
841
+ /**
842
+ * Enter a parse tree produced by `Python3Parser.comp_if`.
843
+ * @param ctx the parse tree
844
+ */
845
+ enterComp_if;
846
+ /**
847
+ * Exit a parse tree produced by `Python3Parser.comp_if`.
848
+ * @param ctx the parse tree
849
+ */
850
+ exitComp_if;
851
+ /**
852
+ * Enter a parse tree produced by `Python3Parser.encoding_decl`.
853
+ * @param ctx the parse tree
854
+ */
855
+ enterEncoding_decl;
856
+ /**
857
+ * Exit a parse tree produced by `Python3Parser.encoding_decl`.
858
+ * @param ctx the parse tree
859
+ */
860
+ exitEncoding_decl;
861
+ /**
862
+ * Enter a parse tree produced by `Python3Parser.yield_expr`.
863
+ * @param ctx the parse tree
864
+ */
865
+ enterYield_expr;
866
+ /**
867
+ * Exit a parse tree produced by `Python3Parser.yield_expr`.
868
+ * @param ctx the parse tree
869
+ */
870
+ exitYield_expr;
871
+ /**
872
+ * Enter a parse tree produced by `Python3Parser.yield_arg`.
873
+ * @param ctx the parse tree
874
+ */
875
+ enterYield_arg;
876
+ /**
877
+ * Exit a parse tree produced by `Python3Parser.yield_arg`.
878
+ * @param ctx the parse tree
879
+ */
880
+ exitYield_arg;
881
+ /**
882
+ * Enter a parse tree produced by `Python3Parser.string_template`.
883
+ * @param ctx the parse tree
884
+ */
885
+ enterString_template;
886
+ /**
887
+ * Exit a parse tree produced by `Python3Parser.string_template`.
888
+ * @param ctx the parse tree
889
+ */
890
+ exitString_template;
891
+ /**
892
+ * Enter a parse tree produced by `Python3Parser.single_string_template_atom`.
893
+ * @param ctx the parse tree
894
+ */
895
+ enterSingle_string_template_atom;
896
+ /**
897
+ * Exit a parse tree produced by `Python3Parser.single_string_template_atom`.
898
+ * @param ctx the parse tree
899
+ */
900
+ exitSingle_string_template_atom;
901
+ /**
902
+ * Enter a parse tree produced by `Python3Parser.double_string_template_atom`.
903
+ * @param ctx the parse tree
904
+ */
905
+ enterDouble_string_template_atom;
906
+ /**
907
+ * Exit a parse tree produced by `Python3Parser.double_string_template_atom`.
908
+ * @param ctx the parse tree
909
+ */
910
+ exitDouble_string_template_atom;
911
+ }
912
+ exports.default = Python3ParserListener;
4
913
  //# sourceMappingURL=Python3ParserListener.js.map