-
Notifications
You must be signed in to change notification settings - Fork 0
/
FeatherListener.java
639 lines (638 loc) · 23.6 KB
/
FeatherListener.java
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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
// Generated from Feather.g4 by ANTLR 4.5.3
import org.antlr.v4.runtime.tree.ParseTreeListener;
/**
* This interface defines a complete listener for a parse tree produced by
* {@link FeatherParser}.
*/
public interface FeatherListener extends ParseTreeListener {
/**
* Enter a parse tree produced by {@link FeatherParser#s}.
* @param ctx the parse tree
*/
void enterS(FeatherParser.SContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#s}.
* @param ctx the parse tree
*/
void exitS(FeatherParser.SContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#declarations}.
* @param ctx the parse tree
*/
void enterDeclarations(FeatherParser.DeclarationsContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#declarations}.
* @param ctx the parse tree
*/
void exitDeclarations(FeatherParser.DeclarationsContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#featureDeclarations}.
* @param ctx the parse tree
*/
void enterFeatureDeclarations(FeatherParser.FeatureDeclarationsContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#featureDeclarations}.
* @param ctx the parse tree
*/
void exitFeatureDeclarations(FeatherParser.FeatureDeclarationsContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#rootFeature}.
* @param ctx the parse tree
*/
void enterRootFeature(FeatherParser.RootFeatureContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#rootFeature}.
* @param ctx the parse tree
*/
void exitRootFeature(FeatherParser.RootFeatureContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#featureDec}.
* @param ctx the parse tree
*/
void enterFeatureDec(FeatherParser.FeatureDecContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#featureDec}.
* @param ctx the parse tree
*/
void exitFeatureDec(FeatherParser.FeatureDecContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#decompRelDeclaration}.
* @param ctx the parse tree
*/
void enterDecompRelDeclaration(FeatherParser.DecompRelDeclarationContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#decompRelDeclaration}.
* @param ctx the parse tree
*/
void exitDecompRelDeclaration(FeatherParser.DecompRelDeclarationContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#attributeDeclarations}.
* @param ctx the parse tree
*/
void enterAttributeDeclarations(FeatherParser.AttributeDeclarationsContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#attributeDeclarations}.
* @param ctx the parse tree
*/
void exitAttributeDeclarations(FeatherParser.AttributeDeclarationsContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#attributeDec}.
* @param ctx the parse tree
*/
void enterAttributeDec(FeatherParser.AttributeDecContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#attributeDec}.
* @param ctx the parse tree
*/
void exitAttributeDec(FeatherParser.AttributeDecContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#assignedValue}.
* @param ctx the parse tree
*/
void enterAssignedValue(FeatherParser.AssignedValueContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#assignedValue}.
* @param ctx the parse tree
*/
void exitAssignedValue(FeatherParser.AssignedValueContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#crossTreeConstraintDeclarations}.
* @param ctx the parse tree
*/
void enterCrossTreeConstraintDeclarations(FeatherParser.CrossTreeConstraintDeclarationsContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#crossTreeConstraintDeclarations}.
* @param ctx the parse tree
*/
void exitCrossTreeConstraintDeclarations(FeatherParser.CrossTreeConstraintDeclarationsContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#crossTreeConstraintDec}.
* @param ctx the parse tree
*/
void enterCrossTreeConstraintDec(FeatherParser.CrossTreeConstraintDecContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#crossTreeConstraintDec}.
* @param ctx the parse tree
*/
void exitCrossTreeConstraintDec(FeatherParser.CrossTreeConstraintDecContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#commands}.
* @param ctx the parse tree
*/
void enterCommands(FeatherParser.CommandsContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#commands}.
* @param ctx the parse tree
*/
void exitCommands(FeatherParser.CommandsContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#aCommand}.
* @param ctx the parse tree
*/
void enterACommand(FeatherParser.ACommandContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#aCommand}.
* @param ctx the parse tree
*/
void exitACommand(FeatherParser.ACommandContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#addFeature}.
* @param ctx the parse tree
*/
void enterAddFeature(FeatherParser.AddFeatureContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#addFeature}.
* @param ctx the parse tree
*/
void exitAddFeature(FeatherParser.AddFeatureContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#updateFeature}.
* @param ctx the parse tree
*/
void enterUpdateFeature(FeatherParser.UpdateFeatureContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#updateFeature}.
* @param ctx the parse tree
*/
void exitUpdateFeature(FeatherParser.UpdateFeatureContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#updateMultipleFeatures}.
* @param ctx the parse tree
*/
void enterUpdateMultipleFeatures(FeatherParser.UpdateMultipleFeaturesContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#updateMultipleFeatures}.
* @param ctx the parse tree
*/
void exitUpdateMultipleFeatures(FeatherParser.UpdateMultipleFeaturesContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#removeFeature}.
* @param ctx the parse tree
*/
void enterRemoveFeature(FeatherParser.RemoveFeatureContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#removeFeature}.
* @param ctx the parse tree
*/
void exitRemoveFeature(FeatherParser.RemoveFeatureContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#removeMultipleFeatures}.
* @param ctx the parse tree
*/
void enterRemoveMultipleFeatures(FeatherParser.RemoveMultipleFeaturesContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#removeMultipleFeatures}.
* @param ctx the parse tree
*/
void exitRemoveMultipleFeatures(FeatherParser.RemoveMultipleFeaturesContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#addConstraint}.
* @param ctx the parse tree
*/
void enterAddConstraint(FeatherParser.AddConstraintContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#addConstraint}.
* @param ctx the parse tree
*/
void exitAddConstraint(FeatherParser.AddConstraintContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#updateConstraint}.
* @param ctx the parse tree
*/
void enterUpdateConstraint(FeatherParser.UpdateConstraintContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#updateConstraint}.
* @param ctx the parse tree
*/
void exitUpdateConstraint(FeatherParser.UpdateConstraintContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#updateMultipleConstraints}.
* @param ctx the parse tree
*/
void enterUpdateMultipleConstraints(FeatherParser.UpdateMultipleConstraintsContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#updateMultipleConstraints}.
* @param ctx the parse tree
*/
void exitUpdateMultipleConstraints(FeatherParser.UpdateMultipleConstraintsContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#removeConstraint}.
* @param ctx the parse tree
*/
void enterRemoveConstraint(FeatherParser.RemoveConstraintContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#removeConstraint}.
* @param ctx the parse tree
*/
void exitRemoveConstraint(FeatherParser.RemoveConstraintContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#removeMultipleConstraints}.
* @param ctx the parse tree
*/
void enterRemoveMultipleConstraints(FeatherParser.RemoveMultipleConstraintsContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#removeMultipleConstraints}.
* @param ctx the parse tree
*/
void exitRemoveMultipleConstraints(FeatherParser.RemoveMultipleConstraintsContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#featureDescription}.
* @param ctx the parse tree
*/
void enterFeatureDescription(FeatherParser.FeatureDescriptionContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#featureDescription}.
* @param ctx the parse tree
*/
void exitFeatureDescription(FeatherParser.FeatureDescriptionContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#featureNameDescription}.
* @param ctx the parse tree
*/
void enterFeatureNameDescription(FeatherParser.FeatureNameDescriptionContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#featureNameDescription}.
* @param ctx the parse tree
*/
void exitFeatureNameDescription(FeatherParser.FeatureNameDescriptionContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#constraintDescription}.
* @param ctx the parse tree
*/
void enterConstraintDescription(FeatherParser.ConstraintDescriptionContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#constraintDescription}.
* @param ctx the parse tree
*/
void exitConstraintDescription(FeatherParser.ConstraintDescriptionContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#whereClause}.
* @param ctx the parse tree
*/
void enterWhereClause(FeatherParser.WhereClauseContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#whereClause}.
* @param ctx the parse tree
*/
void exitWhereClause(FeatherParser.WhereClauseContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#attributeList}.
* @param ctx the parse tree
*/
void enterAttributeList(FeatherParser.AttributeListContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#attributeList}.
* @param ctx the parse tree
*/
void exitAttributeList(FeatherParser.AttributeListContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#structuralAttributeAssignments}.
* @param ctx the parse tree
*/
void enterStructuralAttributeAssignments(FeatherParser.StructuralAttributeAssignmentsContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#structuralAttributeAssignments}.
* @param ctx the parse tree
*/
void exitStructuralAttributeAssignments(FeatherParser.StructuralAttributeAssignmentsContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#settingLocation}.
* @param ctx the parse tree
*/
void enterSettingLocation(FeatherParser.SettingLocationContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#settingLocation}.
* @param ctx the parse tree
*/
void exitSettingLocation(FeatherParser.SettingLocationContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#settingDecomposition}.
* @param ctx the parse tree
*/
void enterSettingDecomposition(FeatherParser.SettingDecompositionContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#settingDecomposition}.
* @param ctx the parse tree
*/
void exitSettingDecomposition(FeatherParser.SettingDecompositionContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#attributeAssignments}.
* @param ctx the parse tree
*/
void enterAttributeAssignments(FeatherParser.AttributeAssignmentsContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#attributeAssignments}.
* @param ctx the parse tree
*/
void exitAttributeAssignments(FeatherParser.AttributeAssignmentsContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#attrAssign}.
* @param ctx the parse tree
*/
void enterAttrAssign(FeatherParser.AttrAssignContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#attrAssign}.
* @param ctx the parse tree
*/
void exitAttrAssign(FeatherParser.AttrAssignContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#attributeValue}.
* @param ctx the parse tree
*/
void enterAttributeValue(FeatherParser.AttributeValueContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#attributeValue}.
* @param ctx the parse tree
*/
void exitAttributeValue(FeatherParser.AttributeValueContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#featureUpdates}.
* @param ctx the parse tree
*/
void enterFeatureUpdates(FeatherParser.FeatureUpdatesContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#featureUpdates}.
* @param ctx the parse tree
*/
void exitFeatureUpdates(FeatherParser.FeatureUpdatesContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#featUpdate}.
* @param ctx the parse tree
*/
void enterFeatUpdate(FeatherParser.FeatUpdateContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#featUpdate}.
* @param ctx the parse tree
*/
void exitFeatUpdate(FeatherParser.FeatUpdateContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#settingName}.
* @param ctx the parse tree
*/
void enterSettingName(FeatherParser.SettingNameContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#settingName}.
* @param ctx the parse tree
*/
void exitSettingName(FeatherParser.SettingNameContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#limitedFeatureUpdates}.
* @param ctx the parse tree
*/
void enterLimitedFeatureUpdates(FeatherParser.LimitedFeatureUpdatesContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#limitedFeatureUpdates}.
* @param ctx the parse tree
*/
void exitLimitedFeatureUpdates(FeatherParser.LimitedFeatureUpdatesContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#limitedFeatUpdate}.
* @param ctx the parse tree
*/
void enterLimitedFeatUpdate(FeatherParser.LimitedFeatUpdateContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#limitedFeatUpdate}.
* @param ctx the parse tree
*/
void exitLimitedFeatUpdate(FeatherParser.LimitedFeatUpdateContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#constraintUpdates}.
* @param ctx the parse tree
*/
void enterConstraintUpdates(FeatherParser.ConstraintUpdatesContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#constraintUpdates}.
* @param ctx the parse tree
*/
void exitConstraintUpdates(FeatherParser.ConstraintUpdatesContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#constUpdate}.
* @param ctx the parse tree
*/
void enterConstUpdate(FeatherParser.ConstUpdateContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#constUpdate}.
* @param ctx the parse tree
*/
void exitConstUpdate(FeatherParser.ConstUpdateContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#limitedConstraintUpdates}.
* @param ctx the parse tree
*/
void enterLimitedConstraintUpdates(FeatherParser.LimitedConstraintUpdatesContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#limitedConstraintUpdates}.
* @param ctx the parse tree
*/
void exitLimitedConstraintUpdates(FeatherParser.LimitedConstraintUpdatesContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#decompRelValue}.
* @param ctx the parse tree
*/
void enterDecompRelValue(FeatherParser.DecompRelValueContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#decompRelValue}.
* @param ctx the parse tree
*/
void exitDecompRelValue(FeatherParser.DecompRelValueContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#basicCrossTreeConstraint}.
* @param ctx the parse tree
*/
void enterBasicCrossTreeConstraint(FeatherParser.BasicCrossTreeConstraintContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#basicCrossTreeConstraint}.
* @param ctx the parse tree
*/
void exitBasicCrossTreeConstraint(FeatherParser.BasicCrossTreeConstraintContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#arithmeticExpression}.
* @param ctx the parse tree
*/
void enterArithmeticExpression(FeatherParser.ArithmeticExpressionContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#arithmeticExpression}.
* @param ctx the parse tree
*/
void exitArithmeticExpression(FeatherParser.ArithmeticExpressionContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#arithmeticOperand}.
* @param ctx the parse tree
*/
void enterArithmeticOperand(FeatherParser.ArithmeticOperandContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#arithmeticOperand}.
* @param ctx the parse tree
*/
void exitArithmeticOperand(FeatherParser.ArithmeticOperandContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#highArithOp}.
* @param ctx the parse tree
*/
void enterHighArithOp(FeatherParser.HighArithOpContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#highArithOp}.
* @param ctx the parse tree
*/
void exitHighArithOp(FeatherParser.HighArithOpContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#lowArithOp}.
* @param ctx the parse tree
*/
void enterLowArithOp(FeatherParser.LowArithOpContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#lowArithOp}.
* @param ctx the parse tree
*/
void exitLowArithOp(FeatherParser.LowArithOpContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#booleanExpression}.
* @param ctx the parse tree
*/
void enterBooleanExpression(FeatherParser.BooleanExpressionContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#booleanExpression}.
* @param ctx the parse tree
*/
void exitBooleanExpression(FeatherParser.BooleanExpressionContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#booleanOperand}.
* @param ctx the parse tree
*/
void enterBooleanOperand(FeatherParser.BooleanOperandContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#booleanOperand}.
* @param ctx the parse tree
*/
void exitBooleanOperand(FeatherParser.BooleanOperandContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#relOp}.
* @param ctx the parse tree
*/
void enterRelOp(FeatherParser.RelOpContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#relOp}.
* @param ctx the parse tree
*/
void exitRelOp(FeatherParser.RelOpContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#stringEqualityCheck}.
* @param ctx the parse tree
*/
void enterStringEqualityCheck(FeatherParser.StringEqualityCheckContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#stringEqualityCheck}.
* @param ctx the parse tree
*/
void exitStringEqualityCheck(FeatherParser.StringEqualityCheckContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#stringOperand}.
* @param ctx the parse tree
*/
void enterStringOperand(FeatherParser.StringOperandContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#stringOperand}.
* @param ctx the parse tree
*/
void exitStringOperand(FeatherParser.StringOperandContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#eqCheckOp}.
* @param ctx the parse tree
*/
void enterEqCheckOp(FeatherParser.EqCheckOpContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#eqCheckOp}.
* @param ctx the parse tree
*/
void exitEqCheckOp(FeatherParser.EqCheckOpContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#decompRelTypeCheck}.
* @param ctx the parse tree
*/
void enterDecompRelTypeCheck(FeatherParser.DecompRelTypeCheckContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#decompRelTypeCheck}.
* @param ctx the parse tree
*/
void exitDecompRelTypeCheck(FeatherParser.DecompRelTypeCheckContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#decompRelIDCheck}.
* @param ctx the parse tree
*/
void enterDecompRelIDCheck(FeatherParser.DecompRelIDCheckContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#decompRelIDCheck}.
* @param ctx the parse tree
*/
void exitDecompRelIDCheck(FeatherParser.DecompRelIDCheckContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#booleanEqualityCheck}.
* @param ctx the parse tree
*/
void enterBooleanEqualityCheck(FeatherParser.BooleanEqualityCheckContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#booleanEqualityCheck}.
* @param ctx the parse tree
*/
void exitBooleanEqualityCheck(FeatherParser.BooleanEqualityCheckContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#boolEqOperand}.
* @param ctx the parse tree
*/
void enterBoolEqOperand(FeatherParser.BoolEqOperandContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#boolEqOperand}.
* @param ctx the parse tree
*/
void exitBoolEqOperand(FeatherParser.BoolEqOperandContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#featureName}.
* @param ctx the parse tree
*/
void enterFeatureName(FeatherParser.FeatureNameContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#featureName}.
* @param ctx the parse tree
*/
void exitFeatureName(FeatherParser.FeatureNameContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#parentName}.
* @param ctx the parse tree
*/
void enterParentName(FeatherParser.ParentNameContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#parentName}.
* @param ctx the parse tree
*/
void exitParentName(FeatherParser.ParentNameContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#attributeName}.
* @param ctx the parse tree
*/
void enterAttributeName(FeatherParser.AttributeNameContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#attributeName}.
* @param ctx the parse tree
*/
void exitAttributeName(FeatherParser.AttributeNameContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#featureVar}.
* @param ctx the parse tree
*/
void enterFeatureVar(FeatherParser.FeatureVarContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#featureVar}.
* @param ctx the parse tree
*/
void exitFeatureVar(FeatherParser.FeatureVarContext ctx);
/**
* Enter a parse tree produced by {@link FeatherParser#bool_literal}.
* @param ctx the parse tree
*/
void enterBool_literal(FeatherParser.Bool_literalContext ctx);
/**
* Exit a parse tree produced by {@link FeatherParser#bool_literal}.
* @param ctx the parse tree
*/
void exitBool_literal(FeatherParser.Bool_literalContext ctx);
}