@apexdevtools/apex-parser 5.0.0 → 5.1.0-beta.1

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