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