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