@apexdevtools/apex-parser 3.0.0

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