-
Notifications
You must be signed in to change notification settings - Fork 0
/
ANTLRv4ParserListener.py
577 lines (386 loc) · 18.4 KB
/
ANTLRv4ParserListener.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
# Generated from ANTLRv4Parser.g4 by ANTLR 4.5.3
from antlr4 import *
if __name__ is not None and "." in __name__:
from .ANTLRv4Parser import ANTLRv4Parser
else:
from ANTLRv4Parser import ANTLRv4Parser
# This class defines a complete listener for a parse tree produced by ANTLRv4Parser.
class ANTLRv4ParserListener(ParseTreeListener):
# Enter a parse tree produced by ANTLRv4Parser#grammarSpec.
def enterGrammarSpec(self, ctx:ANTLRv4Parser.GrammarSpecContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#grammarSpec.
def exitGrammarSpec(self, ctx:ANTLRv4Parser.GrammarSpecContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#grammarType.
def enterGrammarType(self, ctx:ANTLRv4Parser.GrammarTypeContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#grammarType.
def exitGrammarType(self, ctx:ANTLRv4Parser.GrammarTypeContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#prequelConstruct.
def enterPrequelConstruct(self, ctx:ANTLRv4Parser.PrequelConstructContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#prequelConstruct.
def exitPrequelConstruct(self, ctx:ANTLRv4Parser.PrequelConstructContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#optionsSpec.
def enterOptionsSpec(self, ctx:ANTLRv4Parser.OptionsSpecContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#optionsSpec.
def exitOptionsSpec(self, ctx:ANTLRv4Parser.OptionsSpecContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#option.
def enterOption(self, ctx:ANTLRv4Parser.OptionContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#option.
def exitOption(self, ctx:ANTLRv4Parser.OptionContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#optionValue.
def enterOptionValue(self, ctx:ANTLRv4Parser.OptionValueContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#optionValue.
def exitOptionValue(self, ctx:ANTLRv4Parser.OptionValueContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#delegateGrammars.
def enterDelegateGrammars(self, ctx:ANTLRv4Parser.DelegateGrammarsContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#delegateGrammars.
def exitDelegateGrammars(self, ctx:ANTLRv4Parser.DelegateGrammarsContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#delegateGrammar.
def enterDelegateGrammar(self, ctx:ANTLRv4Parser.DelegateGrammarContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#delegateGrammar.
def exitDelegateGrammar(self, ctx:ANTLRv4Parser.DelegateGrammarContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#tokensSpec.
def enterTokensSpec(self, ctx:ANTLRv4Parser.TokensSpecContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#tokensSpec.
def exitTokensSpec(self, ctx:ANTLRv4Parser.TokensSpecContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#channelsSpec.
def enterChannelsSpec(self, ctx:ANTLRv4Parser.ChannelsSpecContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#channelsSpec.
def exitChannelsSpec(self, ctx:ANTLRv4Parser.ChannelsSpecContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#idList.
def enterIdList(self, ctx:ANTLRv4Parser.IdListContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#idList.
def exitIdList(self, ctx:ANTLRv4Parser.IdListContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#action.
def enterAction(self, ctx:ANTLRv4Parser.ActionContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#action.
def exitAction(self, ctx:ANTLRv4Parser.ActionContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#actionScopeName.
def enterActionScopeName(self, ctx:ANTLRv4Parser.ActionScopeNameContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#actionScopeName.
def exitActionScopeName(self, ctx:ANTLRv4Parser.ActionScopeNameContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#actionBlock.
def enterActionBlock(self, ctx:ANTLRv4Parser.ActionBlockContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#actionBlock.
def exitActionBlock(self, ctx:ANTLRv4Parser.ActionBlockContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#argActionBlock.
def enterArgActionBlock(self, ctx:ANTLRv4Parser.ArgActionBlockContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#argActionBlock.
def exitArgActionBlock(self, ctx:ANTLRv4Parser.ArgActionBlockContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#modeSpec.
def enterModeSpec(self, ctx:ANTLRv4Parser.ModeSpecContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#modeSpec.
def exitModeSpec(self, ctx:ANTLRv4Parser.ModeSpecContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#rules.
def enterRules(self, ctx:ANTLRv4Parser.RulesContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#rules.
def exitRules(self, ctx:ANTLRv4Parser.RulesContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#ruleSpec.
def enterRuleSpec(self, ctx:ANTLRv4Parser.RuleSpecContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#ruleSpec.
def exitRuleSpec(self, ctx:ANTLRv4Parser.RuleSpecContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#parserRuleSpec.
def enterParserRuleSpec(self, ctx:ANTLRv4Parser.ParserRuleSpecContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#parserRuleSpec.
def exitParserRuleSpec(self, ctx:ANTLRv4Parser.ParserRuleSpecContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#exceptionGroup.
def enterExceptionGroup(self, ctx:ANTLRv4Parser.ExceptionGroupContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#exceptionGroup.
def exitExceptionGroup(self, ctx:ANTLRv4Parser.ExceptionGroupContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#exceptionHandler.
def enterExceptionHandler(self, ctx:ANTLRv4Parser.ExceptionHandlerContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#exceptionHandler.
def exitExceptionHandler(self, ctx:ANTLRv4Parser.ExceptionHandlerContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#finallyClause.
def enterFinallyClause(self, ctx:ANTLRv4Parser.FinallyClauseContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#finallyClause.
def exitFinallyClause(self, ctx:ANTLRv4Parser.FinallyClauseContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#rulePrequel.
def enterRulePrequel(self, ctx:ANTLRv4Parser.RulePrequelContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#rulePrequel.
def exitRulePrequel(self, ctx:ANTLRv4Parser.RulePrequelContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#ruleReturns.
def enterRuleReturns(self, ctx:ANTLRv4Parser.RuleReturnsContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#ruleReturns.
def exitRuleReturns(self, ctx:ANTLRv4Parser.RuleReturnsContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#throwsSpec.
def enterThrowsSpec(self, ctx:ANTLRv4Parser.ThrowsSpecContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#throwsSpec.
def exitThrowsSpec(self, ctx:ANTLRv4Parser.ThrowsSpecContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#localsSpec.
def enterLocalsSpec(self, ctx:ANTLRv4Parser.LocalsSpecContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#localsSpec.
def exitLocalsSpec(self, ctx:ANTLRv4Parser.LocalsSpecContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#ruleAction.
def enterRuleAction(self, ctx:ANTLRv4Parser.RuleActionContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#ruleAction.
def exitRuleAction(self, ctx:ANTLRv4Parser.RuleActionContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#ruleModifiers.
def enterRuleModifiers(self, ctx:ANTLRv4Parser.RuleModifiersContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#ruleModifiers.
def exitRuleModifiers(self, ctx:ANTLRv4Parser.RuleModifiersContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#ruleModifier.
def enterRuleModifier(self, ctx:ANTLRv4Parser.RuleModifierContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#ruleModifier.
def exitRuleModifier(self, ctx:ANTLRv4Parser.RuleModifierContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#ruleBlock.
def enterRuleBlock(self, ctx:ANTLRv4Parser.RuleBlockContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#ruleBlock.
def exitRuleBlock(self, ctx:ANTLRv4Parser.RuleBlockContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#ruleAltList.
def enterRuleAltList(self, ctx:ANTLRv4Parser.RuleAltListContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#ruleAltList.
def exitRuleAltList(self, ctx:ANTLRv4Parser.RuleAltListContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#labeledAlt.
def enterLabeledAlt(self, ctx:ANTLRv4Parser.LabeledAltContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#labeledAlt.
def exitLabeledAlt(self, ctx:ANTLRv4Parser.LabeledAltContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerRuleSpec.
def enterLexerRuleSpec(self, ctx:ANTLRv4Parser.LexerRuleSpecContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerRuleSpec.
def exitLexerRuleSpec(self, ctx:ANTLRv4Parser.LexerRuleSpecContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerRuleBlock.
def enterLexerRuleBlock(self, ctx:ANTLRv4Parser.LexerRuleBlockContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerRuleBlock.
def exitLexerRuleBlock(self, ctx:ANTLRv4Parser.LexerRuleBlockContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerAltList.
def enterLexerAltList(self, ctx:ANTLRv4Parser.LexerAltListContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerAltList.
def exitLexerAltList(self, ctx:ANTLRv4Parser.LexerAltListContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerAlt.
def enterLexerAlt(self, ctx:ANTLRv4Parser.LexerAltContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerAlt.
def exitLexerAlt(self, ctx:ANTLRv4Parser.LexerAltContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerElements.
def enterLexerElements(self, ctx:ANTLRv4Parser.LexerElementsContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerElements.
def exitLexerElements(self, ctx:ANTLRv4Parser.LexerElementsContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerElement.
def enterLexerElement(self, ctx:ANTLRv4Parser.LexerElementContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerElement.
def exitLexerElement(self, ctx:ANTLRv4Parser.LexerElementContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#labeledLexerElement.
def enterLabeledLexerElement(self, ctx:ANTLRv4Parser.LabeledLexerElementContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#labeledLexerElement.
def exitLabeledLexerElement(self, ctx:ANTLRv4Parser.LabeledLexerElementContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerBlock.
def enterLexerBlock(self, ctx:ANTLRv4Parser.LexerBlockContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerBlock.
def exitLexerBlock(self, ctx:ANTLRv4Parser.LexerBlockContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerCommands.
def enterLexerCommands(self, ctx:ANTLRv4Parser.LexerCommandsContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerCommands.
def exitLexerCommands(self, ctx:ANTLRv4Parser.LexerCommandsContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerCommand.
def enterLexerCommand(self, ctx:ANTLRv4Parser.LexerCommandContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerCommand.
def exitLexerCommand(self, ctx:ANTLRv4Parser.LexerCommandContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerCommandName.
def enterLexerCommandName(self, ctx:ANTLRv4Parser.LexerCommandNameContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerCommandName.
def exitLexerCommandName(self, ctx:ANTLRv4Parser.LexerCommandNameContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerCommandExpr.
def enterLexerCommandExpr(self, ctx:ANTLRv4Parser.LexerCommandExprContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerCommandExpr.
def exitLexerCommandExpr(self, ctx:ANTLRv4Parser.LexerCommandExprContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#altList.
def enterAltList(self, ctx:ANTLRv4Parser.AltListContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#altList.
def exitAltList(self, ctx:ANTLRv4Parser.AltListContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#alternative.
def enterAlternative(self, ctx:ANTLRv4Parser.AlternativeContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#alternative.
def exitAlternative(self, ctx:ANTLRv4Parser.AlternativeContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#element.
def enterElement(self, ctx:ANTLRv4Parser.ElementContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#element.
def exitElement(self, ctx:ANTLRv4Parser.ElementContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#labeledElement.
def enterLabeledElement(self, ctx:ANTLRv4Parser.LabeledElementContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#labeledElement.
def exitLabeledElement(self, ctx:ANTLRv4Parser.LabeledElementContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#ebnf.
def enterEbnf(self, ctx:ANTLRv4Parser.EbnfContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#ebnf.
def exitEbnf(self, ctx:ANTLRv4Parser.EbnfContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#blockSuffix.
def enterBlockSuffix(self, ctx:ANTLRv4Parser.BlockSuffixContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#blockSuffix.
def exitBlockSuffix(self, ctx:ANTLRv4Parser.BlockSuffixContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#ebnfSuffix.
def enterEbnfSuffix(self, ctx:ANTLRv4Parser.EbnfSuffixContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#ebnfSuffix.
def exitEbnfSuffix(self, ctx:ANTLRv4Parser.EbnfSuffixContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#lexerAtom.
def enterLexerAtom(self, ctx:ANTLRv4Parser.LexerAtomContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#lexerAtom.
def exitLexerAtom(self, ctx:ANTLRv4Parser.LexerAtomContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#atom.
def enterAtom(self, ctx:ANTLRv4Parser.AtomContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#atom.
def exitAtom(self, ctx:ANTLRv4Parser.AtomContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#notSet.
def enterNotSet(self, ctx:ANTLRv4Parser.NotSetContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#notSet.
def exitNotSet(self, ctx:ANTLRv4Parser.NotSetContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#blockSet.
def enterBlockSet(self, ctx:ANTLRv4Parser.BlockSetContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#blockSet.
def exitBlockSet(self, ctx:ANTLRv4Parser.BlockSetContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#setElement.
def enterSetElement(self, ctx:ANTLRv4Parser.SetElementContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#setElement.
def exitSetElement(self, ctx:ANTLRv4Parser.SetElementContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#block.
def enterBlock(self, ctx:ANTLRv4Parser.BlockContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#block.
def exitBlock(self, ctx:ANTLRv4Parser.BlockContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#ruleref.
def enterRuleref(self, ctx:ANTLRv4Parser.RulerefContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#ruleref.
def exitRuleref(self, ctx:ANTLRv4Parser.RulerefContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#characterRange.
def enterCharacterRange(self, ctx:ANTLRv4Parser.CharacterRangeContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#characterRange.
def exitCharacterRange(self, ctx:ANTLRv4Parser.CharacterRangeContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#terminal.
def enterTerminal(self, ctx:ANTLRv4Parser.TerminalContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#terminal.
def exitTerminal(self, ctx:ANTLRv4Parser.TerminalContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#elementOptions.
def enterElementOptions(self, ctx:ANTLRv4Parser.ElementOptionsContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#elementOptions.
def exitElementOptions(self, ctx:ANTLRv4Parser.ElementOptionsContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#elementOption.
def enterElementOption(self, ctx:ANTLRv4Parser.ElementOptionContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#elementOption.
def exitElementOption(self, ctx:ANTLRv4Parser.ElementOptionContext):
pass
# Enter a parse tree produced by ANTLRv4Parser#identifier.
def enterIdentifier(self, ctx:ANTLRv4Parser.IdentifierContext):
pass
# Exit a parse tree produced by ANTLRv4Parser#identifier.
def exitIdentifier(self, ctx:ANTLRv4Parser.IdentifierContext):
pass