omlish 0.0.0.dev252__py3-none-any.whl → 0.0.0.dev254__py3-none-any.whl

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.
@@ -0,0 +1,510 @@
1
+ # type: ignore
2
+ # ruff: noqa
3
+ # flake8: noqa
4
+ # Generated from Minisql.g4 by ANTLR 4.13.2
5
+ from omlish.antlr._runtime._all import *
6
+ if "." in __name__:
7
+ from .MinisqlParser import MinisqlParser
8
+ else:
9
+ from MinisqlParser import MinisqlParser
10
+
11
+ # This class defines a complete listener for a parse tree produced by MinisqlParser.
12
+ class MinisqlListener(ParseTreeListener):
13
+
14
+ # Enter a parse tree produced by MinisqlParser#singleStmt.
15
+ def enterSingleStmt(self, ctx:MinisqlParser.SingleStmtContext):
16
+ pass
17
+
18
+ # Exit a parse tree produced by MinisqlParser#singleStmt.
19
+ def exitSingleStmt(self, ctx:MinisqlParser.SingleStmtContext):
20
+ pass
21
+
22
+
23
+ # Enter a parse tree produced by MinisqlParser#select.
24
+ def enterSelect(self, ctx:MinisqlParser.SelectContext):
25
+ pass
26
+
27
+ # Exit a parse tree produced by MinisqlParser#select.
28
+ def exitSelect(self, ctx:MinisqlParser.SelectContext):
29
+ pass
30
+
31
+
32
+ # Enter a parse tree produced by MinisqlParser#cteSelect.
33
+ def enterCteSelect(self, ctx:MinisqlParser.CteSelectContext):
34
+ pass
35
+
36
+ # Exit a parse tree produced by MinisqlParser#cteSelect.
37
+ def exitCteSelect(self, ctx:MinisqlParser.CteSelectContext):
38
+ pass
39
+
40
+
41
+ # Enter a parse tree produced by MinisqlParser#cte.
42
+ def enterCte(self, ctx:MinisqlParser.CteContext):
43
+ pass
44
+
45
+ # Exit a parse tree produced by MinisqlParser#cte.
46
+ def exitCte(self, ctx:MinisqlParser.CteContext):
47
+ pass
48
+
49
+
50
+ # Enter a parse tree produced by MinisqlParser#unionSelect.
51
+ def enterUnionSelect(self, ctx:MinisqlParser.UnionSelectContext):
52
+ pass
53
+
54
+ # Exit a parse tree produced by MinisqlParser#unionSelect.
55
+ def exitUnionSelect(self, ctx:MinisqlParser.UnionSelectContext):
56
+ pass
57
+
58
+
59
+ # Enter a parse tree produced by MinisqlParser#unionItem.
60
+ def enterUnionItem(self, ctx:MinisqlParser.UnionItemContext):
61
+ pass
62
+
63
+ # Exit a parse tree produced by MinisqlParser#unionItem.
64
+ def exitUnionItem(self, ctx:MinisqlParser.UnionItemContext):
65
+ pass
66
+
67
+
68
+ # Enter a parse tree produced by MinisqlParser#primarySelect.
69
+ def enterPrimarySelect(self, ctx:MinisqlParser.PrimarySelectContext):
70
+ pass
71
+
72
+ # Exit a parse tree produced by MinisqlParser#primarySelect.
73
+ def exitPrimarySelect(self, ctx:MinisqlParser.PrimarySelectContext):
74
+ pass
75
+
76
+
77
+ # Enter a parse tree produced by MinisqlParser#allSelectItem.
78
+ def enterAllSelectItem(self, ctx:MinisqlParser.AllSelectItemContext):
79
+ pass
80
+
81
+ # Exit a parse tree produced by MinisqlParser#allSelectItem.
82
+ def exitAllSelectItem(self, ctx:MinisqlParser.AllSelectItemContext):
83
+ pass
84
+
85
+
86
+ # Enter a parse tree produced by MinisqlParser#exprSelectItem.
87
+ def enterExprSelectItem(self, ctx:MinisqlParser.ExprSelectItemContext):
88
+ pass
89
+
90
+ # Exit a parse tree produced by MinisqlParser#exprSelectItem.
91
+ def exitExprSelectItem(self, ctx:MinisqlParser.ExprSelectItemContext):
92
+ pass
93
+
94
+
95
+ # Enter a parse tree produced by MinisqlParser#expr.
96
+ def enterExpr(self, ctx:MinisqlParser.ExprContext):
97
+ pass
98
+
99
+ # Exit a parse tree produced by MinisqlParser#expr.
100
+ def exitExpr(self, ctx:MinisqlParser.ExprContext):
101
+ pass
102
+
103
+
104
+ # Enter a parse tree produced by MinisqlParser#unaryBooleanExpr.
105
+ def enterUnaryBooleanExpr(self, ctx:MinisqlParser.UnaryBooleanExprContext):
106
+ pass
107
+
108
+ # Exit a parse tree produced by MinisqlParser#unaryBooleanExpr.
109
+ def exitUnaryBooleanExpr(self, ctx:MinisqlParser.UnaryBooleanExprContext):
110
+ pass
111
+
112
+
113
+ # Enter a parse tree produced by MinisqlParser#predicatedBooleanExpr.
114
+ def enterPredicatedBooleanExpr(self, ctx:MinisqlParser.PredicatedBooleanExprContext):
115
+ pass
116
+
117
+ # Exit a parse tree produced by MinisqlParser#predicatedBooleanExpr.
118
+ def exitPredicatedBooleanExpr(self, ctx:MinisqlParser.PredicatedBooleanExprContext):
119
+ pass
120
+
121
+
122
+ # Enter a parse tree produced by MinisqlParser#binaryBooleanExpr.
123
+ def enterBinaryBooleanExpr(self, ctx:MinisqlParser.BinaryBooleanExprContext):
124
+ pass
125
+
126
+ # Exit a parse tree produced by MinisqlParser#binaryBooleanExpr.
127
+ def exitBinaryBooleanExpr(self, ctx:MinisqlParser.BinaryBooleanExprContext):
128
+ pass
129
+
130
+
131
+ # Enter a parse tree produced by MinisqlParser#castBooleanExpr.
132
+ def enterCastBooleanExpr(self, ctx:MinisqlParser.CastBooleanExprContext):
133
+ pass
134
+
135
+ # Exit a parse tree produced by MinisqlParser#castBooleanExpr.
136
+ def exitCastBooleanExpr(self, ctx:MinisqlParser.CastBooleanExprContext):
137
+ pass
138
+
139
+
140
+ # Enter a parse tree produced by MinisqlParser#cmpPredicate.
141
+ def enterCmpPredicate(self, ctx:MinisqlParser.CmpPredicateContext):
142
+ pass
143
+
144
+ # Exit a parse tree produced by MinisqlParser#cmpPredicate.
145
+ def exitCmpPredicate(self, ctx:MinisqlParser.CmpPredicateContext):
146
+ pass
147
+
148
+
149
+ # Enter a parse tree produced by MinisqlParser#isNullPredicate.
150
+ def enterIsNullPredicate(self, ctx:MinisqlParser.IsNullPredicateContext):
151
+ pass
152
+
153
+ # Exit a parse tree produced by MinisqlParser#isNullPredicate.
154
+ def exitIsNullPredicate(self, ctx:MinisqlParser.IsNullPredicateContext):
155
+ pass
156
+
157
+
158
+ # Enter a parse tree produced by MinisqlParser#inListPredicate.
159
+ def enterInListPredicate(self, ctx:MinisqlParser.InListPredicateContext):
160
+ pass
161
+
162
+ # Exit a parse tree produced by MinisqlParser#inListPredicate.
163
+ def exitInListPredicate(self, ctx:MinisqlParser.InListPredicateContext):
164
+ pass
165
+
166
+
167
+ # Enter a parse tree produced by MinisqlParser#inSelectPredicate.
168
+ def enterInSelectPredicate(self, ctx:MinisqlParser.InSelectPredicateContext):
169
+ pass
170
+
171
+ # Exit a parse tree produced by MinisqlParser#inSelectPredicate.
172
+ def exitInSelectPredicate(self, ctx:MinisqlParser.InSelectPredicateContext):
173
+ pass
174
+
175
+
176
+ # Enter a parse tree produced by MinisqlParser#likePredicate.
177
+ def enterLikePredicate(self, ctx:MinisqlParser.LikePredicateContext):
178
+ pass
179
+
180
+ # Exit a parse tree produced by MinisqlParser#likePredicate.
181
+ def exitLikePredicate(self, ctx:MinisqlParser.LikePredicateContext):
182
+ pass
183
+
184
+
185
+ # Enter a parse tree produced by MinisqlParser#arithValueExpr.
186
+ def enterArithValueExpr(self, ctx:MinisqlParser.ArithValueExprContext):
187
+ pass
188
+
189
+ # Exit a parse tree produced by MinisqlParser#arithValueExpr.
190
+ def exitArithValueExpr(self, ctx:MinisqlParser.ArithValueExprContext):
191
+ pass
192
+
193
+
194
+ # Enter a parse tree produced by MinisqlParser#unaryValueExpr.
195
+ def enterUnaryValueExpr(self, ctx:MinisqlParser.UnaryValueExprContext):
196
+ pass
197
+
198
+ # Exit a parse tree produced by MinisqlParser#unaryValueExpr.
199
+ def exitUnaryValueExpr(self, ctx:MinisqlParser.UnaryValueExprContext):
200
+ pass
201
+
202
+
203
+ # Enter a parse tree produced by MinisqlParser#primaryValueExpr.
204
+ def enterPrimaryValueExpr(self, ctx:MinisqlParser.PrimaryValueExprContext):
205
+ pass
206
+
207
+ # Exit a parse tree produced by MinisqlParser#primaryValueExpr.
208
+ def exitPrimaryValueExpr(self, ctx:MinisqlParser.PrimaryValueExprContext):
209
+ pass
210
+
211
+
212
+ # Enter a parse tree produced by MinisqlParser#functionCallExpr.
213
+ def enterFunctionCallExpr(self, ctx:MinisqlParser.FunctionCallExprContext):
214
+ pass
215
+
216
+ # Exit a parse tree produced by MinisqlParser#functionCallExpr.
217
+ def exitFunctionCallExpr(self, ctx:MinisqlParser.FunctionCallExprContext):
218
+ pass
219
+
220
+
221
+ # Enter a parse tree produced by MinisqlParser#starFunctionCallExpr.
222
+ def enterStarFunctionCallExpr(self, ctx:MinisqlParser.StarFunctionCallExprContext):
223
+ pass
224
+
225
+ # Exit a parse tree produced by MinisqlParser#starFunctionCallExpr.
226
+ def exitStarFunctionCallExpr(self, ctx:MinisqlParser.StarFunctionCallExprContext):
227
+ pass
228
+
229
+
230
+ # Enter a parse tree produced by MinisqlParser#caseExpr.
231
+ def enterCaseExpr(self, ctx:MinisqlParser.CaseExprContext):
232
+ pass
233
+
234
+ # Exit a parse tree produced by MinisqlParser#caseExpr.
235
+ def exitCaseExpr(self, ctx:MinisqlParser.CaseExprContext):
236
+ pass
237
+
238
+
239
+ # Enter a parse tree produced by MinisqlParser#selectExpr.
240
+ def enterSelectExpr(self, ctx:MinisqlParser.SelectExprContext):
241
+ pass
242
+
243
+ # Exit a parse tree produced by MinisqlParser#selectExpr.
244
+ def exitSelectExpr(self, ctx:MinisqlParser.SelectExprContext):
245
+ pass
246
+
247
+
248
+ # Enter a parse tree produced by MinisqlParser#parenExpr.
249
+ def enterParenExpr(self, ctx:MinisqlParser.ParenExprContext):
250
+ pass
251
+
252
+ # Exit a parse tree produced by MinisqlParser#parenExpr.
253
+ def exitParenExpr(self, ctx:MinisqlParser.ParenExprContext):
254
+ pass
255
+
256
+
257
+ # Enter a parse tree produced by MinisqlParser#simplePrimaryExpr.
258
+ def enterSimplePrimaryExpr(self, ctx:MinisqlParser.SimplePrimaryExprContext):
259
+ pass
260
+
261
+ # Exit a parse tree produced by MinisqlParser#simplePrimaryExpr.
262
+ def exitSimplePrimaryExpr(self, ctx:MinisqlParser.SimplePrimaryExprContext):
263
+ pass
264
+
265
+
266
+ # Enter a parse tree produced by MinisqlParser#simpleExpr.
267
+ def enterSimpleExpr(self, ctx:MinisqlParser.SimpleExprContext):
268
+ pass
269
+
270
+ # Exit a parse tree produced by MinisqlParser#simpleExpr.
271
+ def exitSimpleExpr(self, ctx:MinisqlParser.SimpleExprContext):
272
+ pass
273
+
274
+
275
+ # Enter a parse tree produced by MinisqlParser#caseItem.
276
+ def enterCaseItem(self, ctx:MinisqlParser.CaseItemContext):
277
+ pass
278
+
279
+ # Exit a parse tree produced by MinisqlParser#caseItem.
280
+ def exitCaseItem(self, ctx:MinisqlParser.CaseItemContext):
281
+ pass
282
+
283
+
284
+ # Enter a parse tree produced by MinisqlParser#over.
285
+ def enterOver(self, ctx:MinisqlParser.OverContext):
286
+ pass
287
+
288
+ # Exit a parse tree produced by MinisqlParser#over.
289
+ def exitOver(self, ctx:MinisqlParser.OverContext):
290
+ pass
291
+
292
+
293
+ # Enter a parse tree produced by MinisqlParser#sortItem.
294
+ def enterSortItem(self, ctx:MinisqlParser.SortItemContext):
295
+ pass
296
+
297
+ # Exit a parse tree produced by MinisqlParser#sortItem.
298
+ def exitSortItem(self, ctx:MinisqlParser.SortItemContext):
299
+ pass
300
+
301
+
302
+ # Enter a parse tree produced by MinisqlParser#aliasedRelation.
303
+ def enterAliasedRelation(self, ctx:MinisqlParser.AliasedRelationContext):
304
+ pass
305
+
306
+ # Exit a parse tree produced by MinisqlParser#aliasedRelation.
307
+ def exitAliasedRelation(self, ctx:MinisqlParser.AliasedRelationContext):
308
+ pass
309
+
310
+
311
+ # Enter a parse tree produced by MinisqlParser#joinRelation.
312
+ def enterJoinRelation(self, ctx:MinisqlParser.JoinRelationContext):
313
+ pass
314
+
315
+ # Exit a parse tree produced by MinisqlParser#joinRelation.
316
+ def exitJoinRelation(self, ctx:MinisqlParser.JoinRelationContext):
317
+ pass
318
+
319
+
320
+ # Enter a parse tree produced by MinisqlParser#selectRelation.
321
+ def enterSelectRelation(self, ctx:MinisqlParser.SelectRelationContext):
322
+ pass
323
+
324
+ # Exit a parse tree produced by MinisqlParser#selectRelation.
325
+ def exitSelectRelation(self, ctx:MinisqlParser.SelectRelationContext):
326
+ pass
327
+
328
+
329
+ # Enter a parse tree produced by MinisqlParser#tableRelation.
330
+ def enterTableRelation(self, ctx:MinisqlParser.TableRelationContext):
331
+ pass
332
+
333
+ # Exit a parse tree produced by MinisqlParser#tableRelation.
334
+ def exitTableRelation(self, ctx:MinisqlParser.TableRelationContext):
335
+ pass
336
+
337
+
338
+ # Enter a parse tree produced by MinisqlParser#parenRelation.
339
+ def enterParenRelation(self, ctx:MinisqlParser.ParenRelationContext):
340
+ pass
341
+
342
+ # Exit a parse tree produced by MinisqlParser#parenRelation.
343
+ def exitParenRelation(self, ctx:MinisqlParser.ParenRelationContext):
344
+ pass
345
+
346
+
347
+ # Enter a parse tree produced by MinisqlParser#groupBy.
348
+ def enterGroupBy(self, ctx:MinisqlParser.GroupByContext):
349
+ pass
350
+
351
+ # Exit a parse tree produced by MinisqlParser#groupBy.
352
+ def exitGroupBy(self, ctx:MinisqlParser.GroupByContext):
353
+ pass
354
+
355
+
356
+ # Enter a parse tree produced by MinisqlParser#qualifiedName.
357
+ def enterQualifiedName(self, ctx:MinisqlParser.QualifiedNameContext):
358
+ pass
359
+
360
+ # Exit a parse tree produced by MinisqlParser#qualifiedName.
361
+ def exitQualifiedName(self, ctx:MinisqlParser.QualifiedNameContext):
362
+ pass
363
+
364
+
365
+ # Enter a parse tree produced by MinisqlParser#identList.
366
+ def enterIdentList(self, ctx:MinisqlParser.IdentListContext):
367
+ pass
368
+
369
+ # Exit a parse tree produced by MinisqlParser#identList.
370
+ def exitIdentList(self, ctx:MinisqlParser.IdentListContext):
371
+ pass
372
+
373
+
374
+ # Enter a parse tree produced by MinisqlParser#ident.
375
+ def enterIdent(self, ctx:MinisqlParser.IdentContext):
376
+ pass
377
+
378
+ # Exit a parse tree produced by MinisqlParser#ident.
379
+ def exitIdent(self, ctx:MinisqlParser.IdentContext):
380
+ pass
381
+
382
+
383
+ # Enter a parse tree produced by MinisqlParser#quotedIdent.
384
+ def enterQuotedIdent(self, ctx:MinisqlParser.QuotedIdentContext):
385
+ pass
386
+
387
+ # Exit a parse tree produced by MinisqlParser#quotedIdent.
388
+ def exitQuotedIdent(self, ctx:MinisqlParser.QuotedIdentContext):
389
+ pass
390
+
391
+
392
+ # Enter a parse tree produced by MinisqlParser#integerNumber.
393
+ def enterIntegerNumber(self, ctx:MinisqlParser.IntegerNumberContext):
394
+ pass
395
+
396
+ # Exit a parse tree produced by MinisqlParser#integerNumber.
397
+ def exitIntegerNumber(self, ctx:MinisqlParser.IntegerNumberContext):
398
+ pass
399
+
400
+
401
+ # Enter a parse tree produced by MinisqlParser#decimalNumber.
402
+ def enterDecimalNumber(self, ctx:MinisqlParser.DecimalNumberContext):
403
+ pass
404
+
405
+ # Exit a parse tree produced by MinisqlParser#decimalNumber.
406
+ def exitDecimalNumber(self, ctx:MinisqlParser.DecimalNumberContext):
407
+ pass
408
+
409
+
410
+ # Enter a parse tree produced by MinisqlParser#floatNumber.
411
+ def enterFloatNumber(self, ctx:MinisqlParser.FloatNumberContext):
412
+ pass
413
+
414
+ # Exit a parse tree produced by MinisqlParser#floatNumber.
415
+ def exitFloatNumber(self, ctx:MinisqlParser.FloatNumberContext):
416
+ pass
417
+
418
+
419
+ # Enter a parse tree produced by MinisqlParser#string.
420
+ def enterString(self, ctx:MinisqlParser.StringContext):
421
+ pass
422
+
423
+ # Exit a parse tree produced by MinisqlParser#string.
424
+ def exitString(self, ctx:MinisqlParser.StringContext):
425
+ pass
426
+
427
+
428
+ # Enter a parse tree produced by MinisqlParser#null.
429
+ def enterNull(self, ctx:MinisqlParser.NullContext):
430
+ pass
431
+
432
+ # Exit a parse tree produced by MinisqlParser#null.
433
+ def exitNull(self, ctx:MinisqlParser.NullContext):
434
+ pass
435
+
436
+
437
+ # Enter a parse tree produced by MinisqlParser#true.
438
+ def enterTrue(self, ctx:MinisqlParser.TrueContext):
439
+ pass
440
+
441
+ # Exit a parse tree produced by MinisqlParser#true.
442
+ def exitTrue(self, ctx:MinisqlParser.TrueContext):
443
+ pass
444
+
445
+
446
+ # Enter a parse tree produced by MinisqlParser#false.
447
+ def enterFalse(self, ctx:MinisqlParser.FalseContext):
448
+ pass
449
+
450
+ # Exit a parse tree produced by MinisqlParser#false.
451
+ def exitFalse(self, ctx:MinisqlParser.FalseContext):
452
+ pass
453
+
454
+
455
+ # Enter a parse tree produced by MinisqlParser#setQuantifier.
456
+ def enterSetQuantifier(self, ctx:MinisqlParser.SetQuantifierContext):
457
+ pass
458
+
459
+ # Exit a parse tree produced by MinisqlParser#setQuantifier.
460
+ def exitSetQuantifier(self, ctx:MinisqlParser.SetQuantifierContext):
461
+ pass
462
+
463
+
464
+ # Enter a parse tree produced by MinisqlParser#joinType.
465
+ def enterJoinType(self, ctx:MinisqlParser.JoinTypeContext):
466
+ pass
467
+
468
+ # Exit a parse tree produced by MinisqlParser#joinType.
469
+ def exitJoinType(self, ctx:MinisqlParser.JoinTypeContext):
470
+ pass
471
+
472
+
473
+ # Enter a parse tree produced by MinisqlParser#cmpOp.
474
+ def enterCmpOp(self, ctx:MinisqlParser.CmpOpContext):
475
+ pass
476
+
477
+ # Exit a parse tree produced by MinisqlParser#cmpOp.
478
+ def exitCmpOp(self, ctx:MinisqlParser.CmpOpContext):
479
+ pass
480
+
481
+
482
+ # Enter a parse tree produced by MinisqlParser#arithOp.
483
+ def enterArithOp(self, ctx:MinisqlParser.ArithOpContext):
484
+ pass
485
+
486
+ # Exit a parse tree produced by MinisqlParser#arithOp.
487
+ def exitArithOp(self, ctx:MinisqlParser.ArithOpContext):
488
+ pass
489
+
490
+
491
+ # Enter a parse tree produced by MinisqlParser#unaryOp.
492
+ def enterUnaryOp(self, ctx:MinisqlParser.UnaryOpContext):
493
+ pass
494
+
495
+ # Exit a parse tree produced by MinisqlParser#unaryOp.
496
+ def exitUnaryOp(self, ctx:MinisqlParser.UnaryOpContext):
497
+ pass
498
+
499
+
500
+ # Enter a parse tree produced by MinisqlParser#unquotedIdent.
501
+ def enterUnquotedIdent(self, ctx:MinisqlParser.UnquotedIdentContext):
502
+ pass
503
+
504
+ # Exit a parse tree produced by MinisqlParser#unquotedIdent.
505
+ def exitUnquotedIdent(self, ctx:MinisqlParser.UnquotedIdentContext):
506
+ pass
507
+
508
+
509
+
510
+ del MinisqlParser