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