@apexdevtools/apex-parser 5.0.0-beta.2 → 5.0.0-beta.3

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 (43) hide show
  1. package/CHANGELOG.md +5 -2
  2. package/{lib → dist/src}/ApexErrorListener.d.ts +1 -1
  3. package/{lib → dist/src}/ApexErrorListener.js +8 -11
  4. package/dist/src/ApexErrorListener.js.map +1 -0
  5. package/{lib → dist/src}/ApexParserFactory.d.ts +4 -4
  6. package/{lib → dist/src}/ApexParserFactory.js +14 -23
  7. package/dist/src/ApexParserFactory.js.map +1 -0
  8. package/{lib → dist/src}/CaseInsensitiveInputStream.js +2 -6
  9. package/dist/src/CaseInsensitiveInputStream.js.map +1 -0
  10. package/{lib → dist/src}/Check.js +30 -37
  11. package/dist/src/Check.js.map +1 -0
  12. package/dist/src/antlr/ApexLexer.js +1573 -0
  13. package/{lib → dist/src}/antlr/ApexLexer.js.map +1 -1
  14. package/{lib → dist/src}/antlr/ApexParser.js +1935 -2125
  15. package/dist/src/antlr/ApexParser.js.map +1 -0
  16. package/dist/src/antlr/ApexParserListener.js +1893 -0
  17. package/dist/src/antlr/ApexParserListener.js.map +1 -0
  18. package/dist/src/antlr/ApexParserVisitor.js +1136 -0
  19. package/dist/src/antlr/ApexParserVisitor.js.map +1 -0
  20. package/dist/src/index.d.ts +9 -0
  21. package/dist/src/index.js +37 -0
  22. package/dist/src/index.js.map +1 -0
  23. package/package.json +27 -15
  24. package/patches/antlr4+4.13.2.patch +717 -0
  25. package/lib/ApexErrorListener.js.map +0 -1
  26. package/lib/ApexParserFactory.js.map +0 -1
  27. package/lib/CaseInsensitiveInputStream.js.map +0 -1
  28. package/lib/Check.js.map +0 -1
  29. package/lib/antlr/ApexLexer.js +0 -1575
  30. package/lib/antlr/ApexParser.js.map +0 -1
  31. package/lib/antlr/ApexParserListener.js +0 -12
  32. package/lib/antlr/ApexParserListener.js.map +0 -1
  33. package/lib/antlr/ApexParserVisitor.js +0 -15
  34. package/lib/antlr/ApexParserVisitor.js.map +0 -1
  35. package/lib/index.d.ts +0 -9
  36. package/lib/index.js +0 -58
  37. package/lib/index.js.map +0 -1
  38. /package/{lib → dist/src}/CaseInsensitiveInputStream.d.ts +0 -0
  39. /package/{lib → dist/src}/Check.d.ts +0 -0
  40. /package/{lib → dist/src}/antlr/ApexLexer.d.ts +0 -0
  41. /package/{lib → dist/src}/antlr/ApexParser.d.ts +0 -0
  42. /package/{lib → dist/src}/antlr/ApexParserListener.d.ts +0 -0
  43. /package/{lib → dist/src}/antlr/ApexParserVisitor.d.ts +0 -0
