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,448 @@
1
+ # type: ignore
2
+ # ruff: noqa
3
+ # flake8: noqa
4
+ # @omlish-generated
5
+ # Generated from Protobuf3.g4 by ANTLR 4.13.2
6
+ from omlish.text.antlr._runtime._all import *
7
+ if "." in __name__:
8
+ from .Protobuf3Parser import Protobuf3Parser
9
+ else:
10
+ from Protobuf3Parser import Protobuf3Parser
11
+
12
+ # This class defines a complete listener for a parse tree produced by Protobuf3Parser.
13
+ class Protobuf3Listener(ParseTreeListener):
14
+
15
+ # Enter a parse tree produced by Protobuf3Parser#proto.
16
+ def enterProto(self, ctx:Protobuf3Parser.ProtoContext):
17
+ pass
18
+
19
+ # Exit a parse tree produced by Protobuf3Parser#proto.
20
+ def exitProto(self, ctx:Protobuf3Parser.ProtoContext):
21
+ pass
22
+
23
+
24
+ # Enter a parse tree produced by Protobuf3Parser#syntax.
25
+ def enterSyntax(self, ctx:Protobuf3Parser.SyntaxContext):
26
+ pass
27
+
28
+ # Exit a parse tree produced by Protobuf3Parser#syntax.
29
+ def exitSyntax(self, ctx:Protobuf3Parser.SyntaxContext):
30
+ pass
31
+
32
+
33
+ # Enter a parse tree produced by Protobuf3Parser#syntaxExtra.
34
+ def enterSyntaxExtra(self, ctx:Protobuf3Parser.SyntaxExtraContext):
35
+ pass
36
+
37
+ # Exit a parse tree produced by Protobuf3Parser#syntaxExtra.
38
+ def exitSyntaxExtra(self, ctx:Protobuf3Parser.SyntaxExtraContext):
39
+ pass
40
+
41
+
42
+ # Enter a parse tree produced by Protobuf3Parser#importStmt.
43
+ def enterImportStmt(self, ctx:Protobuf3Parser.ImportStmtContext):
44
+ pass
45
+
46
+ # Exit a parse tree produced by Protobuf3Parser#importStmt.
47
+ def exitImportStmt(self, ctx:Protobuf3Parser.ImportStmtContext):
48
+ pass
49
+
50
+
51
+ # Enter a parse tree produced by Protobuf3Parser#packageStmt.
52
+ def enterPackageStmt(self, ctx:Protobuf3Parser.PackageStmtContext):
53
+ pass
54
+
55
+ # Exit a parse tree produced by Protobuf3Parser#packageStmt.
56
+ def exitPackageStmt(self, ctx:Protobuf3Parser.PackageStmtContext):
57
+ pass
58
+
59
+
60
+ # Enter a parse tree produced by Protobuf3Parser#option.
61
+ def enterOption(self, ctx:Protobuf3Parser.OptionContext):
62
+ pass
63
+
64
+ # Exit a parse tree produced by Protobuf3Parser#option.
65
+ def exitOption(self, ctx:Protobuf3Parser.OptionContext):
66
+ pass
67
+
68
+
69
+ # Enter a parse tree produced by Protobuf3Parser#optionName.
70
+ def enterOptionName(self, ctx:Protobuf3Parser.OptionNameContext):
71
+ pass
72
+
73
+ # Exit a parse tree produced by Protobuf3Parser#optionName.
74
+ def exitOptionName(self, ctx:Protobuf3Parser.OptionNameContext):
75
+ pass
76
+
77
+
78
+ # Enter a parse tree produced by Protobuf3Parser#optionBody.
79
+ def enterOptionBody(self, ctx:Protobuf3Parser.OptionBodyContext):
80
+ pass
81
+
82
+ # Exit a parse tree produced by Protobuf3Parser#optionBody.
83
+ def exitOptionBody(self, ctx:Protobuf3Parser.OptionBodyContext):
84
+ pass
85
+
86
+
87
+ # Enter a parse tree produced by Protobuf3Parser#optionBodyVariable.
88
+ def enterOptionBodyVariable(self, ctx:Protobuf3Parser.OptionBodyVariableContext):
89
+ pass
90
+
91
+ # Exit a parse tree produced by Protobuf3Parser#optionBodyVariable.
92
+ def exitOptionBodyVariable(self, ctx:Protobuf3Parser.OptionBodyVariableContext):
93
+ pass
94
+
95
+
96
+ # Enter a parse tree produced by Protobuf3Parser#topLevelDef.
97
+ def enterTopLevelDef(self, ctx:Protobuf3Parser.TopLevelDefContext):
98
+ pass
99
+
100
+ # Exit a parse tree produced by Protobuf3Parser#topLevelDef.
101
+ def exitTopLevelDef(self, ctx:Protobuf3Parser.TopLevelDefContext):
102
+ pass
103
+
104
+
105
+ # Enter a parse tree produced by Protobuf3Parser#message.
106
+ def enterMessage(self, ctx:Protobuf3Parser.MessageContext):
107
+ pass
108
+
109
+ # Exit a parse tree produced by Protobuf3Parser#message.
110
+ def exitMessage(self, ctx:Protobuf3Parser.MessageContext):
111
+ pass
112
+
113
+
114
+ # Enter a parse tree produced by Protobuf3Parser#messageBody.
115
+ def enterMessageBody(self, ctx:Protobuf3Parser.MessageBodyContext):
116
+ pass
117
+
118
+ # Exit a parse tree produced by Protobuf3Parser#messageBody.
119
+ def exitMessageBody(self, ctx:Protobuf3Parser.MessageBodyContext):
120
+ pass
121
+
122
+
123
+ # Enter a parse tree produced by Protobuf3Parser#messageBodyContent.
124
+ def enterMessageBodyContent(self, ctx:Protobuf3Parser.MessageBodyContentContext):
125
+ pass
126
+
127
+ # Exit a parse tree produced by Protobuf3Parser#messageBodyContent.
128
+ def exitMessageBodyContent(self, ctx:Protobuf3Parser.MessageBodyContentContext):
129
+ pass
130
+
131
+
132
+ # Enter a parse tree produced by Protobuf3Parser#enumDef.
133
+ def enterEnumDef(self, ctx:Protobuf3Parser.EnumDefContext):
134
+ pass
135
+
136
+ # Exit a parse tree produced by Protobuf3Parser#enumDef.
137
+ def exitEnumDef(self, ctx:Protobuf3Parser.EnumDefContext):
138
+ pass
139
+
140
+
141
+ # Enter a parse tree produced by Protobuf3Parser#enumBody.
142
+ def enterEnumBody(self, ctx:Protobuf3Parser.EnumBodyContext):
143
+ pass
144
+
145
+ # Exit a parse tree produced by Protobuf3Parser#enumBody.
146
+ def exitEnumBody(self, ctx:Protobuf3Parser.EnumBodyContext):
147
+ pass
148
+
149
+
150
+ # Enter a parse tree produced by Protobuf3Parser#enumField.
151
+ def enterEnumField(self, ctx:Protobuf3Parser.EnumFieldContext):
152
+ pass
153
+
154
+ # Exit a parse tree produced by Protobuf3Parser#enumField.
155
+ def exitEnumField(self, ctx:Protobuf3Parser.EnumFieldContext):
156
+ pass
157
+
158
+
159
+ # Enter a parse tree produced by Protobuf3Parser#enumValueOption.
160
+ def enterEnumValueOption(self, ctx:Protobuf3Parser.EnumValueOptionContext):
161
+ pass
162
+
163
+ # Exit a parse tree produced by Protobuf3Parser#enumValueOption.
164
+ def exitEnumValueOption(self, ctx:Protobuf3Parser.EnumValueOptionContext):
165
+ pass
166
+
167
+
168
+ # Enter a parse tree produced by Protobuf3Parser#extend.
169
+ def enterExtend(self, ctx:Protobuf3Parser.ExtendContext):
170
+ pass
171
+
172
+ # Exit a parse tree produced by Protobuf3Parser#extend.
173
+ def exitExtend(self, ctx:Protobuf3Parser.ExtendContext):
174
+ pass
175
+
176
+
177
+ # Enter a parse tree produced by Protobuf3Parser#service.
178
+ def enterService(self, ctx:Protobuf3Parser.ServiceContext):
179
+ pass
180
+
181
+ # Exit a parse tree produced by Protobuf3Parser#service.
182
+ def exitService(self, ctx:Protobuf3Parser.ServiceContext):
183
+ pass
184
+
185
+
186
+ # Enter a parse tree produced by Protobuf3Parser#rpc.
187
+ def enterRpc(self, ctx:Protobuf3Parser.RpcContext):
188
+ pass
189
+
190
+ # Exit a parse tree produced by Protobuf3Parser#rpc.
191
+ def exitRpc(self, ctx:Protobuf3Parser.RpcContext):
192
+ pass
193
+
194
+
195
+ # Enter a parse tree produced by Protobuf3Parser#reserved.
196
+ def enterReserved(self, ctx:Protobuf3Parser.ReservedContext):
197
+ pass
198
+
199
+ # Exit a parse tree produced by Protobuf3Parser#reserved.
200
+ def exitReserved(self, ctx:Protobuf3Parser.ReservedContext):
201
+ pass
202
+
203
+
204
+ # Enter a parse tree produced by Protobuf3Parser#ranges.
205
+ def enterRanges(self, ctx:Protobuf3Parser.RangesContext):
206
+ pass
207
+
208
+ # Exit a parse tree produced by Protobuf3Parser#ranges.
209
+ def exitRanges(self, ctx:Protobuf3Parser.RangesContext):
210
+ pass
211
+
212
+
213
+ # Enter a parse tree produced by Protobuf3Parser#rangeRule.
214
+ def enterRangeRule(self, ctx:Protobuf3Parser.RangeRuleContext):
215
+ pass
216
+
217
+ # Exit a parse tree produced by Protobuf3Parser#rangeRule.
218
+ def exitRangeRule(self, ctx:Protobuf3Parser.RangeRuleContext):
219
+ pass
220
+
221
+
222
+ # Enter a parse tree produced by Protobuf3Parser#fieldNames.
223
+ def enterFieldNames(self, ctx:Protobuf3Parser.FieldNamesContext):
224
+ pass
225
+
226
+ # Exit a parse tree produced by Protobuf3Parser#fieldNames.
227
+ def exitFieldNames(self, ctx:Protobuf3Parser.FieldNamesContext):
228
+ pass
229
+
230
+
231
+ # Enter a parse tree produced by Protobuf3Parser#typeRule.
232
+ def enterTypeRule(self, ctx:Protobuf3Parser.TypeRuleContext):
233
+ pass
234
+
235
+ # Exit a parse tree produced by Protobuf3Parser#typeRule.
236
+ def exitTypeRule(self, ctx:Protobuf3Parser.TypeRuleContext):
237
+ pass
238
+
239
+
240
+ # Enter a parse tree produced by Protobuf3Parser#simpleType.
241
+ def enterSimpleType(self, ctx:Protobuf3Parser.SimpleTypeContext):
242
+ pass
243
+
244
+ # Exit a parse tree produced by Protobuf3Parser#simpleType.
245
+ def exitSimpleType(self, ctx:Protobuf3Parser.SimpleTypeContext):
246
+ pass
247
+
248
+
249
+ # Enter a parse tree produced by Protobuf3Parser#fieldNumber.
250
+ def enterFieldNumber(self, ctx:Protobuf3Parser.FieldNumberContext):
251
+ pass
252
+
253
+ # Exit a parse tree produced by Protobuf3Parser#fieldNumber.
254
+ def exitFieldNumber(self, ctx:Protobuf3Parser.FieldNumberContext):
255
+ pass
256
+
257
+
258
+ # Enter a parse tree produced by Protobuf3Parser#field.
259
+ def enterField(self, ctx:Protobuf3Parser.FieldContext):
260
+ pass
261
+
262
+ # Exit a parse tree produced by Protobuf3Parser#field.
263
+ def exitField(self, ctx:Protobuf3Parser.FieldContext):
264
+ pass
265
+
266
+
267
+ # Enter a parse tree produced by Protobuf3Parser#fieldOptions.
268
+ def enterFieldOptions(self, ctx:Protobuf3Parser.FieldOptionsContext):
269
+ pass
270
+
271
+ # Exit a parse tree produced by Protobuf3Parser#fieldOptions.
272
+ def exitFieldOptions(self, ctx:Protobuf3Parser.FieldOptionsContext):
273
+ pass
274
+
275
+
276
+ # Enter a parse tree produced by Protobuf3Parser#fieldOption.
277
+ def enterFieldOption(self, ctx:Protobuf3Parser.FieldOptionContext):
278
+ pass
279
+
280
+ # Exit a parse tree produced by Protobuf3Parser#fieldOption.
281
+ def exitFieldOption(self, ctx:Protobuf3Parser.FieldOptionContext):
282
+ pass
283
+
284
+
285
+ # Enter a parse tree produced by Protobuf3Parser#oneof.
286
+ def enterOneof(self, ctx:Protobuf3Parser.OneofContext):
287
+ pass
288
+
289
+ # Exit a parse tree produced by Protobuf3Parser#oneof.
290
+ def exitOneof(self, ctx:Protobuf3Parser.OneofContext):
291
+ pass
292
+
293
+
294
+ # Enter a parse tree produced by Protobuf3Parser#oneofField.
295
+ def enterOneofField(self, ctx:Protobuf3Parser.OneofFieldContext):
296
+ pass
297
+
298
+ # Exit a parse tree produced by Protobuf3Parser#oneofField.
299
+ def exitOneofField(self, ctx:Protobuf3Parser.OneofFieldContext):
300
+ pass
301
+
302
+
303
+ # Enter a parse tree produced by Protobuf3Parser#mapField.
304
+ def enterMapField(self, ctx:Protobuf3Parser.MapFieldContext):
305
+ pass
306
+
307
+ # Exit a parse tree produced by Protobuf3Parser#mapField.
308
+ def exitMapField(self, ctx:Protobuf3Parser.MapFieldContext):
309
+ pass
310
+
311
+
312
+ # Enter a parse tree produced by Protobuf3Parser#keyType.
313
+ def enterKeyType(self, ctx:Protobuf3Parser.KeyTypeContext):
314
+ pass
315
+
316
+ # Exit a parse tree produced by Protobuf3Parser#keyType.
317
+ def exitKeyType(self, ctx:Protobuf3Parser.KeyTypeContext):
318
+ pass
319
+
320
+
321
+ # Enter a parse tree produced by Protobuf3Parser#reservedWord.
322
+ def enterReservedWord(self, ctx:Protobuf3Parser.ReservedWordContext):
323
+ pass
324
+
325
+ # Exit a parse tree produced by Protobuf3Parser#reservedWord.
326
+ def exitReservedWord(self, ctx:Protobuf3Parser.ReservedWordContext):
327
+ pass
328
+
329
+
330
+ # Enter a parse tree produced by Protobuf3Parser#fullIdent.
331
+ def enterFullIdent(self, ctx:Protobuf3Parser.FullIdentContext):
332
+ pass
333
+
334
+ # Exit a parse tree produced by Protobuf3Parser#fullIdent.
335
+ def exitFullIdent(self, ctx:Protobuf3Parser.FullIdentContext):
336
+ pass
337
+
338
+
339
+ # Enter a parse tree produced by Protobuf3Parser#messageName.
340
+ def enterMessageName(self, ctx:Protobuf3Parser.MessageNameContext):
341
+ pass
342
+
343
+ # Exit a parse tree produced by Protobuf3Parser#messageName.
344
+ def exitMessageName(self, ctx:Protobuf3Parser.MessageNameContext):
345
+ pass
346
+
347
+
348
+ # Enter a parse tree produced by Protobuf3Parser#enumName.
349
+ def enterEnumName(self, ctx:Protobuf3Parser.EnumNameContext):
350
+ pass
351
+
352
+ # Exit a parse tree produced by Protobuf3Parser#enumName.
353
+ def exitEnumName(self, ctx:Protobuf3Parser.EnumNameContext):
354
+ pass
355
+
356
+
357
+ # Enter a parse tree produced by Protobuf3Parser#messageOrEnumName.
358
+ def enterMessageOrEnumName(self, ctx:Protobuf3Parser.MessageOrEnumNameContext):
359
+ pass
360
+
361
+ # Exit a parse tree produced by Protobuf3Parser#messageOrEnumName.
362
+ def exitMessageOrEnumName(self, ctx:Protobuf3Parser.MessageOrEnumNameContext):
363
+ pass
364
+
365
+
366
+ # Enter a parse tree produced by Protobuf3Parser#fieldName.
367
+ def enterFieldName(self, ctx:Protobuf3Parser.FieldNameContext):
368
+ pass
369
+
370
+ # Exit a parse tree produced by Protobuf3Parser#fieldName.
371
+ def exitFieldName(self, ctx:Protobuf3Parser.FieldNameContext):
372
+ pass
373
+
374
+
375
+ # Enter a parse tree produced by Protobuf3Parser#oneofName.
376
+ def enterOneofName(self, ctx:Protobuf3Parser.OneofNameContext):
377
+ pass
378
+
379
+ # Exit a parse tree produced by Protobuf3Parser#oneofName.
380
+ def exitOneofName(self, ctx:Protobuf3Parser.OneofNameContext):
381
+ pass
382
+
383
+
384
+ # Enter a parse tree produced by Protobuf3Parser#mapName.
385
+ def enterMapName(self, ctx:Protobuf3Parser.MapNameContext):
386
+ pass
387
+
388
+ # Exit a parse tree produced by Protobuf3Parser#mapName.
389
+ def exitMapName(self, ctx:Protobuf3Parser.MapNameContext):
390
+ pass
391
+
392
+
393
+ # Enter a parse tree produced by Protobuf3Parser#serviceName.
394
+ def enterServiceName(self, ctx:Protobuf3Parser.ServiceNameContext):
395
+ pass
396
+
397
+ # Exit a parse tree produced by Protobuf3Parser#serviceName.
398
+ def exitServiceName(self, ctx:Protobuf3Parser.ServiceNameContext):
399
+ pass
400
+
401
+
402
+ # Enter a parse tree produced by Protobuf3Parser#rpcName.
403
+ def enterRpcName(self, ctx:Protobuf3Parser.RpcNameContext):
404
+ pass
405
+
406
+ # Exit a parse tree produced by Protobuf3Parser#rpcName.
407
+ def exitRpcName(self, ctx:Protobuf3Parser.RpcNameContext):
408
+ pass
409
+
410
+
411
+ # Enter a parse tree produced by Protobuf3Parser#messageType.
412
+ def enterMessageType(self, ctx:Protobuf3Parser.MessageTypeContext):
413
+ pass
414
+
415
+ # Exit a parse tree produced by Protobuf3Parser#messageType.
416
+ def exitMessageType(self, ctx:Protobuf3Parser.MessageTypeContext):
417
+ pass
418
+
419
+
420
+ # Enter a parse tree produced by Protobuf3Parser#messageOrEnumType.
421
+ def enterMessageOrEnumType(self, ctx:Protobuf3Parser.MessageOrEnumTypeContext):
422
+ pass
423
+
424
+ # Exit a parse tree produced by Protobuf3Parser#messageOrEnumType.
425
+ def exitMessageOrEnumType(self, ctx:Protobuf3Parser.MessageOrEnumTypeContext):
426
+ pass
427
+
428
+
429
+ # Enter a parse tree produced by Protobuf3Parser#emptyStmt.
430
+ def enterEmptyStmt(self, ctx:Protobuf3Parser.EmptyStmtContext):
431
+ pass
432
+
433
+ # Exit a parse tree produced by Protobuf3Parser#emptyStmt.
434
+ def exitEmptyStmt(self, ctx:Protobuf3Parser.EmptyStmtContext):
435
+ pass
436
+
437
+
438
+ # Enter a parse tree produced by Protobuf3Parser#constant.
439
+ def enterConstant(self, ctx:Protobuf3Parser.ConstantContext):
440
+ pass
441
+
442
+ # Exit a parse tree produced by Protobuf3Parser#constant.
443
+ def exitConstant(self, ctx:Protobuf3Parser.ConstantContext):
444
+ pass
445
+
446
+
447
+
448
+ del Protobuf3Parser