-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSharpLexerListener.py
More file actions
543 lines (363 loc) · 19.5 KB
/
CSharpLexerListener.py
File metadata and controls
543 lines (363 loc) · 19.5 KB
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
# Generated from CSharpLexer.g4 by ANTLR 4.13.2
from antlr4 import *
if "." in __name__:
from .CSharpLexerParser import CSharpLexerParser
else:
from CSharpLexerParser import CSharpLexerParser
# This class defines a complete listener for a parse tree produced by CSharpLexerParser.
class CSharpLexerListener(ParseTreeListener):
# Enter a parse tree produced by CSharpLexerParser#variable_declaration.
def enterVariable_declaration(self, ctx:CSharpLexerParser.Variable_declarationContext):
pass
# Exit a parse tree produced by CSharpLexerParser#variable_declaration.
def exitVariable_declaration(self, ctx:CSharpLexerParser.Variable_declarationContext):
pass
# Enter a parse tree produced by CSharpLexerParser#localVariableDeclaration.
def enterLocalVariableDeclaration(self, ctx:CSharpLexerParser.LocalVariableDeclarationContext):
pass
# Exit a parse tree produced by CSharpLexerParser#localVariableDeclaration.
def exitLocalVariableDeclaration(self, ctx:CSharpLexerParser.LocalVariableDeclarationContext):
pass
# Enter a parse tree produced by CSharpLexerParser#constant_declaration.
def enterConstant_declaration(self, ctx:CSharpLexerParser.Constant_declarationContext):
pass
# Exit a parse tree produced by CSharpLexerParser#constant_declaration.
def exitConstant_declaration(self, ctx:CSharpLexerParser.Constant_declarationContext):
pass
# Enter a parse tree produced by CSharpLexerParser#type_identifier.
def enterType_identifier(self, ctx:CSharpLexerParser.Type_identifierContext):
pass
# Exit a parse tree produced by CSharpLexerParser#type_identifier.
def exitType_identifier(self, ctx:CSharpLexerParser.Type_identifierContext):
pass
# Enter a parse tree produced by CSharpLexerParser#expression.
def enterExpression(self, ctx:CSharpLexerParser.ExpressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#expression.
def exitExpression(self, ctx:CSharpLexerParser.ExpressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#primary_expression.
def enterPrimary_expression(self, ctx:CSharpLexerParser.Primary_expressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#primary_expression.
def exitPrimary_expression(self, ctx:CSharpLexerParser.Primary_expressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#unary_expression.
def enterUnary_expression(self, ctx:CSharpLexerParser.Unary_expressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#unary_expression.
def exitUnary_expression(self, ctx:CSharpLexerParser.Unary_expressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#multiplicative_expression.
def enterMultiplicative_expression(self, ctx:CSharpLexerParser.Multiplicative_expressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#multiplicative_expression.
def exitMultiplicative_expression(self, ctx:CSharpLexerParser.Multiplicative_expressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#additive_expression.
def enterAdditive_expression(self, ctx:CSharpLexerParser.Additive_expressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#additive_expression.
def exitAdditive_expression(self, ctx:CSharpLexerParser.Additive_expressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#shift_expression.
def enterShift_expression(self, ctx:CSharpLexerParser.Shift_expressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#shift_expression.
def exitShift_expression(self, ctx:CSharpLexerParser.Shift_expressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#relational_expression.
def enterRelational_expression(self, ctx:CSharpLexerParser.Relational_expressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#relational_expression.
def exitRelational_expression(self, ctx:CSharpLexerParser.Relational_expressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#equality_expression.
def enterEquality_expression(self, ctx:CSharpLexerParser.Equality_expressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#equality_expression.
def exitEquality_expression(self, ctx:CSharpLexerParser.Equality_expressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#logical_and_expression.
def enterLogical_and_expression(self, ctx:CSharpLexerParser.Logical_and_expressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#logical_and_expression.
def exitLogical_and_expression(self, ctx:CSharpLexerParser.Logical_and_expressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#logical_or_expression.
def enterLogical_or_expression(self, ctx:CSharpLexerParser.Logical_or_expressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#logical_or_expression.
def exitLogical_or_expression(self, ctx:CSharpLexerParser.Logical_or_expressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#conditional_expression.
def enterConditional_expression(self, ctx:CSharpLexerParser.Conditional_expressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#conditional_expression.
def exitConditional_expression(self, ctx:CSharpLexerParser.Conditional_expressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#assignment_expression.
def enterAssignment_expression(self, ctx:CSharpLexerParser.Assignment_expressionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#assignment_expression.
def exitAssignment_expression(self, ctx:CSharpLexerParser.Assignment_expressionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#assignment_operator.
def enterAssignment_operator(self, ctx:CSharpLexerParser.Assignment_operatorContext):
pass
# Exit a parse tree produced by CSharpLexerParser#assignment_operator.
def exitAssignment_operator(self, ctx:CSharpLexerParser.Assignment_operatorContext):
pass
# Enter a parse tree produced by CSharpLexerParser#literal.
def enterLiteral(self, ctx:CSharpLexerParser.LiteralContext):
pass
# Exit a parse tree produced by CSharpLexerParser#literal.
def exitLiteral(self, ctx:CSharpLexerParser.LiteralContext):
pass
# Enter a parse tree produced by CSharpLexerParser#error.
def enterError(self, ctx:CSharpLexerParser.ErrorContext):
pass
# Exit a parse tree produced by CSharpLexerParser#error.
def exitError(self, ctx:CSharpLexerParser.ErrorContext):
pass
# Enter a parse tree produced by CSharpLexerParser#float_declaration.
def enterFloat_declaration(self, ctx:CSharpLexerParser.Float_declarationContext):
pass
# Exit a parse tree produced by CSharpLexerParser#float_declaration.
def exitFloat_declaration(self, ctx:CSharpLexerParser.Float_declarationContext):
pass
# Enter a parse tree produced by CSharpLexerParser#prog.
def enterProg(self, ctx:CSharpLexerParser.ProgContext):
pass
# Exit a parse tree produced by CSharpLexerParser#prog.
def exitProg(self, ctx:CSharpLexerParser.ProgContext):
pass
# Enter a parse tree produced by CSharpLexerParser#controlStructure.
def enterControlStructure(self, ctx:CSharpLexerParser.ControlStructureContext):
pass
# Exit a parse tree produced by CSharpLexerParser#controlStructure.
def exitControlStructure(self, ctx:CSharpLexerParser.ControlStructureContext):
pass
# Enter a parse tree produced by CSharpLexerParser#ifStatement.
def enterIfStatement(self, ctx:CSharpLexerParser.IfStatementContext):
pass
# Exit a parse tree produced by CSharpLexerParser#ifStatement.
def exitIfStatement(self, ctx:CSharpLexerParser.IfStatementContext):
pass
# Enter a parse tree produced by CSharpLexerParser#switchStatement.
def enterSwitchStatement(self, ctx:CSharpLexerParser.SwitchStatementContext):
pass
# Exit a parse tree produced by CSharpLexerParser#switchStatement.
def exitSwitchStatement(self, ctx:CSharpLexerParser.SwitchStatementContext):
pass
# Enter a parse tree produced by CSharpLexerParser#switchSection.
def enterSwitchSection(self, ctx:CSharpLexerParser.SwitchSectionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#switchSection.
def exitSwitchSection(self, ctx:CSharpLexerParser.SwitchSectionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#caseLabel.
def enterCaseLabel(self, ctx:CSharpLexerParser.CaseLabelContext):
pass
# Exit a parse tree produced by CSharpLexerParser#caseLabel.
def exitCaseLabel(self, ctx:CSharpLexerParser.CaseLabelContext):
pass
# Enter a parse tree produced by CSharpLexerParser#whileStatement.
def enterWhileStatement(self, ctx:CSharpLexerParser.WhileStatementContext):
pass
# Exit a parse tree produced by CSharpLexerParser#whileStatement.
def exitWhileStatement(self, ctx:CSharpLexerParser.WhileStatementContext):
pass
# Enter a parse tree produced by CSharpLexerParser#doWhileStatement.
def enterDoWhileStatement(self, ctx:CSharpLexerParser.DoWhileStatementContext):
pass
# Exit a parse tree produced by CSharpLexerParser#doWhileStatement.
def exitDoWhileStatement(self, ctx:CSharpLexerParser.DoWhileStatementContext):
pass
# Enter a parse tree produced by CSharpLexerParser#forStatement.
def enterForStatement(self, ctx:CSharpLexerParser.ForStatementContext):
pass
# Exit a parse tree produced by CSharpLexerParser#forStatement.
def exitForStatement(self, ctx:CSharpLexerParser.ForStatementContext):
pass
# Enter a parse tree produced by CSharpLexerParser#forInitializer.
def enterForInitializer(self, ctx:CSharpLexerParser.ForInitializerContext):
pass
# Exit a parse tree produced by CSharpLexerParser#forInitializer.
def exitForInitializer(self, ctx:CSharpLexerParser.ForInitializerContext):
pass
# Enter a parse tree produced by CSharpLexerParser#forIterator.
def enterForIterator(self, ctx:CSharpLexerParser.ForIteratorContext):
pass
# Exit a parse tree produced by CSharpLexerParser#forIterator.
def exitForIterator(self, ctx:CSharpLexerParser.ForIteratorContext):
pass
# Enter a parse tree produced by CSharpLexerParser#foreachStatement.
def enterForeachStatement(self, ctx:CSharpLexerParser.ForeachStatementContext):
pass
# Exit a parse tree produced by CSharpLexerParser#foreachStatement.
def exitForeachStatement(self, ctx:CSharpLexerParser.ForeachStatementContext):
pass
# Enter a parse tree produced by CSharpLexerParser#block.
def enterBlock(self, ctx:CSharpLexerParser.BlockContext):
pass
# Exit a parse tree produced by CSharpLexerParser#block.
def exitBlock(self, ctx:CSharpLexerParser.BlockContext):
pass
# Enter a parse tree produced by CSharpLexerParser#statement.
def enterStatement(self, ctx:CSharpLexerParser.StatementContext):
pass
# Exit a parse tree produced by CSharpLexerParser#statement.
def exitStatement(self, ctx:CSharpLexerParser.StatementContext):
pass
# Enter a parse tree produced by CSharpLexerParser#expressionStatement.
def enterExpressionStatement(self, ctx:CSharpLexerParser.ExpressionStatementContext):
pass
# Exit a parse tree produced by CSharpLexerParser#expressionStatement.
def exitExpressionStatement(self, ctx:CSharpLexerParser.ExpressionStatementContext):
pass
# Enter a parse tree produced by CSharpLexerParser#expressionList.
def enterExpressionList(self, ctx:CSharpLexerParser.ExpressionListContext):
pass
# Exit a parse tree produced by CSharpLexerParser#expressionList.
def exitExpressionList(self, ctx:CSharpLexerParser.ExpressionListContext):
pass
# Enter a parse tree produced by CSharpLexerParser#compilationUnit.
def enterCompilationUnit(self, ctx:CSharpLexerParser.CompilationUnitContext):
pass
# Exit a parse tree produced by CSharpLexerParser#compilationUnit.
def exitCompilationUnit(self, ctx:CSharpLexerParser.CompilationUnitContext):
pass
# Enter a parse tree produced by CSharpLexerParser#classDeclaration.
def enterClassDeclaration(self, ctx:CSharpLexerParser.ClassDeclarationContext):
pass
# Exit a parse tree produced by CSharpLexerParser#classDeclaration.
def exitClassDeclaration(self, ctx:CSharpLexerParser.ClassDeclarationContext):
pass
# Enter a parse tree produced by CSharpLexerParser#classBase.
def enterClassBase(self, ctx:CSharpLexerParser.ClassBaseContext):
pass
# Exit a parse tree produced by CSharpLexerParser#classBase.
def exitClassBase(self, ctx:CSharpLexerParser.ClassBaseContext):
pass
# Enter a parse tree produced by CSharpLexerParser#classBody.
def enterClassBody(self, ctx:CSharpLexerParser.ClassBodyContext):
pass
# Exit a parse tree produced by CSharpLexerParser#classBody.
def exitClassBody(self, ctx:CSharpLexerParser.ClassBodyContext):
pass
# Enter a parse tree produced by CSharpLexerParser#classMemberDeclaration.
def enterClassMemberDeclaration(self, ctx:CSharpLexerParser.ClassMemberDeclarationContext):
pass
# Exit a parse tree produced by CSharpLexerParser#classMemberDeclaration.
def exitClassMemberDeclaration(self, ctx:CSharpLexerParser.ClassMemberDeclarationContext):
pass
# Enter a parse tree produced by CSharpLexerParser#methodDeclaration.
def enterMethodDeclaration(self, ctx:CSharpLexerParser.MethodDeclarationContext):
pass
# Exit a parse tree produced by CSharpLexerParser#methodDeclaration.
def exitMethodDeclaration(self, ctx:CSharpLexerParser.MethodDeclarationContext):
pass
# Enter a parse tree produced by CSharpLexerParser#returnType.
def enterReturnType(self, ctx:CSharpLexerParser.ReturnTypeContext):
pass
# Exit a parse tree produced by CSharpLexerParser#returnType.
def exitReturnType(self, ctx:CSharpLexerParser.ReturnTypeContext):
pass
# Enter a parse tree produced by CSharpLexerParser#formalParameterList.
def enterFormalParameterList(self, ctx:CSharpLexerParser.FormalParameterListContext):
pass
# Exit a parse tree produced by CSharpLexerParser#formalParameterList.
def exitFormalParameterList(self, ctx:CSharpLexerParser.FormalParameterListContext):
pass
# Enter a parse tree produced by CSharpLexerParser#fixedParameters.
def enterFixedParameters(self, ctx:CSharpLexerParser.FixedParametersContext):
pass
# Exit a parse tree produced by CSharpLexerParser#fixedParameters.
def exitFixedParameters(self, ctx:CSharpLexerParser.FixedParametersContext):
pass
# Enter a parse tree produced by CSharpLexerParser#fixedParameter.
def enterFixedParameter(self, ctx:CSharpLexerParser.FixedParameterContext):
pass
# Exit a parse tree produced by CSharpLexerParser#fixedParameter.
def exitFixedParameter(self, ctx:CSharpLexerParser.FixedParameterContext):
pass
# Enter a parse tree produced by CSharpLexerParser#parameterModifier.
def enterParameterModifier(self, ctx:CSharpLexerParser.ParameterModifierContext):
pass
# Exit a parse tree produced by CSharpLexerParser#parameterModifier.
def exitParameterModifier(self, ctx:CSharpLexerParser.ParameterModifierContext):
pass
# Enter a parse tree produced by CSharpLexerParser#parameterArray.
def enterParameterArray(self, ctx:CSharpLexerParser.ParameterArrayContext):
pass
# Exit a parse tree produced by CSharpLexerParser#parameterArray.
def exitParameterArray(self, ctx:CSharpLexerParser.ParameterArrayContext):
pass
# Enter a parse tree produced by CSharpLexerParser#methodBody.
def enterMethodBody(self, ctx:CSharpLexerParser.MethodBodyContext):
pass
# Exit a parse tree produced by CSharpLexerParser#methodBody.
def exitMethodBody(self, ctx:CSharpLexerParser.MethodBodyContext):
pass
# Enter a parse tree produced by CSharpLexerParser#type.
def enterType(self, ctx:CSharpLexerParser.TypeContext):
pass
# Exit a parse tree produced by CSharpLexerParser#type.
def exitType(self, ctx:CSharpLexerParser.TypeContext):
pass
# Enter a parse tree produced by CSharpLexerParser#attributes.
def enterAttributes(self, ctx:CSharpLexerParser.AttributesContext):
pass
# Exit a parse tree produced by CSharpLexerParser#attributes.
def exitAttributes(self, ctx:CSharpLexerParser.AttributesContext):
pass
# Enter a parse tree produced by CSharpLexerParser#attributeSection.
def enterAttributeSection(self, ctx:CSharpLexerParser.AttributeSectionContext):
pass
# Exit a parse tree produced by CSharpLexerParser#attributeSection.
def exitAttributeSection(self, ctx:CSharpLexerParser.AttributeSectionContext):
pass
# Enter a parse tree produced by CSharpLexerParser#attributeList.
def enterAttributeList(self, ctx:CSharpLexerParser.AttributeListContext):
pass
# Exit a parse tree produced by CSharpLexerParser#attributeList.
def exitAttributeList(self, ctx:CSharpLexerParser.AttributeListContext):
pass
# Enter a parse tree produced by CSharpLexerParser#attribute.
def enterAttribute(self, ctx:CSharpLexerParser.AttributeContext):
pass
# Exit a parse tree produced by CSharpLexerParser#attribute.
def exitAttribute(self, ctx:CSharpLexerParser.AttributeContext):
pass
# Enter a parse tree produced by CSharpLexerParser#modifiers.
def enterModifiers(self, ctx:CSharpLexerParser.ModifiersContext):
pass
# Exit a parse tree produced by CSharpLexerParser#modifiers.
def exitModifiers(self, ctx:CSharpLexerParser.ModifiersContext):
pass
# Enter a parse tree produced by CSharpLexerParser#modifier.
def enterModifier(self, ctx:CSharpLexerParser.ModifierContext):
pass
# Exit a parse tree produced by CSharpLexerParser#modifier.
def exitModifier(self, ctx:CSharpLexerParser.ModifierContext):
pass
# Enter a parse tree produced by CSharpLexerParser#typeParameters.
def enterTypeParameters(self, ctx:CSharpLexerParser.TypeParametersContext):
pass
# Exit a parse tree produced by CSharpLexerParser#typeParameters.
def exitTypeParameters(self, ctx:CSharpLexerParser.TypeParametersContext):
pass
# Enter a parse tree produced by CSharpLexerParser#null_literal.
def enterNull_literal(self, ctx:CSharpLexerParser.Null_literalContext):
pass
# Exit a parse tree produced by CSharpLexerParser#null_literal.
def exitNull_literal(self, ctx:CSharpLexerParser.Null_literalContext):
pass
# Enter a parse tree produced by CSharpLexerParser#boolean_literal.
def enterBoolean_literal(self, ctx:CSharpLexerParser.Boolean_literalContext):
pass
# Exit a parse tree produced by CSharpLexerParser#boolean_literal.
def exitBoolean_literal(self, ctx:CSharpLexerParser.Boolean_literalContext):
pass
del CSharpLexerParser