@@ -0,0 +1,1893 @@
1
+ // Generated from ApexParser.g4 by ANTLR 4.13.2
2
+ import { ParseTreeListener } from "antlr4";
3
+ /**
4
+ * This interface defines a complete listener for a parse tree produced by
5
+ * `ApexParser`.
6
+ */
7
+ export default class ApexParserListener extends ParseTreeListener {
8
+ /**
9
+ * Enter a parse tree produced by `ApexParser.triggerUnit`.
10
+ * @param ctx the parse tree
11
+ */
12
+ enterTriggerUnit;
13
+ /**
14
+ * Exit a parse tree produced by `ApexParser.triggerUnit`.
15
+ * @param ctx the parse tree
16
+ */
17
+ exitTriggerUnit;
18
+ /**
19
+ * Enter a parse tree produced by `ApexParser.triggerCase`.
20
+ * @param ctx the parse tree
21
+ */
22
+ enterTriggerCase;
23
+ /**
24
+ * Exit a parse tree produced by `ApexParser.triggerCase`.
25
+ * @param ctx the parse tree
26
+ */
27
+ exitTriggerCase;
28
+ /**
29
+ * Enter a parse tree produced by `ApexParser.triggerBlock`.
30
+ * @param ctx the parse tree
31
+ */
32
+ enterTriggerBlock;
33
+ /**
34
+ * Exit a parse tree produced by `ApexParser.triggerBlock`.
35
+ * @param ctx the parse tree
36
+ */
37
+ exitTriggerBlock;
38
+ /**
39
+ * Enter a parse tree produced by `ApexParser.triggerBlockMember`.
40
+ * @param ctx the parse tree
41
+ */
42
+ enterTriggerBlockMember;
43
+ /**
44
+ * Exit a parse tree produced by `ApexParser.triggerBlockMember`.
45
+ * @param ctx the parse tree
46
+ */
47
+ exitTriggerBlockMember;
48
+ /**
49
+ * Enter a parse tree produced by `ApexParser.anonymousUnit`.
50
+ * @param ctx the parse tree
51
+ */
52
+ enterAnonymousUnit;
53
+ /**
54
+ * Exit a parse tree produced by `ApexParser.anonymousUnit`.
55
+ * @param ctx the parse tree
56
+ */
57
+ exitAnonymousUnit;
58
+ /**
59
+ * Enter a parse tree produced by `ApexParser.anonymousBlock`.
60
+ * @param ctx the parse tree
61
+ */
62
+ enterAnonymousBlock;
63
+ /**
64
+ * Exit a parse tree produced by `ApexParser.anonymousBlock`.
65
+ * @param ctx the parse tree
66
+ */
67
+ exitAnonymousBlock;
68
+ /**
69
+ * Enter a parse tree produced by `ApexParser.anonymousBlockMember`.
70
+ * @param ctx the parse tree
71
+ */
72
+ enterAnonymousBlockMember;
73
+ /**
74
+ * Exit a parse tree produced by `ApexParser.anonymousBlockMember`.
75
+ * @param ctx the parse tree
76
+ */
77
+ exitAnonymousBlockMember;
78
+ /**
79
+ * Enter a parse tree produced by `ApexParser.compilationUnit`.
80
+ * @param ctx the parse tree
81
+ */
82
+ enterCompilationUnit;
83
+ /**
84
+ * Exit a parse tree produced by `ApexParser.compilationUnit`.
85
+ * @param ctx the parse tree
86
+ */
87
+ exitCompilationUnit;
88
+ /**
89
+ * Enter a parse tree produced by `ApexParser.typeDeclaration`.
90
+ * @param ctx the parse tree
91
+ */
92
+ enterTypeDeclaration;
93
+ /**
94
+ * Exit a parse tree produced by `ApexParser.typeDeclaration`.
95
+ * @param ctx the parse tree
96
+ */
97
+ exitTypeDeclaration;
98
+ /**
99
+ * Enter a parse tree produced by `ApexParser.classDeclaration`.
100
+ * @param ctx the parse tree
101
+ */
102
+ enterClassDeclaration;
103
+ /**
104
+ * Exit a parse tree produced by `ApexParser.classDeclaration`.
105
+ * @param ctx the parse tree
106
+ */
107
+ exitClassDeclaration;
108
+ /**
109
+ * Enter a parse tree produced by `ApexParser.enumDeclaration`.
110
+ * @param ctx the parse tree
111
+ */
112
+ enterEnumDeclaration;
113
+ /**
114
+ * Exit a parse tree produced by `ApexParser.enumDeclaration`.
115
+ * @param ctx the parse tree
116
+ */
117
+ exitEnumDeclaration;
118
+ /**
119
+ * Enter a parse tree produced by `ApexParser.enumConstants`.
120
+ * @param ctx the parse tree
121
+ */
122
+ enterEnumConstants;
123
+ /**
124
+ * Exit a parse tree produced by `ApexParser.enumConstants`.
125
+ * @param ctx the parse tree
126
+ */
127
+ exitEnumConstants;
128
+ /**
129
+ * Enter a parse tree produced by `ApexParser.interfaceDeclaration`.
130
+ * @param ctx the parse tree
131
+ */
132
+ enterInterfaceDeclaration;
133
+ /**
134
+ * Exit a parse tree produced by `ApexParser.interfaceDeclaration`.
135
+ * @param ctx the parse tree
136
+ */
137
+ exitInterfaceDeclaration;
138
+ /**
139
+ * Enter a parse tree produced by `ApexParser.typeList`.
140
+ * @param ctx the parse tree
141
+ */
142
+ enterTypeList;
143
+ /**
144
+ * Exit a parse tree produced by `ApexParser.typeList`.
145
+ * @param ctx the parse tree
146
+ */
147
+ exitTypeList;
148
+ /**
149
+ * Enter a parse tree produced by `ApexParser.classBody`.
150
+ * @param ctx the parse tree
151
+ */
152
+ enterClassBody;
153
+ /**
154
+ * Exit a parse tree produced by `ApexParser.classBody`.
155
+ * @param ctx the parse tree
156
+ */
157
+ exitClassBody;
158
+ /**
159
+ * Enter a parse tree produced by `ApexParser.interfaceBody`.
160
+ * @param ctx the parse tree
161
+ */
162
+ enterInterfaceBody;
163
+ /**
164
+ * Exit a parse tree produced by `ApexParser.interfaceBody`.
165
+ * @param ctx the parse tree
166
+ */
167
+ exitInterfaceBody;
168
+ /**
169
+ * Enter a parse tree produced by `ApexParser.classBodyDeclaration`.
170
+ * @param ctx the parse tree
171
+ */
172
+ enterClassBodyDeclaration;
173
+ /**
174
+ * Exit a parse tree produced by `ApexParser.classBodyDeclaration`.
175
+ * @param ctx the parse tree
176
+ */
177
+ exitClassBodyDeclaration;
178
+ /**
179
+ * Enter a parse tree produced by `ApexParser.modifier`.
180
+ * @param ctx the parse tree
181
+ */
182
+ enterModifier;
183
+ /**
184
+ * Exit a parse tree produced by `ApexParser.modifier`.
185
+ * @param ctx the parse tree
186
+ */
187
+ exitModifier;
188
+ /**
189
+ * Enter a parse tree produced by `ApexParser.memberDeclaration`.
190
+ * @param ctx the parse tree
191
+ */
192
+ enterMemberDeclaration;
193
+ /**
194
+ * Exit a parse tree produced by `ApexParser.memberDeclaration`.
195
+ * @param ctx the parse tree
196
+ */
197
+ exitMemberDeclaration;
198
+ /**
199
+ * Enter a parse tree produced by `ApexParser.triggerMemberDeclaration`.
200
+ * @param ctx the parse tree
201
+ */
202
+ enterTriggerMemberDeclaration;
203
+ /**
204
+ * Exit a parse tree produced by `ApexParser.triggerMemberDeclaration`.
205
+ * @param ctx the parse tree
206
+ */
207
+ exitTriggerMemberDeclaration;
208
+ /**
209
+ * Enter a parse tree produced by `ApexParser.anonymousMemberDeclaration`.
210
+ * @param ctx the parse tree
211
+ */
212
+ enterAnonymousMemberDeclaration;
213
+ /**
214
+ * Exit a parse tree produced by `ApexParser.anonymousMemberDeclaration`.
215
+ * @param ctx the parse tree
216
+ */
217
+ exitAnonymousMemberDeclaration;
218
+ /**
219
+ * Enter a parse tree produced by `ApexParser.methodDeclaration`.
220
+ * @param ctx the parse tree
221
+ */
222
+ enterMethodDeclaration;
223
+ /**
224
+ * Exit a parse tree produced by `ApexParser.methodDeclaration`.
225
+ * @param ctx the parse tree
226
+ */
227
+ exitMethodDeclaration;
228
+ /**
229
+ * Enter a parse tree produced by `ApexParser.constructorDeclaration`.
230
+ * @param ctx the parse tree
231
+ */
232
+ enterConstructorDeclaration;
233
+ /**
234
+ * Exit a parse tree produced by `ApexParser.constructorDeclaration`.
235
+ * @param ctx the parse tree
236
+ */
237
+ exitConstructorDeclaration;
238
+ /**
239
+ * Enter a parse tree produced by `ApexParser.fieldDeclaration`.
240
+ * @param ctx the parse tree
241
+ */
242
+ enterFieldDeclaration;
243
+ /**
244
+ * Exit a parse tree produced by `ApexParser.fieldDeclaration`.
245
+ * @param ctx the parse tree
246
+ */
247
+ exitFieldDeclaration;
248
+ /**
249
+ * Enter a parse tree produced by `ApexParser.propertyDeclaration`.
250
+ * @param ctx the parse tree
251
+ */
252
+ enterPropertyDeclaration;
253
+ /**
254
+ * Exit a parse tree produced by `ApexParser.propertyDeclaration`.
255
+ * @param ctx the parse tree
256
+ */
257
+ exitPropertyDeclaration;
258
+ /**
259
+ * Enter a parse tree produced by `ApexParser.interfaceMethodDeclaration`.
260
+ * @param ctx the parse tree
261
+ */
262
+ enterInterfaceMethodDeclaration;
263
+ /**
264
+ * Exit a parse tree produced by `ApexParser.interfaceMethodDeclaration`.
265
+ * @param ctx the parse tree
266
+ */
267
+ exitInterfaceMethodDeclaration;
268
+ /**
269
+ * Enter a parse tree produced by `ApexParser.variableDeclarators`.
270
+ * @param ctx the parse tree
271
+ */
272
+ enterVariableDeclarators;
273
+ /**
274
+ * Exit a parse tree produced by `ApexParser.variableDeclarators`.
275
+ * @param ctx the parse tree
276
+ */
277
+ exitVariableDeclarators;
278
+ /**
279
+ * Enter a parse tree produced by `ApexParser.variableDeclarator`.
280
+ * @param ctx the parse tree
281
+ */
282
+ enterVariableDeclarator;
283
+ /**
284
+ * Exit a parse tree produced by `ApexParser.variableDeclarator`.
285
+ * @param ctx the parse tree
286
+ */
287
+ exitVariableDeclarator;
288
+ /**
289
+ * Enter a parse tree produced by `ApexParser.arrayInitializer`.
290
+ * @param ctx the parse tree
291
+ */
292
+ enterArrayInitializer;
293
+ /**
294
+ * Exit a parse tree produced by `ApexParser.arrayInitializer`.
295
+ * @param ctx the parse tree
296
+ */
297
+ exitArrayInitializer;
298
+ /**
299
+ * Enter a parse tree produced by `ApexParser.typeRef`.
300
+ * @param ctx the parse tree
301
+ */
302
+ enterTypeRef;
303
+ /**
304
+ * Exit a parse tree produced by `ApexParser.typeRef`.
305
+ * @param ctx the parse tree
306
+ */
307
+ exitTypeRef;
308
+ /**
309
+ * Enter a parse tree produced by `ApexParser.arraySubscripts`.
310
+ * @param ctx the parse tree
311
+ */
312
+ enterArraySubscripts;
313
+ /**
314
+ * Exit a parse tree produced by `ApexParser.arraySubscripts`.
315
+ * @param ctx the parse tree
316
+ */
317
+ exitArraySubscripts;
318
+ /**
319
+ * Enter a parse tree produced by `ApexParser.typeName`.
320
+ * @param ctx the parse tree
321
+ */
322
+ enterTypeName;
323
+ /**
324
+ * Exit a parse tree produced by `ApexParser.typeName`.
325
+ * @param ctx the parse tree
326
+ */
327
+ exitTypeName;
328
+ /**
329
+ * Enter a parse tree produced by `ApexParser.typeArguments`.
330
+ * @param ctx the parse tree
331
+ */
332
+ enterTypeArguments;
333
+ /**
334
+ * Exit a parse tree produced by `ApexParser.typeArguments`.
335
+ * @param ctx the parse tree
336
+ */
337
+ exitTypeArguments;
338
+ /**
339
+ * Enter a parse tree produced by `ApexParser.formalParameters`.
340
+ * @param ctx the parse tree
341
+ */
342
+ enterFormalParameters;
343
+ /**
344
+ * Exit a parse tree produced by `ApexParser.formalParameters`.
345
+ * @param ctx the parse tree
346
+ */
347
+ exitFormalParameters;
348
+ /**
349
+ * Enter a parse tree produced by `ApexParser.formalParameterList`.
350
+ * @param ctx the parse tree
351
+ */
352
+ enterFormalParameterList;
353
+ /**
354
+ * Exit a parse tree produced by `ApexParser.formalParameterList`.
355
+ * @param ctx the parse tree
356
+ */
357
+ exitFormalParameterList;
358
+ /**
359
+ * Enter a parse tree produced by `ApexParser.formalParameter`.
360
+ * @param ctx the parse tree
361
+ */
362
+ enterFormalParameter;
363
+ /**
364
+ * Exit a parse tree produced by `ApexParser.formalParameter`.
365
+ * @param ctx the parse tree
366
+ */
367
+ exitFormalParameter;
368
+ /**
369
+ * Enter a parse tree produced by `ApexParser.qualifiedName`.
370
+ * @param ctx the parse tree
371
+ */
372
+ enterQualifiedName;
373
+ /**
374
+ * Exit a parse tree produced by `ApexParser.qualifiedName`.
375
+ * @param ctx the parse tree
376
+ */
377
+ exitQualifiedName;
378
+ /**
379
+ * Enter a parse tree produced by `ApexParser.literal`.
380
+ * @param ctx the parse tree
381
+ */
382
+ enterLiteral;
383
+ /**
384
+ * Exit a parse tree produced by `ApexParser.literal`.
385
+ * @param ctx the parse tree
386
+ */
387
+ exitLiteral;
388
+ /**
389
+ * Enter a parse tree produced by `ApexParser.annotation`.
390
+ * @param ctx the parse tree
391
+ */
392
+ enterAnnotation;
393
+ /**
394
+ * Exit a parse tree produced by `ApexParser.annotation`.
395
+ * @param ctx the parse tree
396
+ */
397
+ exitAnnotation;
398
+ /**
399
+ * Enter a parse tree produced by `ApexParser.elementValuePairs`.
400
+ * @param ctx the parse tree
401
+ */
402
+ enterElementValuePairs;
403
+ /**
404
+ * Exit a parse tree produced by `ApexParser.elementValuePairs`.
405
+ * @param ctx the parse tree
406
+ */
407
+ exitElementValuePairs;
408
+ /**
409
+ * Enter a parse tree produced by `ApexParser.elementValuePair`.
410
+ * @param ctx the parse tree
411
+ */
412
+ enterElementValuePair;
413
+ /**
414
+ * Exit a parse tree produced by `ApexParser.elementValuePair`.
415
+ * @param ctx the parse tree
416
+ */
417
+ exitElementValuePair;
418
+ /**
419
+ * Enter a parse tree produced by `ApexParser.elementValue`.
420
+ * @param ctx the parse tree
421
+ */
422
+ enterElementValue;
423
+ /**
424
+ * Exit a parse tree produced by `ApexParser.elementValue`.
425
+ * @param ctx the parse tree
426
+ */
427
+ exitElementValue;
428
+ /**
429
+ * Enter a parse tree produced by `ApexParser.elementValueArrayInitializer`.
430
+ * @param ctx the parse tree
431
+ */
432
+ enterElementValueArrayInitializer;
433
+ /**
434
+ * Exit a parse tree produced by `ApexParser.elementValueArrayInitializer`.
435
+ * @param ctx the parse tree
436
+ */
437
+ exitElementValueArrayInitializer;
438
+ /**
439
+ * Enter a parse tree produced by `ApexParser.block`.
440
+ * @param ctx the parse tree
441
+ */
442
+ enterBlock;
443
+ /**
444
+ * Exit a parse tree produced by `ApexParser.block`.
445
+ * @param ctx the parse tree
446
+ */
447
+ exitBlock;
448
+ /**
449
+ * Enter a parse tree produced by `ApexParser.localVariableDeclarationStatement`.
450
+ * @param ctx the parse tree
451
+ */
452
+ enterLocalVariableDeclarationStatement;
453
+ /**
454
+ * Exit a parse tree produced by `ApexParser.localVariableDeclarationStatement`.
455
+ * @param ctx the parse tree
456
+ */
457
+ exitLocalVariableDeclarationStatement;
458
+ /**
459
+ * Enter a parse tree produced by `ApexParser.localVariableDeclaration`.
460
+ * @param ctx the parse tree
461
+ */
462
+ enterLocalVariableDeclaration;
463
+ /**
464
+ * Exit a parse tree produced by `ApexParser.localVariableDeclaration`.
465
+ * @param ctx the parse tree
466
+ */
467
+ exitLocalVariableDeclaration;
468
+ /**
469
+ * Enter a parse tree produced by `ApexParser.statement`.
470
+ * @param ctx the parse tree
471
+ */
472
+ enterStatement;
473
+ /**
474
+ * Exit a parse tree produced by `ApexParser.statement`.
475
+ * @param ctx the parse tree
476
+ */
477
+ exitStatement;
478
+ /**
479
+ * Enter a parse tree produced by `ApexParser.ifStatement`.
480
+ * @param ctx the parse tree
481
+ */
482
+ enterIfStatement;
483
+ /**
484
+ * Exit a parse tree produced by `ApexParser.ifStatement`.
485
+ * @param ctx the parse tree
486
+ */
487
+ exitIfStatement;
488
+ /**
489
+ * Enter a parse tree produced by `ApexParser.switchStatement`.
490
+ * @param ctx the parse tree
491
+ */
492
+ enterSwitchStatement;
493
+ /**
494
+ * Exit a parse tree produced by `ApexParser.switchStatement`.
495
+ * @param ctx the parse tree
496
+ */
497
+ exitSwitchStatement;
498
+ /**
499
+ * Enter a parse tree produced by `ApexParser.whenControl`.
500
+ * @param ctx the parse tree
501
+ */
502
+ enterWhenControl;
503
+ /**
504
+ * Exit a parse tree produced by `ApexParser.whenControl`.
505
+ * @param ctx the parse tree
506
+ */
507
+ exitWhenControl;
508
+ /**
509
+ * Enter a parse tree produced by `ApexParser.whenValue`.
510
+ * @param ctx the parse tree
511
+ */
512
+ enterWhenValue;
513
+ /**
514
+ * Exit a parse tree produced by `ApexParser.whenValue`.
515
+ * @param ctx the parse tree
516
+ */
517
+ exitWhenValue;
518
+ /**
519
+ * Enter a parse tree produced by `ApexParser.whenLiteral`.
520
+ * @param ctx the parse tree
521
+ */
522
+ enterWhenLiteral;
523
+ /**
524
+ * Exit a parse tree produced by `ApexParser.whenLiteral`.
525
+ * @param ctx the parse tree
526
+ */
527
+ exitWhenLiteral;
528
+ /**
529
+ * Enter a parse tree produced by `ApexParser.forStatement`.
530
+ * @param ctx the parse tree
531
+ */
532
+ enterForStatement;
533
+ /**
534
+ * Exit a parse tree produced by `ApexParser.forStatement`.
535
+ * @param ctx the parse tree
536
+ */
537
+ exitForStatement;
538
+ /**
539
+ * Enter a parse tree produced by `ApexParser.whileStatement`.
540
+ * @param ctx the parse tree
541
+ */
542
+ enterWhileStatement;
543
+ /**
544
+ * Exit a parse tree produced by `ApexParser.whileStatement`.
545
+ * @param ctx the parse tree
546
+ */
547
+ exitWhileStatement;
548
+ /**
549
+ * Enter a parse tree produced by `ApexParser.doWhileStatement`.
550
+ * @param ctx the parse tree
551
+ */
552
+ enterDoWhileStatement;
553
+ /**
554
+ * Exit a parse tree produced by `ApexParser.doWhileStatement`.
555
+ * @param ctx the parse tree
556
+ */
557
+ exitDoWhileStatement;
558
+ /**
559
+ * Enter a parse tree produced by `ApexParser.tryStatement`.
560
+ * @param ctx the parse tree
561
+ */
562
+ enterTryStatement;
563
+ /**
564
+ * Exit a parse tree produced by `ApexParser.tryStatement`.
565
+ * @param ctx the parse tree
566
+ */
567
+ exitTryStatement;
568
+ /**
569
+ * Enter a parse tree produced by `ApexParser.returnStatement`.
570
+ * @param ctx the parse tree
571
+ */
572
+ enterReturnStatement;
573
+ /**
574
+ * Exit a parse tree produced by `ApexParser.returnStatement`.
575
+ * @param ctx the parse tree
576
+ */
577
+ exitReturnStatement;
578
+ /**
579
+ * Enter a parse tree produced by `ApexParser.throwStatement`.
580
+ * @param ctx the parse tree
581
+ */
582
+ enterThrowStatement;
583
+ /**
584
+ * Exit a parse tree produced by `ApexParser.throwStatement`.
585
+ * @param ctx the parse tree
586
+ */
587
+ exitThrowStatement;
588
+ /**
589
+ * Enter a parse tree produced by `ApexParser.breakStatement`.
590
+ * @param ctx the parse tree
591
+ */
592
+ enterBreakStatement;
593
+ /**
594
+ * Exit a parse tree produced by `ApexParser.breakStatement`.
595
+ * @param ctx the parse tree
596
+ */
597
+ exitBreakStatement;
598
+ /**
599
+ * Enter a parse tree produced by `ApexParser.continueStatement`.
600
+ * @param ctx the parse tree
601
+ */
602
+ enterContinueStatement;
603
+ /**
604
+ * Exit a parse tree produced by `ApexParser.continueStatement`.
605
+ * @param ctx the parse tree
606
+ */
607
+ exitContinueStatement;
608
+ /**
609
+ * Enter a parse tree produced by `ApexParser.accessLevel`.
610
+ * @param ctx the parse tree
611
+ */
612
+ enterAccessLevel;
613
+ /**
614
+ * Exit a parse tree produced by `ApexParser.accessLevel`.
615
+ * @param ctx the parse tree
616
+ */
617
+ exitAccessLevel;
618
+ /**
619
+ * Enter a parse tree produced by `ApexParser.insertStatement`.
620
+ * @param ctx the parse tree
621
+ */
622
+ enterInsertStatement;
623
+ /**
624
+ * Exit a parse tree produced by `ApexParser.insertStatement`.
625
+ * @param ctx the parse tree
626
+ */
627
+ exitInsertStatement;
628
+ /**
629
+ * Enter a parse tree produced by `ApexParser.updateStatement`.
630
+ * @param ctx the parse tree
631
+ */
632
+ enterUpdateStatement;
633
+ /**
634
+ * Exit a parse tree produced by `ApexParser.updateStatement`.
635
+ * @param ctx the parse tree
636
+ */
637
+ exitUpdateStatement;
638
+ /**
639
+ * Enter a parse tree produced by `ApexParser.deleteStatement`.
640
+ * @param ctx the parse tree
641
+ */
642
+ enterDeleteStatement;
643
+ /**
644
+ * Exit a parse tree produced by `ApexParser.deleteStatement`.
645
+ * @param ctx the parse tree
646
+ */
647
+ exitDeleteStatement;
648
+ /**
649
+ * Enter a parse tree produced by `ApexParser.undeleteStatement`.
650
+ * @param ctx the parse tree
651
+ */
652
+ enterUndeleteStatement;
653
+ /**
654
+ * Exit a parse tree produced by `ApexParser.undeleteStatement`.
655
+ * @param ctx the parse tree
656
+ */
657
+ exitUndeleteStatement;
658
+ /**
659
+ * Enter a parse tree produced by `ApexParser.upsertStatement`.
660
+ * @param ctx the parse tree
661
+ */
662
+ enterUpsertStatement;
663
+ /**
664
+ * Exit a parse tree produced by `ApexParser.upsertStatement`.
665
+ * @param ctx the parse tree
666
+ */
667
+ exitUpsertStatement;
668
+ /**
669
+ * Enter a parse tree produced by `ApexParser.mergeStatement`.
670
+ * @param ctx the parse tree
671
+ */
672
+ enterMergeStatement;
673
+ /**
674
+ * Exit a parse tree produced by `ApexParser.mergeStatement`.
675
+ * @param ctx the parse tree
676
+ */
677
+ exitMergeStatement;
678
+ /**
679
+ * Enter a parse tree produced by `ApexParser.runAsStatement`.
680
+ * @param ctx the parse tree
681
+ */
682
+ enterRunAsStatement;
683
+ /**
684
+ * Exit a parse tree produced by `ApexParser.runAsStatement`.
685
+ * @param ctx the parse tree
686
+ */
687
+ exitRunAsStatement;
688
+ /**
689
+ * Enter a parse tree produced by `ApexParser.expressionStatement`.
690
+ * @param ctx the parse tree
691
+ */
692
+ enterExpressionStatement;
693
+ /**
694
+ * Exit a parse tree produced by `ApexParser.expressionStatement`.
695
+ * @param ctx the parse tree
696
+ */
697
+ exitExpressionStatement;
698
+ /**
699
+ * Enter a parse tree produced by `ApexParser.propertyBlock`.
700
+ * @param ctx the parse tree
701
+ */
702
+ enterPropertyBlock;
703
+ /**
704
+ * Exit a parse tree produced by `ApexParser.propertyBlock`.
705
+ * @param ctx the parse tree
706
+ */
707
+ exitPropertyBlock;
708
+ /**
709
+ * Enter a parse tree produced by `ApexParser.getter`.
710
+ * @param ctx the parse tree
711
+ */
712
+ enterGetter;
713
+ /**
714
+ * Exit a parse tree produced by `ApexParser.getter`.
715
+ * @param ctx the parse tree
716
+ */
717
+ exitGetter;
718
+ /**
719
+ * Enter a parse tree produced by `ApexParser.setter`.
720
+ * @param ctx the parse tree
721
+ */
722
+ enterSetter;
723
+ /**
724
+ * Exit a parse tree produced by `ApexParser.setter`.
725
+ * @param ctx the parse tree
726
+ */
727
+ exitSetter;
728
+ /**
729
+ * Enter a parse tree produced by `ApexParser.catchClause`.
730
+ * @param ctx the parse tree
731
+ */
732
+ enterCatchClause;
733
+ /**
734
+ * Exit a parse tree produced by `ApexParser.catchClause`.
735
+ * @param ctx the parse tree
736
+ */
737
+ exitCatchClause;
738
+ /**
739
+ * Enter a parse tree produced by `ApexParser.finallyBlock`.
740
+ * @param ctx the parse tree
741
+ */
742
+ enterFinallyBlock;
743
+ /**
744
+ * Exit a parse tree produced by `ApexParser.finallyBlock`.
745
+ * @param ctx the parse tree
746
+ */
747
+ exitFinallyBlock;
748
+ /**
749
+ * Enter a parse tree produced by `ApexParser.forControl`.
750
+ * @param ctx the parse tree
751
+ */
752
+ enterForControl;
753
+ /**
754
+ * Exit a parse tree produced by `ApexParser.forControl`.
755
+ * @param ctx the parse tree
756
+ */
757
+ exitForControl;
758
+ /**
759
+ * Enter a parse tree produced by `ApexParser.forInit`.
760
+ * @param ctx the parse tree
761
+ */
762
+ enterForInit;
763
+ /**
764
+ * Exit a parse tree produced by `ApexParser.forInit`.
765
+ * @param ctx the parse tree
766
+ */
767
+ exitForInit;
768
+ /**
769
+ * Enter a parse tree produced by `ApexParser.enhancedForControl`.
770
+ * @param ctx the parse tree
771
+ */
772
+ enterEnhancedForControl;
773
+ /**
774
+ * Exit a parse tree produced by `ApexParser.enhancedForControl`.
775
+ * @param ctx the parse tree
776
+ */
777
+ exitEnhancedForControl;
778
+ /**
779
+ * Enter a parse tree produced by `ApexParser.forUpdate`.
780
+ * @param ctx the parse tree
781
+ */
782
+ enterForUpdate;
783
+ /**
784
+ * Exit a parse tree produced by `ApexParser.forUpdate`.
785
+ * @param ctx the parse tree
786
+ */
787
+ exitForUpdate;
788
+ /**
789
+ * Enter a parse tree produced by `ApexParser.parExpression`.
790
+ * @param ctx the parse tree
791
+ */
792
+ enterParExpression;
793
+ /**
794
+ * Exit a parse tree produced by `ApexParser.parExpression`.
795
+ * @param ctx the parse tree
796
+ */
797
+ exitParExpression;
798
+ /**
799
+ * Enter a parse tree produced by `ApexParser.expressionList`.
800
+ * @param ctx the parse tree
801
+ */
802
+ enterExpressionList;
803
+ /**
804
+ * Exit a parse tree produced by `ApexParser.expressionList`.
805
+ * @param ctx the parse tree
806
+ */
807
+ exitExpressionList;
808
+ /**
809
+ * Enter a parse tree produced by the `primaryExpression`
810
+ * labeled alternative in `ApexParser.expression`.
811
+ * @param ctx the parse tree
812
+ */
813
+ enterPrimaryExpression;
814
+ /**
815
+ * Exit a parse tree produced by the `primaryExpression`
816
+ * labeled alternative in `ApexParser.expression`.
817
+ * @param ctx the parse tree
818
+ */
819
+ exitPrimaryExpression;
820
+ /**
821
+ * Enter a parse tree produced by the `arth1Expression`
822
+ * labeled alternative in `ApexParser.expression`.
823
+ * @param ctx the parse tree
824
+ */
825
+ enterArth1Expression;
826
+ /**
827
+ * Exit a parse tree produced by the `arth1Expression`
828
+ * labeled alternative in `ApexParser.expression`.
829
+ * @param ctx the parse tree
830
+ */
831
+ exitArth1Expression;
832
+ /**
833
+ * Enter a parse tree produced by the `coalExpression`
834
+ * labeled alternative in `ApexParser.expression`.
835
+ * @param ctx the parse tree
836
+ */
837
+ enterCoalExpression;
838
+ /**
839
+ * Exit a parse tree produced by the `coalExpression`
840
+ * labeled alternative in `ApexParser.expression`.
841
+ * @param ctx the parse tree
842
+ */
843
+ exitCoalExpression;
844
+ /**
845
+ * Enter a parse tree produced by the `dotExpression`
846
+ * labeled alternative in `ApexParser.expression`.
847
+ * @param ctx the parse tree
848
+ */
849
+ enterDotExpression;
850
+ /**
851
+ * Exit a parse tree produced by the `dotExpression`
852
+ * labeled alternative in `ApexParser.expression`.
853
+ * @param ctx the parse tree
854
+ */
855
+ exitDotExpression;
856
+ /**
857
+ * Enter a parse tree produced by the `bitOrExpression`
858
+ * labeled alternative in `ApexParser.expression`.
859
+ * @param ctx the parse tree
860
+ */
861
+ enterBitOrExpression;
862
+ /**
863
+ * Exit a parse tree produced by the `bitOrExpression`
864
+ * labeled alternative in `ApexParser.expression`.
865
+ * @param ctx the parse tree
866
+ */
867
+ exitBitOrExpression;
868
+ /**
869
+ * Enter a parse tree produced by the `arrayExpression`
870
+ * labeled alternative in `ApexParser.expression`.
871
+ * @param ctx the parse tree
872
+ */
873
+ enterArrayExpression;
874
+ /**
875
+ * Exit a parse tree produced by the `arrayExpression`
876
+ * labeled alternative in `ApexParser.expression`.
877
+ * @param ctx the parse tree
878
+ */
879
+ exitArrayExpression;
880
+ /**
881
+ * Enter a parse tree produced by the `newExpression`
882
+ * labeled alternative in `ApexParser.expression`.
883
+ * @param ctx the parse tree
884
+ */
885
+ enterNewExpression;
886
+ /**
887
+ * Exit a parse tree produced by the `newExpression`
888
+ * labeled alternative in `ApexParser.expression`.
889
+ * @param ctx the parse tree
890
+ */
891
+ exitNewExpression;
892
+ /**
893
+ * Enter a parse tree produced by the `assignExpression`
894
+ * labeled alternative in `ApexParser.expression`.
895
+ * @param ctx the parse tree
896
+ */
897
+ enterAssignExpression;
898
+ /**
899
+ * Exit a parse tree produced by the `assignExpression`
900
+ * labeled alternative in `ApexParser.expression`.
901
+ * @param ctx the parse tree
902
+ */
903
+ exitAssignExpression;
904
+ /**
905
+ * Enter a parse tree produced by the `methodCallExpression`
906
+ * labeled alternative in `ApexParser.expression`.
907
+ * @param ctx the parse tree
908
+ */
909
+ enterMethodCallExpression;
910
+ /**
911
+ * Exit a parse tree produced by the `methodCallExpression`
912
+ * labeled alternative in `ApexParser.expression`.
913
+ * @param ctx the parse tree
914
+ */
915
+ exitMethodCallExpression;
916
+ /**
917
+ * Enter a parse tree produced by the `bitNotExpression`
918
+ * labeled alternative in `ApexParser.expression`.
919
+ * @param ctx the parse tree
920
+ */
921
+ enterBitNotExpression;
922
+ /**
923
+ * Exit a parse tree produced by the `bitNotExpression`
924
+ * labeled alternative in `ApexParser.expression`.
925
+ * @param ctx the parse tree
926
+ */
927
+ exitBitNotExpression;
928
+ /**
929
+ * Enter a parse tree produced by the `arth2Expression`
930
+ * labeled alternative in `ApexParser.expression`.
931
+ * @param ctx the parse tree
932
+ */
933
+ enterArth2Expression;
934
+ /**
935
+ * Exit a parse tree produced by the `arth2Expression`
936
+ * labeled alternative in `ApexParser.expression`.
937
+ * @param ctx the parse tree
938
+ */
939
+ exitArth2Expression;
940
+ /**
941
+ * Enter a parse tree produced by the `logAndExpression`
942
+ * labeled alternative in `ApexParser.expression`.
943
+ * @param ctx the parse tree
944
+ */
945
+ enterLogAndExpression;
946
+ /**
947
+ * Exit a parse tree produced by the `logAndExpression`
948
+ * labeled alternative in `ApexParser.expression`.
949
+ * @param ctx the parse tree
950
+ */
951
+ exitLogAndExpression;
952
+ /**
953
+ * Enter a parse tree produced by the `castExpression`
954
+ * labeled alternative in `ApexParser.expression`.
955
+ * @param ctx the parse tree
956
+ */
957
+ enterCastExpression;
958
+ /**
959
+ * Exit a parse tree produced by the `castExpression`
960
+ * labeled alternative in `ApexParser.expression`.
961
+ * @param ctx the parse tree
962
+ */
963
+ exitCastExpression;
964
+ /**
965
+ * Enter a parse tree produced by the `bitAndExpression`
966
+ * labeled alternative in `ApexParser.expression`.
967
+ * @param ctx the parse tree
968
+ */
969
+ enterBitAndExpression;
970
+ /**
971
+ * Exit a parse tree produced by the `bitAndExpression`
972
+ * labeled alternative in `ApexParser.expression`.
973
+ * @param ctx the parse tree
974
+ */
975
+ exitBitAndExpression;
976
+ /**
977
+ * Enter a parse tree produced by the `cmpExpression`
978
+ * labeled alternative in `ApexParser.expression`.
979
+ * @param ctx the parse tree
980
+ */
981
+ enterCmpExpression;
982
+ /**
983
+ * Exit a parse tree produced by the `cmpExpression`
984
+ * labeled alternative in `ApexParser.expression`.
985
+ * @param ctx the parse tree
986
+ */
987
+ exitCmpExpression;
988
+ /**
989
+ * Enter a parse tree produced by the `bitExpression`
990
+ * labeled alternative in `ApexParser.expression`.
991
+ * @param ctx the parse tree
992
+ */
993
+ enterBitExpression;
994
+ /**
995
+ * Exit a parse tree produced by the `bitExpression`
996
+ * labeled alternative in `ApexParser.expression`.
997
+ * @param ctx the parse tree
998
+ */
999
+ exitBitExpression;
1000
+ /**
1001
+ * Enter a parse tree produced by the `logOrExpression`
1002
+ * labeled alternative in `ApexParser.expression`.
1003
+ * @param ctx the parse tree
1004
+ */
1005
+ enterLogOrExpression;
1006
+ /**
1007
+ * Exit a parse tree produced by the `logOrExpression`
1008
+ * labeled alternative in `ApexParser.expression`.
1009
+ * @param ctx the parse tree
1010
+ */
1011
+ exitLogOrExpression;
1012
+ /**
1013
+ * Enter a parse tree produced by the `condExpression`
1014
+ * labeled alternative in `ApexParser.expression`.
1015
+ * @param ctx the parse tree
1016
+ */
1017
+ enterCondExpression;
1018
+ /**
1019
+ * Exit a parse tree produced by the `condExpression`
1020
+ * labeled alternative in `ApexParser.expression`.
1021
+ * @param ctx the parse tree
1022
+ */
1023
+ exitCondExpression;
1024
+ /**
1025
+ * Enter a parse tree produced by the `equalityExpression`
1026
+ * labeled alternative in `ApexParser.expression`.
1027
+ * @param ctx the parse tree
1028
+ */
1029
+ enterEqualityExpression;
1030
+ /**
1031
+ * Exit a parse tree produced by the `equalityExpression`
1032
+ * labeled alternative in `ApexParser.expression`.
1033
+ * @param ctx the parse tree
1034
+ */
1035
+ exitEqualityExpression;
1036
+ /**
1037
+ * Enter a parse tree produced by the `postOpExpression`
1038
+ * labeled alternative in `ApexParser.expression`.
1039
+ * @param ctx the parse tree
1040
+ */
1041
+ enterPostOpExpression;
1042
+ /**
1043
+ * Exit a parse tree produced by the `postOpExpression`
1044
+ * labeled alternative in `ApexParser.expression`.
1045
+ * @param ctx the parse tree
1046
+ */
1047
+ exitPostOpExpression;
1048
+ /**
1049
+ * Enter a parse tree produced by the `negExpression`
1050
+ * labeled alternative in `ApexParser.expression`.
1051
+ * @param ctx the parse tree
1052
+ */
1053
+ enterNegExpression;
1054
+ /**
1055
+ * Exit a parse tree produced by the `negExpression`
1056
+ * labeled alternative in `ApexParser.expression`.
1057
+ * @param ctx the parse tree
1058
+ */
1059
+ exitNegExpression;
1060
+ /**
1061
+ * Enter a parse tree produced by the `preOpExpression`
1062
+ * labeled alternative in `ApexParser.expression`.
1063
+ * @param ctx the parse tree
1064
+ */
1065
+ enterPreOpExpression;
1066
+ /**
1067
+ * Exit a parse tree produced by the `preOpExpression`
1068
+ * labeled alternative in `ApexParser.expression`.
1069
+ * @param ctx the parse tree
1070
+ */
1071
+ exitPreOpExpression;
1072
+ /**
1073
+ * Enter a parse tree produced by the `subExpression`
1074
+ * labeled alternative in `ApexParser.expression`.
1075
+ * @param ctx the parse tree
1076
+ */
1077
+ enterSubExpression;
1078
+ /**
1079
+ * Exit a parse tree produced by the `subExpression`
1080
+ * labeled alternative in `ApexParser.expression`.
1081
+ * @param ctx the parse tree
1082
+ */
1083
+ exitSubExpression;
1084
+ /**
1085
+ * Enter a parse tree produced by the `instanceOfExpression`
1086
+ * labeled alternative in `ApexParser.expression`.
1087
+ * @param ctx the parse tree
1088
+ */
1089
+ enterInstanceOfExpression;
1090
+ /**
1091
+ * Exit a parse tree produced by the `instanceOfExpression`
1092
+ * labeled alternative in `ApexParser.expression`.
1093
+ * @param ctx the parse tree
1094
+ */
1095
+ exitInstanceOfExpression;
1096
+ /**
1097
+ * Enter a parse tree produced by the `thisPrimary`
1098
+ * labeled alternative in `ApexParser.primary`.
1099
+ * @param ctx the parse tree
1100
+ */
1101
+ enterThisPrimary;
1102
+ /**
1103
+ * Exit a parse tree produced by the `thisPrimary`
1104
+ * labeled alternative in `ApexParser.primary`.
1105
+ * @param ctx the parse tree
1106
+ */
1107
+ exitThisPrimary;
1108
+ /**
1109
+ * Enter a parse tree produced by the `superPrimary`
1110
+ * labeled alternative in `ApexParser.primary`.
1111
+ * @param ctx the parse tree
1112
+ */
1113
+ enterSuperPrimary;
1114
+ /**
1115
+ * Exit a parse tree produced by the `superPrimary`
1116
+ * labeled alternative in `ApexParser.primary`.
1117
+ * @param ctx the parse tree
1118
+ */
1119
+ exitSuperPrimary;
1120
+ /**
1121
+ * Enter a parse tree produced by the `literalPrimary`
1122
+ * labeled alternative in `ApexParser.primary`.
1123
+ * @param ctx the parse tree
1124
+ */
1125
+ enterLiteralPrimary;
1126
+ /**
1127
+ * Exit a parse tree produced by the `literalPrimary`
1128
+ * labeled alternative in `ApexParser.primary`.
1129
+ * @param ctx the parse tree
1130
+ */
1131
+ exitLiteralPrimary;
1132
+ /**
1133
+ * Enter a parse tree produced by the `typeRefPrimary`
1134
+ * labeled alternative in `ApexParser.primary`.
1135
+ * @param ctx the parse tree
1136
+ */
1137
+ enterTypeRefPrimary;
1138
+ /**
1139
+ * Exit a parse tree produced by the `typeRefPrimary`
1140
+ * labeled alternative in `ApexParser.primary`.
1141
+ * @param ctx the parse tree
1142
+ */
1143
+ exitTypeRefPrimary;
1144
+ /**
1145
+ * Enter a parse tree produced by the `voidPrimary`
1146
+ * labeled alternative in `ApexParser.primary`.
1147
+ * @param ctx the parse tree
1148
+ */
1149
+ enterVoidPrimary;
1150
+ /**
1151
+ * Exit a parse tree produced by the `voidPrimary`
1152
+ * labeled alternative in `ApexParser.primary`.
1153
+ * @param ctx the parse tree
1154
+ */
1155
+ exitVoidPrimary;
1156
+ /**
1157
+ * Enter a parse tree produced by the `idPrimary`
1158
+ * labeled alternative in `ApexParser.primary`.
1159
+ * @param ctx the parse tree
1160
+ */
1161
+ enterIdPrimary;
1162
+ /**
1163
+ * Exit a parse tree produced by the `idPrimary`
1164
+ * labeled alternative in `ApexParser.primary`.
1165
+ * @param ctx the parse tree
1166
+ */
1167
+ exitIdPrimary;
1168
+ /**
1169
+ * Enter a parse tree produced by the `soqlPrimary`
1170
+ * labeled alternative in `ApexParser.primary`.
1171
+ * @param ctx the parse tree
1172
+ */
1173
+ enterSoqlPrimary;
1174
+ /**
1175
+ * Exit a parse tree produced by the `soqlPrimary`
1176
+ * labeled alternative in `ApexParser.primary`.
1177
+ * @param ctx the parse tree
1178
+ */
1179
+ exitSoqlPrimary;
1180
+ /**
1181
+ * Enter a parse tree produced by the `soslPrimary`
1182
+ * labeled alternative in `ApexParser.primary`.
1183
+ * @param ctx the parse tree
1184
+ */
1185
+ enterSoslPrimary;
1186
+ /**
1187
+ * Exit a parse tree produced by the `soslPrimary`
1188
+ * labeled alternative in `ApexParser.primary`.
1189
+ * @param ctx the parse tree
1190
+ */
1191
+ exitSoslPrimary;
1192
+ /**
1193
+ * Enter a parse tree produced by `ApexParser.methodCall`.
1194
+ * @param ctx the parse tree
1195
+ */
1196
+ enterMethodCall;
1197
+ /**
1198
+ * Exit a parse tree produced by `ApexParser.methodCall`.
1199
+ * @param ctx the parse tree
1200
+ */
1201
+ exitMethodCall;
1202
+ /**
1203
+ * Enter a parse tree produced by `ApexParser.dotMethodCall`.
1204
+ * @param ctx the parse tree
1205
+ */
1206
+ enterDotMethodCall;
1207
+ /**
1208
+ * Exit a parse tree produced by `ApexParser.dotMethodCall`.
1209
+ * @param ctx the parse tree
1210
+ */
1211
+ exitDotMethodCall;
1212
+ /**
1213
+ * Enter a parse tree produced by `ApexParser.creator`.
1214
+ * @param ctx the parse tree
1215
+ */
1216
+ enterCreator;
1217
+ /**
1218
+ * Exit a parse tree produced by `ApexParser.creator`.
1219
+ * @param ctx the parse tree
1220
+ */
1221
+ exitCreator;
1222
+ /**
1223
+ * Enter a parse tree produced by `ApexParser.createdName`.
1224
+ * @param ctx the parse tree
1225
+ */
1226
+ enterCreatedName;
1227
+ /**
1228
+ * Exit a parse tree produced by `ApexParser.createdName`.
1229
+ * @param ctx the parse tree
1230
+ */
1231
+ exitCreatedName;
1232
+ /**
1233
+ * Enter a parse tree produced by `ApexParser.idCreatedNamePair`.
1234
+ * @param ctx the parse tree
1235
+ */
1236
+ enterIdCreatedNamePair;
1237
+ /**
1238
+ * Exit a parse tree produced by `ApexParser.idCreatedNamePair`.
1239
+ * @param ctx the parse tree
1240
+ */
1241
+ exitIdCreatedNamePair;
1242
+ /**
1243
+ * Enter a parse tree produced by `ApexParser.noRest`.
1244
+ * @param ctx the parse tree
1245
+ */
1246
+ enterNoRest;
1247
+ /**
1248
+ * Exit a parse tree produced by `ApexParser.noRest`.
1249
+ * @param ctx the parse tree
1250
+ */
1251
+ exitNoRest;
1252
+ /**
1253
+ * Enter a parse tree produced by `ApexParser.classCreatorRest`.
1254
+ * @param ctx the parse tree
1255
+ */
1256
+ enterClassCreatorRest;
1257
+ /**
1258
+ * Exit a parse tree produced by `ApexParser.classCreatorRest`.
1259
+ * @param ctx the parse tree
1260
+ */
1261
+ exitClassCreatorRest;
1262
+ /**
1263
+ * Enter a parse tree produced by `ApexParser.arrayCreatorRest`.
1264
+ * @param ctx the parse tree
1265
+ */
1266
+ enterArrayCreatorRest;
1267
+ /**
1268
+ * Exit a parse tree produced by `ApexParser.arrayCreatorRest`.
1269
+ * @param ctx the parse tree
1270
+ */
1271
+ exitArrayCreatorRest;
1272
+ /**
1273
+ * Enter a parse tree produced by `ApexParser.mapCreatorRest`.
1274
+ * @param ctx the parse tree
1275
+ */
1276
+ enterMapCreatorRest;
1277
+ /**
1278
+ * Exit a parse tree produced by `ApexParser.mapCreatorRest`.
1279
+ * @param ctx the parse tree
1280
+ */
1281
+ exitMapCreatorRest;
1282
+ /**
1283
+ * Enter a parse tree produced by `ApexParser.mapCreatorRestPair`.
1284
+ * @param ctx the parse tree
1285
+ */
1286
+ enterMapCreatorRestPair;
1287
+ /**
1288
+ * Exit a parse tree produced by `ApexParser.mapCreatorRestPair`.
1289
+ * @param ctx the parse tree
1290
+ */
1291
+ exitMapCreatorRestPair;
1292
+ /**
1293
+ * Enter a parse tree produced by `ApexParser.setCreatorRest`.
1294
+ * @param ctx the parse tree
1295
+ */
1296
+ enterSetCreatorRest;
1297
+ /**
1298
+ * Exit a parse tree produced by `ApexParser.setCreatorRest`.
1299
+ * @param ctx the parse tree
1300
+ */
1301
+ exitSetCreatorRest;
1302
+ /**
1303
+ * Enter a parse tree produced by `ApexParser.arguments`.
1304
+ * @param ctx the parse tree
1305
+ */
1306
+ enterArguments;
1307
+ /**
1308
+ * Exit a parse tree produced by `ApexParser.arguments`.
1309
+ * @param ctx the parse tree
1310
+ */
1311
+ exitArguments;
1312
+ /**
1313
+ * Enter a parse tree produced by `ApexParser.soqlLiteral`.
1314
+ * @param ctx the parse tree
1315
+ */
1316
+ enterSoqlLiteral;
1317
+ /**
1318
+ * Exit a parse tree produced by `ApexParser.soqlLiteral`.
1319
+ * @param ctx the parse tree
1320
+ */
1321
+ exitSoqlLiteral;
1322
+ /**
1323
+ * Enter a parse tree produced by `ApexParser.query`.
1324
+ * @param ctx the parse tree
1325
+ */
1326
+ enterQuery;
1327
+ /**
1328
+ * Exit a parse tree produced by `ApexParser.query`.
1329
+ * @param ctx the parse tree
1330
+ */
1331
+ exitQuery;
1332
+ /**
1333
+ * Enter a parse tree produced by `ApexParser.subQuery`.
1334
+ * @param ctx the parse tree
1335
+ */
1336
+ enterSubQuery;
1337
+ /**
1338
+ * Exit a parse tree produced by `ApexParser.subQuery`.
1339
+ * @param ctx the parse tree
1340
+ */
1341
+ exitSubQuery;
1342
+ /**
1343
+ * Enter a parse tree produced by `ApexParser.selectList`.
1344
+ * @param ctx the parse tree
1345
+ */
1346
+ enterSelectList;
1347
+ /**
1348
+ * Exit a parse tree produced by `ApexParser.selectList`.
1349
+ * @param ctx the parse tree
1350
+ */
1351
+ exitSelectList;
1352
+ /**
1353
+ * Enter a parse tree produced by `ApexParser.selectEntry`.
1354
+ * @param ctx the parse tree
1355
+ */
1356
+ enterSelectEntry;
1357
+ /**
1358
+ * Exit a parse tree produced by `ApexParser.selectEntry`.
1359
+ * @param ctx the parse tree
1360
+ */
1361
+ exitSelectEntry;
1362
+ /**
1363
+ * Enter a parse tree produced by `ApexParser.fieldName`.
1364
+ * @param ctx the parse tree
1365
+ */
1366
+ enterFieldName;
1367
+ /**
1368
+ * Exit a parse tree produced by `ApexParser.fieldName`.
1369
+ * @param ctx the parse tree
1370
+ */
1371
+ exitFieldName;
1372
+ /**
1373
+ * Enter a parse tree produced by `ApexParser.fromNameList`.
1374
+ * @param ctx the parse tree
1375
+ */
1376
+ enterFromNameList;
1377
+ /**
1378
+ * Exit a parse tree produced by `ApexParser.fromNameList`.
1379
+ * @param ctx the parse tree
1380
+ */
1381
+ exitFromNameList;
1382
+ /**
1383
+ * Enter a parse tree produced by `ApexParser.subFieldList`.
1384
+ * @param ctx the parse tree
1385
+ */
1386
+ enterSubFieldList;
1387
+ /**
1388
+ * Exit a parse tree produced by `ApexParser.subFieldList`.
1389
+ * @param ctx the parse tree
1390
+ */
1391
+ exitSubFieldList;
1392
+ /**
1393
+ * Enter a parse tree produced by `ApexParser.subFieldEntry`.
1394
+ * @param ctx the parse tree
1395
+ */
1396
+ enterSubFieldEntry;
1397
+ /**
1398
+ * Exit a parse tree produced by `ApexParser.subFieldEntry`.
1399
+ * @param ctx the parse tree
1400
+ */
1401
+ exitSubFieldEntry;
1402
+ /**
1403
+ * Enter a parse tree produced by `ApexParser.soqlFieldsParameter`.
1404
+ * @param ctx the parse tree
1405
+ */
1406
+ enterSoqlFieldsParameter;
1407
+ /**
1408
+ * Exit a parse tree produced by `ApexParser.soqlFieldsParameter`.
1409
+ * @param ctx the parse tree
1410
+ */
1411
+ exitSoqlFieldsParameter;
1412
+ /**
1413
+ * Enter a parse tree produced by `ApexParser.soqlFunction`.
1414
+ * @param ctx the parse tree
1415
+ */
1416
+ enterSoqlFunction;
1417
+ /**
1418
+ * Exit a parse tree produced by `ApexParser.soqlFunction`.
1419
+ * @param ctx the parse tree
1420
+ */
1421
+ exitSoqlFunction;
1422
+ /**
1423
+ * Enter a parse tree produced by `ApexParser.dateFieldName`.
1424
+ * @param ctx the parse tree
1425
+ */
1426
+ enterDateFieldName;
1427
+ /**
1428
+ * Exit a parse tree produced by `ApexParser.dateFieldName`.
1429
+ * @param ctx the parse tree
1430
+ */
1431
+ exitDateFieldName;
1432
+ /**
1433
+ * Enter a parse tree produced by `ApexParser.locationValue`.
1434
+ * @param ctx the parse tree
1435
+ */
1436
+ enterLocationValue;
1437
+ /**
1438
+ * Exit a parse tree produced by `ApexParser.locationValue`.
1439
+ * @param ctx the parse tree
1440
+ */
1441
+ exitLocationValue;
1442
+ /**
1443
+ * Enter a parse tree produced by `ApexParser.coordinateValue`.
1444
+ * @param ctx the parse tree
1445
+ */
1446
+ enterCoordinateValue;
1447
+ /**
1448
+ * Exit a parse tree produced by `ApexParser.coordinateValue`.
1449
+ * @param ctx the parse tree
1450
+ */
1451
+ exitCoordinateValue;
1452
+ /**
1453
+ * Enter a parse tree produced by `ApexParser.typeOf`.
1454
+ * @param ctx the parse tree
1455
+ */
1456
+ enterTypeOf;
1457
+ /**
1458
+ * Exit a parse tree produced by `ApexParser.typeOf`.
1459
+ * @param ctx the parse tree
1460
+ */
1461
+ exitTypeOf;
1462
+ /**
1463
+ * Enter a parse tree produced by `ApexParser.whenClause`.
1464
+ * @param ctx the parse tree
1465
+ */
1466
+ enterWhenClause;
1467
+ /**
1468
+ * Exit a parse tree produced by `ApexParser.whenClause`.
1469
+ * @param ctx the parse tree
1470
+ */
1471
+ exitWhenClause;
1472
+ /**
1473
+ * Enter a parse tree produced by `ApexParser.elseClause`.
1474
+ * @param ctx the parse tree
1475
+ */
1476
+ enterElseClause;
1477
+ /**
1478
+ * Exit a parse tree produced by `ApexParser.elseClause`.
1479
+ * @param ctx the parse tree
1480
+ */
1481
+ exitElseClause;
1482
+ /**
1483
+ * Enter a parse tree produced by `ApexParser.fieldNameList`.
1484
+ * @param ctx the parse tree
1485
+ */
1486
+ enterFieldNameList;
1487
+ /**
1488
+ * Exit a parse tree produced by `ApexParser.fieldNameList`.
1489
+ * @param ctx the parse tree
1490
+ */
1491
+ exitFieldNameList;
1492
+ /**
1493
+ * Enter a parse tree produced by `ApexParser.usingScope`.
1494
+ * @param ctx the parse tree
1495
+ */
1496
+ enterUsingScope;
1497
+ /**
1498
+ * Exit a parse tree produced by `ApexParser.usingScope`.
1499
+ * @param ctx the parse tree
1500
+ */
1501
+ exitUsingScope;
1502
+ /**
1503
+ * Enter a parse tree produced by `ApexParser.whereClause`.
1504
+ * @param ctx the parse tree
1505
+ */
1506
+ enterWhereClause;
1507
+ /**
1508
+ * Exit a parse tree produced by `ApexParser.whereClause`.
1509
+ * @param ctx the parse tree
1510
+ */
1511
+ exitWhereClause;
1512
+ /**
1513
+ * Enter a parse tree produced by `ApexParser.logicalExpression`.
1514
+ * @param ctx the parse tree
1515
+ */
1516
+ enterLogicalExpression;
1517
+ /**
1518
+ * Exit a parse tree produced by `ApexParser.logicalExpression`.
1519
+ * @param ctx the parse tree
1520
+ */
1521
+ exitLogicalExpression;
1522
+ /**
1523
+ * Enter a parse tree produced by `ApexParser.conditionalExpression`.
1524
+ * @param ctx the parse tree
1525
+ */
1526
+ enterConditionalExpression;
1527
+ /**
1528
+ * Exit a parse tree produced by `ApexParser.conditionalExpression`.
1529
+ * @param ctx the parse tree
1530
+ */
1531
+ exitConditionalExpression;
1532
+ /**
1533
+ * Enter a parse tree produced by `ApexParser.fieldExpression`.
1534
+ * @param ctx the parse tree
1535
+ */
1536
+ enterFieldExpression;
1537
+ /**
1538
+ * Exit a parse tree produced by `ApexParser.fieldExpression`.
1539
+ * @param ctx the parse tree
1540
+ */
1541
+ exitFieldExpression;
1542
+ /**
1543
+ * Enter a parse tree produced by `ApexParser.comparisonOperator`.
1544
+ * @param ctx the parse tree
1545
+ */
1546
+ enterComparisonOperator;
1547
+ /**
1548
+ * Exit a parse tree produced by `ApexParser.comparisonOperator`.
1549
+ * @param ctx the parse tree
1550
+ */
1551
+ exitComparisonOperator;
1552
+ /**
1553
+ * Enter a parse tree produced by `ApexParser.value`.
1554
+ * @param ctx the parse tree
1555
+ */
1556
+ enterValue;
1557
+ /**
1558
+ * Exit a parse tree produced by `ApexParser.value`.
1559
+ * @param ctx the parse tree
1560
+ */
1561
+ exitValue;
1562
+ /**
1563
+ * Enter a parse tree produced by `ApexParser.valueList`.
1564
+ * @param ctx the parse tree
1565
+ */
1566
+ enterValueList;
1567
+ /**
1568
+ * Exit a parse tree produced by `ApexParser.valueList`.
1569
+ * @param ctx the parse tree
1570
+ */
1571
+ exitValueList;
1572
+ /**
1573
+ * Enter a parse tree produced by `ApexParser.signedNumber`.
1574
+ * @param ctx the parse tree
1575
+ */
1576
+ enterSignedNumber;
1577
+ /**
1578
+ * Exit a parse tree produced by `ApexParser.signedNumber`.
1579
+ * @param ctx the parse tree
1580
+ */
1581
+ exitSignedNumber;
1582
+ /**
1583
+ * Enter a parse tree produced by `ApexParser.withClause`.
1584
+ * @param ctx the parse tree
1585
+ */
1586
+ enterWithClause;
1587
+ /**
1588
+ * Exit a parse tree produced by `ApexParser.withClause`.
1589
+ * @param ctx the parse tree
1590
+ */
1591
+ exitWithClause;
1592
+ /**
1593
+ * Enter a parse tree produced by `ApexParser.filteringExpression`.
1594
+ * @param ctx the parse tree
1595
+ */
1596
+ enterFilteringExpression;
1597
+ /**
1598
+ * Exit a parse tree produced by `ApexParser.filteringExpression`.
1599
+ * @param ctx the parse tree
1600
+ */
1601
+ exitFilteringExpression;
1602
+ /**
1603
+ * Enter a parse tree produced by `ApexParser.dataCategorySelection`.
1604
+ * @param ctx the parse tree
1605
+ */
1606
+ enterDataCategorySelection;
1607
+ /**
1608
+ * Exit a parse tree produced by `ApexParser.dataCategorySelection`.
1609
+ * @param ctx the parse tree
1610
+ */
1611
+ exitDataCategorySelection;
1612
+ /**
1613
+ * Enter a parse tree produced by `ApexParser.dataCategoryName`.
1614
+ * @param ctx the parse tree
1615
+ */
1616
+ enterDataCategoryName;
1617
+ /**
1618
+ * Exit a parse tree produced by `ApexParser.dataCategoryName`.
1619
+ * @param ctx the parse tree
1620
+ */
1621
+ exitDataCategoryName;
1622
+ /**
1623
+ * Enter a parse tree produced by `ApexParser.filteringSelector`.
1624
+ * @param ctx the parse tree
1625
+ */
1626
+ enterFilteringSelector;
1627
+ /**
1628
+ * Exit a parse tree produced by `ApexParser.filteringSelector`.
1629
+ * @param ctx the parse tree
1630
+ */
1631
+ exitFilteringSelector;
1632
+ /**
1633
+ * Enter a parse tree produced by `ApexParser.groupByClause`.
1634
+ * @param ctx the parse tree
1635
+ */
1636
+ enterGroupByClause;
1637
+ /**
1638
+ * Exit a parse tree produced by `ApexParser.groupByClause`.
1639
+ * @param ctx the parse tree
1640
+ */
1641
+ exitGroupByClause;
1642
+ /**
1643
+ * Enter a parse tree produced by `ApexParser.orderByClause`.
1644
+ * @param ctx the parse tree
1645
+ */
1646
+ enterOrderByClause;
1647
+ /**
1648
+ * Exit a parse tree produced by `ApexParser.orderByClause`.
1649
+ * @param ctx the parse tree
1650
+ */
1651
+ exitOrderByClause;
1652
+ /**
1653
+ * Enter a parse tree produced by `ApexParser.fieldOrderList`.
1654
+ * @param ctx the parse tree
1655
+ */
1656
+ enterFieldOrderList;
1657
+ /**
1658
+ * Exit a parse tree produced by `ApexParser.fieldOrderList`.
1659
+ * @param ctx the parse tree
1660
+ */
1661
+ exitFieldOrderList;
1662
+ /**
1663
+ * Enter a parse tree produced by `ApexParser.fieldOrder`.
1664
+ * @param ctx the parse tree
1665
+ */
1666
+ enterFieldOrder;
1667
+ /**
1668
+ * Exit a parse tree produced by `ApexParser.fieldOrder`.
1669
+ * @param ctx the parse tree
1670
+ */
1671
+ exitFieldOrder;
1672
+ /**
1673
+ * Enter a parse tree produced by `ApexParser.limitClause`.
1674
+ * @param ctx the parse tree
1675
+ */
1676
+ enterLimitClause;
1677
+ /**
1678
+ * Exit a parse tree produced by `ApexParser.limitClause`.
1679
+ * @param ctx the parse tree
1680
+ */
1681
+ exitLimitClause;
1682
+ /**
1683
+ * Enter a parse tree produced by `ApexParser.offsetClause`.
1684
+ * @param ctx the parse tree
1685
+ */
1686
+ enterOffsetClause;
1687
+ /**
1688
+ * Exit a parse tree produced by `ApexParser.offsetClause`.
1689
+ * @param ctx the parse tree
1690
+ */
1691
+ exitOffsetClause;
1692
+ /**
1693
+ * Enter a parse tree produced by `ApexParser.allRowsClause`.
1694
+ * @param ctx the parse tree
1695
+ */
1696
+ enterAllRowsClause;
1697
+ /**
1698
+ * Exit a parse tree produced by `ApexParser.allRowsClause`.
1699
+ * @param ctx the parse tree
1700
+ */
1701
+ exitAllRowsClause;
1702
+ /**
1703
+ * Enter a parse tree produced by `ApexParser.forClauses`.
1704
+ * @param ctx the parse tree
1705
+ */
1706
+ enterForClauses;
1707
+ /**
1708
+ * Exit a parse tree produced by `ApexParser.forClauses`.
1709
+ * @param ctx the parse tree
1710
+ */
1711
+ exitForClauses;
1712
+ /**
1713
+ * Enter a parse tree produced by `ApexParser.boundExpression`.
1714
+ * @param ctx the parse tree
1715
+ */
1716
+ enterBoundExpression;
1717
+ /**
1718
+ * Exit a parse tree produced by `ApexParser.boundExpression`.
1719
+ * @param ctx the parse tree
1720
+ */
1721
+ exitBoundExpression;
1722
+ /**
1723
+ * Enter a parse tree produced by `ApexParser.dateFormula`.
1724
+ * @param ctx the parse tree
1725
+ */
1726
+ enterDateFormula;
1727
+ /**
1728
+ * Exit a parse tree produced by `ApexParser.dateFormula`.
1729
+ * @param ctx the parse tree
1730
+ */
1731
+ exitDateFormula;
1732
+ /**
1733
+ * Enter a parse tree produced by `ApexParser.signedInteger`.
1734
+ * @param ctx the parse tree
1735
+ */
1736
+ enterSignedInteger;
1737
+ /**
1738
+ * Exit a parse tree produced by `ApexParser.signedInteger`.
1739
+ * @param ctx the parse tree
1740
+ */
1741
+ exitSignedInteger;
1742
+ /**
1743
+ * Enter a parse tree produced by `ApexParser.soqlId`.
1744
+ * @param ctx the parse tree
1745
+ */
1746
+ enterSoqlId;
1747
+ /**
1748
+ * Exit a parse tree produced by `ApexParser.soqlId`.
1749
+ * @param ctx the parse tree
1750
+ */
1751
+ exitSoqlId;
1752
+ /**
1753
+ * Enter a parse tree produced by `ApexParser.soslLiteral`.
1754
+ * @param ctx the parse tree
1755
+ */
1756
+ enterSoslLiteral;
1757
+ /**
1758
+ * Exit a parse tree produced by `ApexParser.soslLiteral`.
1759
+ * @param ctx the parse tree
1760
+ */
1761
+ exitSoslLiteral;
1762
+ /**
1763
+ * Enter a parse tree produced by `ApexParser.soslLiteralAlt`.
1764
+ * @param ctx the parse tree
1765
+ */
1766
+ enterSoslLiteralAlt;
1767
+ /**
1768
+ * Exit a parse tree produced by `ApexParser.soslLiteralAlt`.
1769
+ * @param ctx the parse tree
1770
+ */
1771
+ exitSoslLiteralAlt;
1772
+ /**
1773
+ * Enter a parse tree produced by `ApexParser.soslClauses`.
1774
+ * @param ctx the parse tree
1775
+ */
1776
+ enterSoslClauses;
1777
+ /**
1778
+ * Exit a parse tree produced by `ApexParser.soslClauses`.
1779
+ * @param ctx the parse tree
1780
+ */
1781
+ exitSoslClauses;
1782
+ /**
1783
+ * Enter a parse tree produced by `ApexParser.soslWithClause`.
1784
+ * @param ctx the parse tree
1785
+ */
1786
+ enterSoslWithClause;
1787
+ /**
1788
+ * Exit a parse tree produced by `ApexParser.soslWithClause`.
1789
+ * @param ctx the parse tree
1790
+ */
1791
+ exitSoslWithClause;
1792
+ /**
1793
+ * Enter a parse tree produced by `ApexParser.searchGroup`.
1794
+ * @param ctx the parse tree
1795
+ */
1796
+ enterSearchGroup;
1797
+ /**
1798
+ * Exit a parse tree produced by `ApexParser.searchGroup`.
1799
+ * @param ctx the parse tree
1800
+ */
1801
+ exitSearchGroup;
1802
+ /**
1803
+ * Enter a parse tree produced by `ApexParser.fieldSpecList`.
1804
+ * @param ctx the parse tree
1805
+ */
1806
+ enterFieldSpecList;
1807
+ /**
1808
+ * Exit a parse tree produced by `ApexParser.fieldSpecList`.
1809
+ * @param ctx the parse tree
1810
+ */
1811
+ exitFieldSpecList;
1812
+ /**
1813
+ * Enter a parse tree produced by `ApexParser.fieldSpec`.
1814
+ * @param ctx the parse tree
1815
+ */
1816
+ enterFieldSpec;
1817
+ /**
1818
+ * Exit a parse tree produced by `ApexParser.fieldSpec`.
1819
+ * @param ctx the parse tree
1820
+ */
1821
+ exitFieldSpec;
1822
+ /**
1823
+ * Enter a parse tree produced by `ApexParser.fieldList`.
1824
+ * @param ctx the parse tree
1825
+ */
1826
+ enterFieldList;
1827
+ /**
1828
+ * Exit a parse tree produced by `ApexParser.fieldList`.
1829
+ * @param ctx the parse tree
1830
+ */
1831
+ exitFieldList;
1832
+ /**
1833
+ * Enter a parse tree produced by `ApexParser.updateList`.
1834
+ * @param ctx the parse tree
1835
+ */
1836
+ enterUpdateList;
1837
+ /**
1838
+ * Exit a parse tree produced by `ApexParser.updateList`.
1839
+ * @param ctx the parse tree
1840
+ */
1841
+ exitUpdateList;
1842
+ /**
1843
+ * Enter a parse tree produced by `ApexParser.updateType`.
1844
+ * @param ctx the parse tree
1845
+ */
1846
+ enterUpdateType;
1847
+ /**
1848
+ * Exit a parse tree produced by `ApexParser.updateType`.
1849
+ * @param ctx the parse tree
1850
+ */
1851
+ exitUpdateType;
1852
+ /**
1853
+ * Enter a parse tree produced by `ApexParser.networkList`.
1854
+ * @param ctx the parse tree
1855
+ */
1856
+ enterNetworkList;
1857
+ /**
1858
+ * Exit a parse tree produced by `ApexParser.networkList`.
1859
+ * @param ctx the parse tree
1860
+ */
1861
+ exitNetworkList;
1862
+ /**
1863
+ * Enter a parse tree produced by `ApexParser.soslId`.
1864
+ * @param ctx the parse tree
1865
+ */
1866
+ enterSoslId;
1867
+ /**
1868
+ * Exit a parse tree produced by `ApexParser.soslId`.
1869
+ * @param ctx the parse tree
1870
+ */
1871
+ exitSoslId;
1872
+ /**
1873
+ * Enter a parse tree produced by `ApexParser.id`.
1874
+ * @param ctx the parse tree
1875
+ */
1876
+ enterId;
1877
+ /**
1878
+ * Exit a parse tree produced by `ApexParser.id`.
1879
+ * @param ctx the parse tree
1880
+ */
1881
+ exitId;
1882
+ /**
1883
+ * Enter a parse tree produced by `ApexParser.anyId`.
1884
+ * @param ctx the parse tree
1885
+ */
1886
+ enterAnyId;
1887
+ /**
1888
+ * Exit a parse tree produced by `ApexParser.anyId`.
1889
+ * @param ctx the parse tree
1890
+ */
1891
+ exitAnyId;
1892
+ }
1893
+ //# sourceMappingURL=ApexParserListener.js.map