@elephant32/soql-common 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/LICENSE.txt +27 -0
  2. package/README.md +30 -0
  3. package/out/src/index.d.ts +3 -0
  4. package/out/src/index.js +25 -0
  5. package/out/src/index.js.map +1 -0
  6. package/out/src/soql-parser.lib/currencyLiteral.d.ts +1 -0
  7. package/out/src/soql-parser.lib/currencyLiteral.js +1 -0
  8. package/out/src/soql-parser.lib/currencyLiteral.js.map +1 -0
  9. package/out/src/soql-parser.lib/dateFormula.d.ts +47 -0
  10. package/out/src/soql-parser.lib/dateFormula.js +1 -0
  11. package/out/src/soql-parser.lib/dateFormula.js.map +1 -0
  12. package/out/src/soql-parser.lib/generated/SoqlLexer.d.ts +118 -0
  13. package/out/src/soql-parser.lib/generated/SoqlLexer.js +1 -0
  14. package/out/src/soql-parser.lib/generated/SoqlLexer.js.map +1 -0
  15. package/out/src/soql-parser.lib/generated/SoqlParser.d.ts +1538 -0
  16. package/out/src/soql-parser.lib/generated/SoqlParser.js +1 -0
  17. package/out/src/soql-parser.lib/generated/SoqlParser.js.map +1 -0
  18. package/out/src/soql-parser.lib/generated/SoqlParserListener.d.ts +1545 -0
  19. package/out/src/soql-parser.lib/generated/SoqlParserListener.js +1 -0
  20. package/out/src/soql-parser.lib/generated/SoqlParserListener.js.map +1 -0
  21. package/out/src/soql-parser.lib/generated/SoqlParserVisitor.d.ts +974 -0
  22. package/out/src/soql-parser.lib/generated/SoqlParserVisitor.js +1 -0
  23. package/out/src/soql-parser.lib/generated/SoqlParserVisitor.js.map +1 -0
  24. package/out/src/soql-parser.lib/index.d.ts +2 -0
  25. package/out/src/soql-parser.lib/index.js +1 -0
  26. package/out/src/soql-parser.lib/index.js.map +1 -0
  27. package/out/src/soql-parser.lib/parserHelper.d.ts +13 -0
  28. package/out/src/soql-parser.lib/parserHelper.js +1 -0
  29. package/out/src/soql-parser.lib/parserHelper.js.map +1 -0
  30. package/out/src/soql-parser.lib/soql-parser.d.ts +39 -0
  31. package/out/src/soql-parser.lib/soql-parser.js +1 -0
  32. package/out/src/soql-parser.lib/soql-parser.js.map +1 -0
  33. package/out/src/soqlComments.d.ts +10 -0
  34. package/out/src/soqlComments.js +29 -0
  35. package/out/src/soqlComments.js.map +1 -0
  36. package/package.json +102 -0
  37. package/src/soql-parser.lib/README.txt +1 -0
  38. package/src/soql-parser.lib/currencyLiteral.d.ts +1 -0
  39. package/src/soql-parser.lib/currencyLiteral.js +1 -0
  40. package/src/soql-parser.lib/currencyLiteral.js.map +1 -0
  41. package/src/soql-parser.lib/dateFormula.d.ts +47 -0
  42. package/src/soql-parser.lib/dateFormula.js +1 -0
  43. package/src/soql-parser.lib/dateFormula.js.map +1 -0
  44. package/src/soql-parser.lib/generated/SoqlLexer.d.ts +118 -0
  45. package/src/soql-parser.lib/generated/SoqlLexer.js +1 -0
  46. package/src/soql-parser.lib/generated/SoqlLexer.js.map +1 -0
  47. package/src/soql-parser.lib/generated/SoqlParser.d.ts +1538 -0
  48. package/src/soql-parser.lib/generated/SoqlParser.js +1 -0
  49. package/src/soql-parser.lib/generated/SoqlParser.js.map +1 -0
  50. package/src/soql-parser.lib/generated/SoqlParserListener.d.ts +1545 -0
  51. package/src/soql-parser.lib/generated/SoqlParserListener.js +1 -0
  52. package/src/soql-parser.lib/generated/SoqlParserListener.js.map +1 -0
  53. package/src/soql-parser.lib/generated/SoqlParserVisitor.d.ts +974 -0
  54. package/src/soql-parser.lib/generated/SoqlParserVisitor.js +1 -0
  55. package/src/soql-parser.lib/generated/SoqlParserVisitor.js.map +1 -0
  56. package/src/soql-parser.lib/index.d.ts +2 -0
  57. package/src/soql-parser.lib/index.js +1 -0
  58. package/src/soql-parser.lib/index.js.map +1 -0
  59. package/src/soql-parser.lib/parserHelper.d.ts +13 -0
  60. package/src/soql-parser.lib/parserHelper.js +1 -0
  61. package/src/soql-parser.lib/parserHelper.js.map +1 -0
  62. package/src/soql-parser.lib/soql-parser.d.ts +39 -0
  63. package/src/soql-parser.lib/soql-parser.js +1 -0
  64. package/src/soql-parser.lib/soql-parser.js.map +1 -0
@@ -0,0 +1,1545 @@
1
+ import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener";
2
+ import { SoqlLiteralIntegerValueContext } from "./SoqlParser";
3
+ import { SoqlColonExprIntegerValueContext } from "./SoqlParser";
4
+ import { SoqlSelectColumnExprContext } from "./SoqlParser";
5
+ import { SoqlSelectInnerQueryExprContext } from "./SoqlParser";
6
+ import { SoqlSelectTypeofExprContext } from "./SoqlParser";
7
+ import { SoqlSelectDistanceExprContext } from "./SoqlParser";
8
+ import { SoqlUsingPre192ExprWithScopeContext } from "./SoqlParser";
9
+ import { SoqlUsingPre192ExprDefaultContext } from "./SoqlParser";
10
+ import { SoqlUsingPre192ExprWithNoScopeContext } from "./SoqlParser";
11
+ import { SoqlLiteralGeolocationValueContext } from "./SoqlParser";
12
+ import { SoqlColonExprGeolocationValueContext } from "./SoqlParser";
13
+ import { SoqlLiteralLikeValueContext } from "./SoqlParser";
14
+ import { SoqlColonLikeValueContext } from "./SoqlParser";
15
+ import { SoqlWhereAndOrExprContext } from "./SoqlParser";
16
+ import { SoqlWhereNotExprContext } from "./SoqlParser";
17
+ import { SoqlWhereClauseMethodContext } from "./SoqlParser";
18
+ import { SoqlSelectCountClauseContext } from "./SoqlParser";
19
+ import { SoqlSelectExprsClauseContext } from "./SoqlParser";
20
+ import { SoqlForViewContext } from "./SoqlParser";
21
+ import { SoqlForReferenceContext } from "./SoqlParser";
22
+ import { SoqlLikeStringLiteralContext } from "./SoqlParser";
23
+ import { SoqlLikeCommonLiteralsContext } from "./SoqlParser";
24
+ import { SoqlStringWithValueContext } from "./SoqlParser";
25
+ import { SoqlColonExprWithValueContext } from "./SoqlParser";
26
+ import { SoqlWithIdentifierTupleClauseContext } from "./SoqlParser";
27
+ import { SoqlWithSingleIdentifierClauseContext } from "./SoqlParser";
28
+ import { SoqlUsingScopeContext } from "./SoqlParser";
29
+ import { SoqlUsingLookupContext } from "./SoqlParser";
30
+ import { SoqlDateLiteralContext } from "./SoqlParser";
31
+ import { SoqlDateTimeLiteralContext } from "./SoqlParser";
32
+ import { SoqlTimeLiteralContext } from "./SoqlParser";
33
+ import { SoqlNumberLiteralContext } from "./SoqlParser";
34
+ import { SoqlNullLiteralContext } from "./SoqlParser";
35
+ import { SoqlBooleanLiteralContext } from "./SoqlParser";
36
+ import { SoqlDateFormulaLiteralContext } from "./SoqlParser";
37
+ import { SoqlMultiCurrencyContext } from "./SoqlParser";
38
+ import { SoqlLiteralLiteralValueContext } from "./SoqlParser";
39
+ import { SoqlColonExprLiteralValueContext } from "./SoqlParser";
40
+ import { SoqlWithDataCategoryClauseContext } from "./SoqlParser";
41
+ import { SoqlWithEqualsClauseContext } from "./SoqlParser";
42
+ import { SoqlStringLiteralContext } from "./SoqlParser";
43
+ import { SoqlLiteralCommonLiteralsContext } from "./SoqlParser";
44
+ import { NestedWhereExprContext } from "./SoqlParser";
45
+ import { CalculatedWhereExprContext } from "./SoqlParser";
46
+ import { DistanceWhereExprContext } from "./SoqlParser";
47
+ import { SimpleWhereExprContext } from "./SoqlParser";
48
+ import { LikeWhereExprContext } from "./SoqlParser";
49
+ import { IncludesWhereExprContext } from "./SoqlParser";
50
+ import { InWhereExprWithSemiJoinContext } from "./SoqlParser";
51
+ import { InWhereExprContext } from "./SoqlParser";
52
+ import { InWhereExprForColonExprContext } from "./SoqlParser";
53
+ import { SoqlLiteralNumberValueContext } from "./SoqlParser";
54
+ import { SoqlOrderByColumnExprContext } from "./SoqlParser";
55
+ import { SoqlOrderByDistanceExprContext } from "./SoqlParser";
56
+ import { ParseReservedForFieldNameContext } from "./SoqlParser";
57
+ import { SoqlIdentifierContext } from "./SoqlParser";
58
+ import { SoqlIdentifierNoReservedContext } from "./SoqlParser";
59
+ import { SoqlIdentifiersContext } from "./SoqlParser";
60
+ import { SoqlFieldContext } from "./SoqlParser";
61
+ import { SoqlTypeofOperandContext } from "./SoqlParser";
62
+ import { SoqlWhenOperandContext } from "./SoqlParser";
63
+ import { SoqlResultExprContext } from "./SoqlParser";
64
+ import { SoqlWhenExprContext } from "./SoqlParser";
65
+ import { SoqlElseExprContext } from "./SoqlParser";
66
+ import { SoqlTypeofExprContext } from "./SoqlParser";
67
+ import { SoqlAliasContext } from "./SoqlParser";
68
+ import { SoqlIntegerContext } from "./SoqlParser";
69
+ import { SoqlIntegerValueContext } from "./SoqlParser";
70
+ import { SoqlNumberContext } from "./SoqlParser";
71
+ import { SoqlNumberValueContext } from "./SoqlParser";
72
+ import { SoqlGeolocationValueContext } from "./SoqlParser";
73
+ import { SoqlDistanceExprContext } from "./SoqlParser";
74
+ import { SoqlWhereClauseContext } from "./SoqlParser";
75
+ import { SoqlWhereExprsContext } from "./SoqlParser";
76
+ import { SoqlAndWhereContext } from "./SoqlParser";
77
+ import { SoqlOrWhereContext } from "./SoqlParser";
78
+ import { SoqlWhereExprContext } from "./SoqlParser";
79
+ import { SoqlCalcOperatorContext } from "./SoqlParser";
80
+ import { SoqlLiteralValuesContext } from "./SoqlParser";
81
+ import { SoqlIncludesOperatorContext } from "./SoqlParser";
82
+ import { SoqlInOperatorContext } from "./SoqlParser";
83
+ import { SoqlComparisonOperatorContext } from "./SoqlParser";
84
+ import { SoqlCommonOperatorContext } from "./SoqlParser";
85
+ import { SoqlLikeValueContext } from "./SoqlParser";
86
+ import { SoqlLikeLiteralContext } from "./SoqlParser";
87
+ import { SoqlCommonLiteralsContext } from "./SoqlParser";
88
+ import { SoqlLiteralValueContext } from "./SoqlParser";
89
+ import { SoqlCurrencyLiteralContext } from "./SoqlParser";
90
+ import { SoqlColonExprContext } from "./SoqlParser";
91
+ import { SoqlLiteralContext } from "./SoqlParser";
92
+ import { NonValidatedEscapeStringLiteralContext } from "./SoqlParser";
93
+ import { NonValidatedEscapeStringLiteralElementContext } from "./SoqlParser";
94
+ import { ValidatedEscapeStringLiteralContext } from "./SoqlParser";
95
+ import { ValidatedEscapeStringLiteralElementContext } from "./SoqlParser";
96
+ import { ValidatedEscapeLikeStringLiteralContext } from "./SoqlParser";
97
+ import { ValidatedEscapeLikeStringLiteralElementsContext } from "./SoqlParser";
98
+ import { ValidatedCommonSoqlStringLiteralElementsContext } from "./SoqlParser";
99
+ import { SoqlSelectExprContext } from "./SoqlParser";
100
+ import { SoqlSelectExprsContext } from "./SoqlParser";
101
+ import { SoqlFromClauseContext } from "./SoqlParser";
102
+ import { SoqlFromExprsContext } from "./SoqlParser";
103
+ import { SoqlFromExprContext } from "./SoqlParser";
104
+ import { SoqlUsingClauseContext } from "./SoqlParser";
105
+ import { SoqlUsingPre192ExprContext } from "./SoqlParser";
106
+ import { SoqlUsingExprsContext } from "./SoqlParser";
107
+ import { SoqlUsingExprContext } from "./SoqlParser";
108
+ import { SoqlDataCategoryOperatorContext } from "./SoqlParser";
109
+ import { SoqlDataCategoryExprContext } from "./SoqlParser";
110
+ import { SoqlWithValueContext } from "./SoqlParser";
111
+ import { SoqlWithKeyValueContext } from "./SoqlParser";
112
+ import { SoqlWithClauseContext } from "./SoqlParser";
113
+ import { SoqlWithIdentifierClauseContext } from "./SoqlParser";
114
+ import { SoqlLimitClauseContext } from "./SoqlParser";
115
+ import { SoqlOffsetClauseContext } from "./SoqlParser";
116
+ import { SoqlGroupByExprsContext } from "./SoqlParser";
117
+ import { SoqlGroupByClauseContext } from "./SoqlParser";
118
+ import { SoqlHavingClauseContext } from "./SoqlParser";
119
+ import { SoqlOrderByClauseFieldContext } from "./SoqlParser";
120
+ import { SoqlOrderByClauseExprContext } from "./SoqlParser";
121
+ import { SoqlOrderByClauseExprsContext } from "./SoqlParser";
122
+ import { SoqlOrderByClauseContext } from "./SoqlParser";
123
+ import { SoqlBindClauseExprContext } from "./SoqlParser";
124
+ import { SoqlBindClauseExprsContext } from "./SoqlParser";
125
+ import { SoqlBindClauseContext } from "./SoqlParser";
126
+ import { SoqlRecordTrackingTypeContext } from "./SoqlParser";
127
+ import { SoqlUpdateStatsClauseContext } from "./SoqlParser";
128
+ import { SoqlSelectClauseContext } from "./SoqlParser";
129
+ import { SoqlSemiJoinContext } from "./SoqlParser";
130
+ import { SoqlInnerQueryContext } from "./SoqlParser";
131
+ import { SoqlQueryContext } from "./SoqlParser";
132
+ /**
133
+ * This interface defines a complete listener for a parse tree produced by
134
+ * `SoqlParser`.
135
+ */
136
+ export interface SoqlParserListener extends ParseTreeListener {
137
+ /**
138
+ * Enter a parse tree produced by the `soqlLiteralIntegerValue`
139
+ * labeled alternative in `SoqlParser.soqlIntegerValue`.
140
+ * @param ctx the parse tree
141
+ */
142
+ enterSoqlLiteralIntegerValue?: (ctx: SoqlLiteralIntegerValueContext) => void;
143
+ /**
144
+ * Exit a parse tree produced by the `soqlLiteralIntegerValue`
145
+ * labeled alternative in `SoqlParser.soqlIntegerValue`.
146
+ * @param ctx the parse tree
147
+ */
148
+ exitSoqlLiteralIntegerValue?: (ctx: SoqlLiteralIntegerValueContext) => void;
149
+ /**
150
+ * Enter a parse tree produced by the `soqlColonExprIntegerValue`
151
+ * labeled alternative in `SoqlParser.soqlIntegerValue`.
152
+ * @param ctx the parse tree
153
+ */
154
+ enterSoqlColonExprIntegerValue?: (ctx: SoqlColonExprIntegerValueContext) => void;
155
+ /**
156
+ * Exit a parse tree produced by the `soqlColonExprIntegerValue`
157
+ * labeled alternative in `SoqlParser.soqlIntegerValue`.
158
+ * @param ctx the parse tree
159
+ */
160
+ exitSoqlColonExprIntegerValue?: (ctx: SoqlColonExprIntegerValueContext) => void;
161
+ /**
162
+ * Enter a parse tree produced by the `soqlSelectColumnExpr`
163
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
164
+ * @param ctx the parse tree
165
+ */
166
+ enterSoqlSelectColumnExpr?: (ctx: SoqlSelectColumnExprContext) => void;
167
+ /**
168
+ * Exit a parse tree produced by the `soqlSelectColumnExpr`
169
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
170
+ * @param ctx the parse tree
171
+ */
172
+ exitSoqlSelectColumnExpr?: (ctx: SoqlSelectColumnExprContext) => void;
173
+ /**
174
+ * Enter a parse tree produced by the `soqlSelectInnerQueryExpr`
175
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
176
+ * @param ctx the parse tree
177
+ */
178
+ enterSoqlSelectInnerQueryExpr?: (ctx: SoqlSelectInnerQueryExprContext) => void;
179
+ /**
180
+ * Exit a parse tree produced by the `soqlSelectInnerQueryExpr`
181
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
182
+ * @param ctx the parse tree
183
+ */
184
+ exitSoqlSelectInnerQueryExpr?: (ctx: SoqlSelectInnerQueryExprContext) => void;
185
+ /**
186
+ * Enter a parse tree produced by the `soqlSelectTypeofExpr`
187
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
188
+ * @param ctx the parse tree
189
+ */
190
+ enterSoqlSelectTypeofExpr?: (ctx: SoqlSelectTypeofExprContext) => void;
191
+ /**
192
+ * Exit a parse tree produced by the `soqlSelectTypeofExpr`
193
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
194
+ * @param ctx the parse tree
195
+ */
196
+ exitSoqlSelectTypeofExpr?: (ctx: SoqlSelectTypeofExprContext) => void;
197
+ /**
198
+ * Enter a parse tree produced by the `soqlSelectDistanceExpr`
199
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
200
+ * @param ctx the parse tree
201
+ */
202
+ enterSoqlSelectDistanceExpr?: (ctx: SoqlSelectDistanceExprContext) => void;
203
+ /**
204
+ * Exit a parse tree produced by the `soqlSelectDistanceExpr`
205
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
206
+ * @param ctx the parse tree
207
+ */
208
+ exitSoqlSelectDistanceExpr?: (ctx: SoqlSelectDistanceExprContext) => void;
209
+ /**
210
+ * Enter a parse tree produced by the `soqlUsingPre192ExprWithScope`
211
+ * labeled alternative in `SoqlParser.soqlUsingPre192Expr`.
212
+ * @param ctx the parse tree
213
+ */
214
+ enterSoqlUsingPre192ExprWithScope?: (ctx: SoqlUsingPre192ExprWithScopeContext) => void;
215
+ /**
216
+ * Exit a parse tree produced by the `soqlUsingPre192ExprWithScope`
217
+ * labeled alternative in `SoqlParser.soqlUsingPre192Expr`.
218
+ * @param ctx the parse tree
219
+ */
220
+ exitSoqlUsingPre192ExprWithScope?: (ctx: SoqlUsingPre192ExprWithScopeContext) => void;
221
+ /**
222
+ * Enter a parse tree produced by the `soqlUsingPre192ExprDefault`
223
+ * labeled alternative in `SoqlParser.soqlUsingPre192Expr`.
224
+ * @param ctx the parse tree
225
+ */
226
+ enterSoqlUsingPre192ExprDefault?: (ctx: SoqlUsingPre192ExprDefaultContext) => void;
227
+ /**
228
+ * Exit a parse tree produced by the `soqlUsingPre192ExprDefault`
229
+ * labeled alternative in `SoqlParser.soqlUsingPre192Expr`.
230
+ * @param ctx the parse tree
231
+ */
232
+ exitSoqlUsingPre192ExprDefault?: (ctx: SoqlUsingPre192ExprDefaultContext) => void;
233
+ /**
234
+ * Enter a parse tree produced by the `soqlUsingPre192ExprWithNoScope`
235
+ * labeled alternative in `SoqlParser.soqlUsingPre192Expr`.
236
+ * @param ctx the parse tree
237
+ */
238
+ enterSoqlUsingPre192ExprWithNoScope?: (ctx: SoqlUsingPre192ExprWithNoScopeContext) => void;
239
+ /**
240
+ * Exit a parse tree produced by the `soqlUsingPre192ExprWithNoScope`
241
+ * labeled alternative in `SoqlParser.soqlUsingPre192Expr`.
242
+ * @param ctx the parse tree
243
+ */
244
+ exitSoqlUsingPre192ExprWithNoScope?: (ctx: SoqlUsingPre192ExprWithNoScopeContext) => void;
245
+ /**
246
+ * Enter a parse tree produced by the `soqlLiteralGeolocationValue`
247
+ * labeled alternative in `SoqlParser.soqlGeolocationValue`.
248
+ * @param ctx the parse tree
249
+ */
250
+ enterSoqlLiteralGeolocationValue?: (ctx: SoqlLiteralGeolocationValueContext) => void;
251
+ /**
252
+ * Exit a parse tree produced by the `soqlLiteralGeolocationValue`
253
+ * labeled alternative in `SoqlParser.soqlGeolocationValue`.
254
+ * @param ctx the parse tree
255
+ */
256
+ exitSoqlLiteralGeolocationValue?: (ctx: SoqlLiteralGeolocationValueContext) => void;
257
+ /**
258
+ * Enter a parse tree produced by the `soqlColonExprGeolocationValue`
259
+ * labeled alternative in `SoqlParser.soqlGeolocationValue`.
260
+ * @param ctx the parse tree
261
+ */
262
+ enterSoqlColonExprGeolocationValue?: (ctx: SoqlColonExprGeolocationValueContext) => void;
263
+ /**
264
+ * Exit a parse tree produced by the `soqlColonExprGeolocationValue`
265
+ * labeled alternative in `SoqlParser.soqlGeolocationValue`.
266
+ * @param ctx the parse tree
267
+ */
268
+ exitSoqlColonExprGeolocationValue?: (ctx: SoqlColonExprGeolocationValueContext) => void;
269
+ /**
270
+ * Enter a parse tree produced by the `soqlLiteralLikeValue`
271
+ * labeled alternative in `SoqlParser.soqlLikeValue`.
272
+ * @param ctx the parse tree
273
+ */
274
+ enterSoqlLiteralLikeValue?: (ctx: SoqlLiteralLikeValueContext) => void;
275
+ /**
276
+ * Exit a parse tree produced by the `soqlLiteralLikeValue`
277
+ * labeled alternative in `SoqlParser.soqlLikeValue`.
278
+ * @param ctx the parse tree
279
+ */
280
+ exitSoqlLiteralLikeValue?: (ctx: SoqlLiteralLikeValueContext) => void;
281
+ /**
282
+ * Enter a parse tree produced by the `soqlColonLikeValue`
283
+ * labeled alternative in `SoqlParser.soqlLikeValue`.
284
+ * @param ctx the parse tree
285
+ */
286
+ enterSoqlColonLikeValue?: (ctx: SoqlColonLikeValueContext) => void;
287
+ /**
288
+ * Exit a parse tree produced by the `soqlColonLikeValue`
289
+ * labeled alternative in `SoqlParser.soqlLikeValue`.
290
+ * @param ctx the parse tree
291
+ */
292
+ exitSoqlColonLikeValue?: (ctx: SoqlColonLikeValueContext) => void;
293
+ /**
294
+ * Enter a parse tree produced by the `soqlWhereAndOrExpr`
295
+ * labeled alternative in `SoqlParser.soqlWhereExprs`.
296
+ * @param ctx the parse tree
297
+ */
298
+ enterSoqlWhereAndOrExpr?: (ctx: SoqlWhereAndOrExprContext) => void;
299
+ /**
300
+ * Exit a parse tree produced by the `soqlWhereAndOrExpr`
301
+ * labeled alternative in `SoqlParser.soqlWhereExprs`.
302
+ * @param ctx the parse tree
303
+ */
304
+ exitSoqlWhereAndOrExpr?: (ctx: SoqlWhereAndOrExprContext) => void;
305
+ /**
306
+ * Enter a parse tree produced by the `soqlWhereNotExpr`
307
+ * labeled alternative in `SoqlParser.soqlWhereExprs`.
308
+ * @param ctx the parse tree
309
+ */
310
+ enterSoqlWhereNotExpr?: (ctx: SoqlWhereNotExprContext) => void;
311
+ /**
312
+ * Exit a parse tree produced by the `soqlWhereNotExpr`
313
+ * labeled alternative in `SoqlParser.soqlWhereExprs`.
314
+ * @param ctx the parse tree
315
+ */
316
+ exitSoqlWhereNotExpr?: (ctx: SoqlWhereNotExprContext) => void;
317
+ /**
318
+ * Enter a parse tree produced by the `soqlWhereClauseMethod`
319
+ * labeled alternative in `SoqlParser.soqlWhereClause`.
320
+ * @param ctx the parse tree
321
+ */
322
+ enterSoqlWhereClauseMethod?: (ctx: SoqlWhereClauseMethodContext) => void;
323
+ /**
324
+ * Exit a parse tree produced by the `soqlWhereClauseMethod`
325
+ * labeled alternative in `SoqlParser.soqlWhereClause`.
326
+ * @param ctx the parse tree
327
+ */
328
+ exitSoqlWhereClauseMethod?: (ctx: SoqlWhereClauseMethodContext) => void;
329
+ /**
330
+ * Enter a parse tree produced by the `soqlSelectCountClause`
331
+ * labeled alternative in `SoqlParser.soqlSelectClause`.
332
+ * @param ctx the parse tree
333
+ */
334
+ enterSoqlSelectCountClause?: (ctx: SoqlSelectCountClauseContext) => void;
335
+ /**
336
+ * Exit a parse tree produced by the `soqlSelectCountClause`
337
+ * labeled alternative in `SoqlParser.soqlSelectClause`.
338
+ * @param ctx the parse tree
339
+ */
340
+ exitSoqlSelectCountClause?: (ctx: SoqlSelectCountClauseContext) => void;
341
+ /**
342
+ * Enter a parse tree produced by the `soqlSelectExprsClause`
343
+ * labeled alternative in `SoqlParser.soqlSelectClause`.
344
+ * @param ctx the parse tree
345
+ */
346
+ enterSoqlSelectExprsClause?: (ctx: SoqlSelectExprsClauseContext) => void;
347
+ /**
348
+ * Exit a parse tree produced by the `soqlSelectExprsClause`
349
+ * labeled alternative in `SoqlParser.soqlSelectClause`.
350
+ * @param ctx the parse tree
351
+ */
352
+ exitSoqlSelectExprsClause?: (ctx: SoqlSelectExprsClauseContext) => void;
353
+ /**
354
+ * Enter a parse tree produced by the `soqlForView`
355
+ * labeled alternative in `SoqlParser.soqlRecordTrackingType`.
356
+ * @param ctx the parse tree
357
+ */
358
+ enterSoqlForView?: (ctx: SoqlForViewContext) => void;
359
+ /**
360
+ * Exit a parse tree produced by the `soqlForView`
361
+ * labeled alternative in `SoqlParser.soqlRecordTrackingType`.
362
+ * @param ctx the parse tree
363
+ */
364
+ exitSoqlForView?: (ctx: SoqlForViewContext) => void;
365
+ /**
366
+ * Enter a parse tree produced by the `soqlForReference`
367
+ * labeled alternative in `SoqlParser.soqlRecordTrackingType`.
368
+ * @param ctx the parse tree
369
+ */
370
+ enterSoqlForReference?: (ctx: SoqlForReferenceContext) => void;
371
+ /**
372
+ * Exit a parse tree produced by the `soqlForReference`
373
+ * labeled alternative in `SoqlParser.soqlRecordTrackingType`.
374
+ * @param ctx the parse tree
375
+ */
376
+ exitSoqlForReference?: (ctx: SoqlForReferenceContext) => void;
377
+ /**
378
+ * Enter a parse tree produced by the `soqlLikeStringLiteral`
379
+ * labeled alternative in `SoqlParser.soqlLikeLiteral`.
380
+ * @param ctx the parse tree
381
+ */
382
+ enterSoqlLikeStringLiteral?: (ctx: SoqlLikeStringLiteralContext) => void;
383
+ /**
384
+ * Exit a parse tree produced by the `soqlLikeStringLiteral`
385
+ * labeled alternative in `SoqlParser.soqlLikeLiteral`.
386
+ * @param ctx the parse tree
387
+ */
388
+ exitSoqlLikeStringLiteral?: (ctx: SoqlLikeStringLiteralContext) => void;
389
+ /**
390
+ * Enter a parse tree produced by the `soqlLikeCommonLiterals`
391
+ * labeled alternative in `SoqlParser.soqlLikeLiteral`.
392
+ * @param ctx the parse tree
393
+ */
394
+ enterSoqlLikeCommonLiterals?: (ctx: SoqlLikeCommonLiteralsContext) => void;
395
+ /**
396
+ * Exit a parse tree produced by the `soqlLikeCommonLiterals`
397
+ * labeled alternative in `SoqlParser.soqlLikeLiteral`.
398
+ * @param ctx the parse tree
399
+ */
400
+ exitSoqlLikeCommonLiterals?: (ctx: SoqlLikeCommonLiteralsContext) => void;
401
+ /**
402
+ * Enter a parse tree produced by the `soqlStringWithValue`
403
+ * labeled alternative in `SoqlParser.soqlWithValue`.
404
+ * @param ctx the parse tree
405
+ */
406
+ enterSoqlStringWithValue?: (ctx: SoqlStringWithValueContext) => void;
407
+ /**
408
+ * Exit a parse tree produced by the `soqlStringWithValue`
409
+ * labeled alternative in `SoqlParser.soqlWithValue`.
410
+ * @param ctx the parse tree
411
+ */
412
+ exitSoqlStringWithValue?: (ctx: SoqlStringWithValueContext) => void;
413
+ /**
414
+ * Enter a parse tree produced by the `soqlColonExprWithValue`
415
+ * labeled alternative in `SoqlParser.soqlWithValue`.
416
+ * @param ctx the parse tree
417
+ */
418
+ enterSoqlColonExprWithValue?: (ctx: SoqlColonExprWithValueContext) => void;
419
+ /**
420
+ * Exit a parse tree produced by the `soqlColonExprWithValue`
421
+ * labeled alternative in `SoqlParser.soqlWithValue`.
422
+ * @param ctx the parse tree
423
+ */
424
+ exitSoqlColonExprWithValue?: (ctx: SoqlColonExprWithValueContext) => void;
425
+ /**
426
+ * Enter a parse tree produced by the `soqlWithIdentifierTupleClause`
427
+ * labeled alternative in `SoqlParser.soqlWithIdentifierClause`.
428
+ * @param ctx the parse tree
429
+ */
430
+ enterSoqlWithIdentifierTupleClause?: (ctx: SoqlWithIdentifierTupleClauseContext) => void;
431
+ /**
432
+ * Exit a parse tree produced by the `soqlWithIdentifierTupleClause`
433
+ * labeled alternative in `SoqlParser.soqlWithIdentifierClause`.
434
+ * @param ctx the parse tree
435
+ */
436
+ exitSoqlWithIdentifierTupleClause?: (ctx: SoqlWithIdentifierTupleClauseContext) => void;
437
+ /**
438
+ * Enter a parse tree produced by the `soqlWithSingleIdentifierClause`
439
+ * labeled alternative in `SoqlParser.soqlWithIdentifierClause`.
440
+ * @param ctx the parse tree
441
+ */
442
+ enterSoqlWithSingleIdentifierClause?: (ctx: SoqlWithSingleIdentifierClauseContext) => void;
443
+ /**
444
+ * Exit a parse tree produced by the `soqlWithSingleIdentifierClause`
445
+ * labeled alternative in `SoqlParser.soqlWithIdentifierClause`.
446
+ * @param ctx the parse tree
447
+ */
448
+ exitSoqlWithSingleIdentifierClause?: (ctx: SoqlWithSingleIdentifierClauseContext) => void;
449
+ /**
450
+ * Enter a parse tree produced by the `soqlUsingScope`
451
+ * labeled alternative in `SoqlParser.soqlUsingExpr`.
452
+ * @param ctx the parse tree
453
+ */
454
+ enterSoqlUsingScope?: (ctx: SoqlUsingScopeContext) => void;
455
+ /**
456
+ * Exit a parse tree produced by the `soqlUsingScope`
457
+ * labeled alternative in `SoqlParser.soqlUsingExpr`.
458
+ * @param ctx the parse tree
459
+ */
460
+ exitSoqlUsingScope?: (ctx: SoqlUsingScopeContext) => void;
461
+ /**
462
+ * Enter a parse tree produced by the `soqlUsingLookup`
463
+ * labeled alternative in `SoqlParser.soqlUsingExpr`.
464
+ * @param ctx the parse tree
465
+ */
466
+ enterSoqlUsingLookup?: (ctx: SoqlUsingLookupContext) => void;
467
+ /**
468
+ * Exit a parse tree produced by the `soqlUsingLookup`
469
+ * labeled alternative in `SoqlParser.soqlUsingExpr`.
470
+ * @param ctx the parse tree
471
+ */
472
+ exitSoqlUsingLookup?: (ctx: SoqlUsingLookupContext) => void;
473
+ /**
474
+ * Enter a parse tree produced by the `soqlDateLiteral`
475
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
476
+ * @param ctx the parse tree
477
+ */
478
+ enterSoqlDateLiteral?: (ctx: SoqlDateLiteralContext) => void;
479
+ /**
480
+ * Exit a parse tree produced by the `soqlDateLiteral`
481
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
482
+ * @param ctx the parse tree
483
+ */
484
+ exitSoqlDateLiteral?: (ctx: SoqlDateLiteralContext) => void;
485
+ /**
486
+ * Enter a parse tree produced by the `soqlDateTimeLiteral`
487
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
488
+ * @param ctx the parse tree
489
+ */
490
+ enterSoqlDateTimeLiteral?: (ctx: SoqlDateTimeLiteralContext) => void;
491
+ /**
492
+ * Exit a parse tree produced by the `soqlDateTimeLiteral`
493
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
494
+ * @param ctx the parse tree
495
+ */
496
+ exitSoqlDateTimeLiteral?: (ctx: SoqlDateTimeLiteralContext) => void;
497
+ /**
498
+ * Enter a parse tree produced by the `soqlTimeLiteral`
499
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
500
+ * @param ctx the parse tree
501
+ */
502
+ enterSoqlTimeLiteral?: (ctx: SoqlTimeLiteralContext) => void;
503
+ /**
504
+ * Exit a parse tree produced by the `soqlTimeLiteral`
505
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
506
+ * @param ctx the parse tree
507
+ */
508
+ exitSoqlTimeLiteral?: (ctx: SoqlTimeLiteralContext) => void;
509
+ /**
510
+ * Enter a parse tree produced by the `soqlNumberLiteral`
511
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
512
+ * @param ctx the parse tree
513
+ */
514
+ enterSoqlNumberLiteral?: (ctx: SoqlNumberLiteralContext) => void;
515
+ /**
516
+ * Exit a parse tree produced by the `soqlNumberLiteral`
517
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
518
+ * @param ctx the parse tree
519
+ */
520
+ exitSoqlNumberLiteral?: (ctx: SoqlNumberLiteralContext) => void;
521
+ /**
522
+ * Enter a parse tree produced by the `soqlNullLiteral`
523
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
524
+ * @param ctx the parse tree
525
+ */
526
+ enterSoqlNullLiteral?: (ctx: SoqlNullLiteralContext) => void;
527
+ /**
528
+ * Exit a parse tree produced by the `soqlNullLiteral`
529
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
530
+ * @param ctx the parse tree
531
+ */
532
+ exitSoqlNullLiteral?: (ctx: SoqlNullLiteralContext) => void;
533
+ /**
534
+ * Enter a parse tree produced by the `soqlBooleanLiteral`
535
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
536
+ * @param ctx the parse tree
537
+ */
538
+ enterSoqlBooleanLiteral?: (ctx: SoqlBooleanLiteralContext) => void;
539
+ /**
540
+ * Exit a parse tree produced by the `soqlBooleanLiteral`
541
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
542
+ * @param ctx the parse tree
543
+ */
544
+ exitSoqlBooleanLiteral?: (ctx: SoqlBooleanLiteralContext) => void;
545
+ /**
546
+ * Enter a parse tree produced by the `soqlDateFormulaLiteral`
547
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
548
+ * @param ctx the parse tree
549
+ */
550
+ enterSoqlDateFormulaLiteral?: (ctx: SoqlDateFormulaLiteralContext) => void;
551
+ /**
552
+ * Exit a parse tree produced by the `soqlDateFormulaLiteral`
553
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
554
+ * @param ctx the parse tree
555
+ */
556
+ exitSoqlDateFormulaLiteral?: (ctx: SoqlDateFormulaLiteralContext) => void;
557
+ /**
558
+ * Enter a parse tree produced by the `soqlMultiCurrency`
559
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
560
+ * @param ctx the parse tree
561
+ */
562
+ enterSoqlMultiCurrency?: (ctx: SoqlMultiCurrencyContext) => void;
563
+ /**
564
+ * Exit a parse tree produced by the `soqlMultiCurrency`
565
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
566
+ * @param ctx the parse tree
567
+ */
568
+ exitSoqlMultiCurrency?: (ctx: SoqlMultiCurrencyContext) => void;
569
+ /**
570
+ * Enter a parse tree produced by the `soqlLiteralLiteralValue`
571
+ * labeled alternative in `SoqlParser.soqlLiteralValue`.
572
+ * @param ctx the parse tree
573
+ */
574
+ enterSoqlLiteralLiteralValue?: (ctx: SoqlLiteralLiteralValueContext) => void;
575
+ /**
576
+ * Exit a parse tree produced by the `soqlLiteralLiteralValue`
577
+ * labeled alternative in `SoqlParser.soqlLiteralValue`.
578
+ * @param ctx the parse tree
579
+ */
580
+ exitSoqlLiteralLiteralValue?: (ctx: SoqlLiteralLiteralValueContext) => void;
581
+ /**
582
+ * Enter a parse tree produced by the `soqlColonExprLiteralValue`
583
+ * labeled alternative in `SoqlParser.soqlLiteralValue`.
584
+ * @param ctx the parse tree
585
+ */
586
+ enterSoqlColonExprLiteralValue?: (ctx: SoqlColonExprLiteralValueContext) => void;
587
+ /**
588
+ * Exit a parse tree produced by the `soqlColonExprLiteralValue`
589
+ * labeled alternative in `SoqlParser.soqlLiteralValue`.
590
+ * @param ctx the parse tree
591
+ */
592
+ exitSoqlColonExprLiteralValue?: (ctx: SoqlColonExprLiteralValueContext) => void;
593
+ /**
594
+ * Enter a parse tree produced by the `soqlWithDataCategoryClause`
595
+ * labeled alternative in `SoqlParser.soqlWithClause`.
596
+ * @param ctx the parse tree
597
+ */
598
+ enterSoqlWithDataCategoryClause?: (ctx: SoqlWithDataCategoryClauseContext) => void;
599
+ /**
600
+ * Exit a parse tree produced by the `soqlWithDataCategoryClause`
601
+ * labeled alternative in `SoqlParser.soqlWithClause`.
602
+ * @param ctx the parse tree
603
+ */
604
+ exitSoqlWithDataCategoryClause?: (ctx: SoqlWithDataCategoryClauseContext) => void;
605
+ /**
606
+ * Enter a parse tree produced by the `soqlWithEqualsClause`
607
+ * labeled alternative in `SoqlParser.soqlWithClause`.
608
+ * @param ctx the parse tree
609
+ */
610
+ enterSoqlWithEqualsClause?: (ctx: SoqlWithEqualsClauseContext) => void;
611
+ /**
612
+ * Exit a parse tree produced by the `soqlWithEqualsClause`
613
+ * labeled alternative in `SoqlParser.soqlWithClause`.
614
+ * @param ctx the parse tree
615
+ */
616
+ exitSoqlWithEqualsClause?: (ctx: SoqlWithEqualsClauseContext) => void;
617
+ /**
618
+ * Enter a parse tree produced by the `soqlStringLiteral`
619
+ * labeled alternative in `SoqlParser.soqlLiteral`.
620
+ * @param ctx the parse tree
621
+ */
622
+ enterSoqlStringLiteral?: (ctx: SoqlStringLiteralContext) => void;
623
+ /**
624
+ * Exit a parse tree produced by the `soqlStringLiteral`
625
+ * labeled alternative in `SoqlParser.soqlLiteral`.
626
+ * @param ctx the parse tree
627
+ */
628
+ exitSoqlStringLiteral?: (ctx: SoqlStringLiteralContext) => void;
629
+ /**
630
+ * Enter a parse tree produced by the `soqlLiteralCommonLiterals`
631
+ * labeled alternative in `SoqlParser.soqlLiteral`.
632
+ * @param ctx the parse tree
633
+ */
634
+ enterSoqlLiteralCommonLiterals?: (ctx: SoqlLiteralCommonLiteralsContext) => void;
635
+ /**
636
+ * Exit a parse tree produced by the `soqlLiteralCommonLiterals`
637
+ * labeled alternative in `SoqlParser.soqlLiteral`.
638
+ * @param ctx the parse tree
639
+ */
640
+ exitSoqlLiteralCommonLiterals?: (ctx: SoqlLiteralCommonLiteralsContext) => void;
641
+ /**
642
+ * Enter a parse tree produced by the `nestedWhereExpr`
643
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
644
+ * @param ctx the parse tree
645
+ */
646
+ enterNestedWhereExpr?: (ctx: NestedWhereExprContext) => void;
647
+ /**
648
+ * Exit a parse tree produced by the `nestedWhereExpr`
649
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
650
+ * @param ctx the parse tree
651
+ */
652
+ exitNestedWhereExpr?: (ctx: NestedWhereExprContext) => void;
653
+ /**
654
+ * Enter a parse tree produced by the `calculatedWhereExpr`
655
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
656
+ * @param ctx the parse tree
657
+ */
658
+ enterCalculatedWhereExpr?: (ctx: CalculatedWhereExprContext) => void;
659
+ /**
660
+ * Exit a parse tree produced by the `calculatedWhereExpr`
661
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
662
+ * @param ctx the parse tree
663
+ */
664
+ exitCalculatedWhereExpr?: (ctx: CalculatedWhereExprContext) => void;
665
+ /**
666
+ * Enter a parse tree produced by the `distanceWhereExpr`
667
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
668
+ * @param ctx the parse tree
669
+ */
670
+ enterDistanceWhereExpr?: (ctx: DistanceWhereExprContext) => void;
671
+ /**
672
+ * Exit a parse tree produced by the `distanceWhereExpr`
673
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
674
+ * @param ctx the parse tree
675
+ */
676
+ exitDistanceWhereExpr?: (ctx: DistanceWhereExprContext) => void;
677
+ /**
678
+ * Enter a parse tree produced by the `simpleWhereExpr`
679
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
680
+ * @param ctx the parse tree
681
+ */
682
+ enterSimpleWhereExpr?: (ctx: SimpleWhereExprContext) => void;
683
+ /**
684
+ * Exit a parse tree produced by the `simpleWhereExpr`
685
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
686
+ * @param ctx the parse tree
687
+ */
688
+ exitSimpleWhereExpr?: (ctx: SimpleWhereExprContext) => void;
689
+ /**
690
+ * Enter a parse tree produced by the `likeWhereExpr`
691
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
692
+ * @param ctx the parse tree
693
+ */
694
+ enterLikeWhereExpr?: (ctx: LikeWhereExprContext) => void;
695
+ /**
696
+ * Exit a parse tree produced by the `likeWhereExpr`
697
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
698
+ * @param ctx the parse tree
699
+ */
700
+ exitLikeWhereExpr?: (ctx: LikeWhereExprContext) => void;
701
+ /**
702
+ * Enter a parse tree produced by the `includesWhereExpr`
703
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
704
+ * @param ctx the parse tree
705
+ */
706
+ enterIncludesWhereExpr?: (ctx: IncludesWhereExprContext) => void;
707
+ /**
708
+ * Exit a parse tree produced by the `includesWhereExpr`
709
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
710
+ * @param ctx the parse tree
711
+ */
712
+ exitIncludesWhereExpr?: (ctx: IncludesWhereExprContext) => void;
713
+ /**
714
+ * Enter a parse tree produced by the `inWhereExprWithSemiJoin`
715
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
716
+ * @param ctx the parse tree
717
+ */
718
+ enterInWhereExprWithSemiJoin?: (ctx: InWhereExprWithSemiJoinContext) => void;
719
+ /**
720
+ * Exit a parse tree produced by the `inWhereExprWithSemiJoin`
721
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
722
+ * @param ctx the parse tree
723
+ */
724
+ exitInWhereExprWithSemiJoin?: (ctx: InWhereExprWithSemiJoinContext) => void;
725
+ /**
726
+ * Enter a parse tree produced by the `inWhereExpr`
727
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
728
+ * @param ctx the parse tree
729
+ */
730
+ enterInWhereExpr?: (ctx: InWhereExprContext) => void;
731
+ /**
732
+ * Exit a parse tree produced by the `inWhereExpr`
733
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
734
+ * @param ctx the parse tree
735
+ */
736
+ exitInWhereExpr?: (ctx: InWhereExprContext) => void;
737
+ /**
738
+ * Enter a parse tree produced by the `inWhereExprForColonExpr`
739
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
740
+ * @param ctx the parse tree
741
+ */
742
+ enterInWhereExprForColonExpr?: (ctx: InWhereExprForColonExprContext) => void;
743
+ /**
744
+ * Exit a parse tree produced by the `inWhereExprForColonExpr`
745
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
746
+ * @param ctx the parse tree
747
+ */
748
+ exitInWhereExprForColonExpr?: (ctx: InWhereExprForColonExprContext) => void;
749
+ /**
750
+ * Enter a parse tree produced by the `soqlLiteralNumberValue`
751
+ * labeled alternative in `SoqlParser.soqlNumberValue`.
752
+ * @param ctx the parse tree
753
+ */
754
+ enterSoqlLiteralNumberValue?: (ctx: SoqlLiteralNumberValueContext) => void;
755
+ /**
756
+ * Exit a parse tree produced by the `soqlLiteralNumberValue`
757
+ * labeled alternative in `SoqlParser.soqlNumberValue`.
758
+ * @param ctx the parse tree
759
+ */
760
+ exitSoqlLiteralNumberValue?: (ctx: SoqlLiteralNumberValueContext) => void;
761
+ /**
762
+ * Enter a parse tree produced by the `soqlOrderByColumnExpr`
763
+ * labeled alternative in `SoqlParser.soqlOrderByClauseField`.
764
+ * @param ctx the parse tree
765
+ */
766
+ enterSoqlOrderByColumnExpr?: (ctx: SoqlOrderByColumnExprContext) => void;
767
+ /**
768
+ * Exit a parse tree produced by the `soqlOrderByColumnExpr`
769
+ * labeled alternative in `SoqlParser.soqlOrderByClauseField`.
770
+ * @param ctx the parse tree
771
+ */
772
+ exitSoqlOrderByColumnExpr?: (ctx: SoqlOrderByColumnExprContext) => void;
773
+ /**
774
+ * Enter a parse tree produced by the `soqlOrderByDistanceExpr`
775
+ * labeled alternative in `SoqlParser.soqlOrderByClauseField`.
776
+ * @param ctx the parse tree
777
+ */
778
+ enterSoqlOrderByDistanceExpr?: (ctx: SoqlOrderByDistanceExprContext) => void;
779
+ /**
780
+ * Exit a parse tree produced by the `soqlOrderByDistanceExpr`
781
+ * labeled alternative in `SoqlParser.soqlOrderByClauseField`.
782
+ * @param ctx the parse tree
783
+ */
784
+ exitSoqlOrderByDistanceExpr?: (ctx: SoqlOrderByDistanceExprContext) => void;
785
+ /**
786
+ * Enter a parse tree produced by `SoqlParser.parseReservedForFieldName`.
787
+ * @param ctx the parse tree
788
+ */
789
+ enterParseReservedForFieldName?: (ctx: ParseReservedForFieldNameContext) => void;
790
+ /**
791
+ * Exit a parse tree produced by `SoqlParser.parseReservedForFieldName`.
792
+ * @param ctx the parse tree
793
+ */
794
+ exitParseReservedForFieldName?: (ctx: ParseReservedForFieldNameContext) => void;
795
+ /**
796
+ * Enter a parse tree produced by `SoqlParser.soqlIdentifier`.
797
+ * @param ctx the parse tree
798
+ */
799
+ enterSoqlIdentifier?: (ctx: SoqlIdentifierContext) => void;
800
+ /**
801
+ * Exit a parse tree produced by `SoqlParser.soqlIdentifier`.
802
+ * @param ctx the parse tree
803
+ */
804
+ exitSoqlIdentifier?: (ctx: SoqlIdentifierContext) => void;
805
+ /**
806
+ * Enter a parse tree produced by `SoqlParser.soqlIdentifierNoReserved`.
807
+ * @param ctx the parse tree
808
+ */
809
+ enterSoqlIdentifierNoReserved?: (ctx: SoqlIdentifierNoReservedContext) => void;
810
+ /**
811
+ * Exit a parse tree produced by `SoqlParser.soqlIdentifierNoReserved`.
812
+ * @param ctx the parse tree
813
+ */
814
+ exitSoqlIdentifierNoReserved?: (ctx: SoqlIdentifierNoReservedContext) => void;
815
+ /**
816
+ * Enter a parse tree produced by `SoqlParser.soqlIdentifiers`.
817
+ * @param ctx the parse tree
818
+ */
819
+ enterSoqlIdentifiers?: (ctx: SoqlIdentifiersContext) => void;
820
+ /**
821
+ * Exit a parse tree produced by `SoqlParser.soqlIdentifiers`.
822
+ * @param ctx the parse tree
823
+ */
824
+ exitSoqlIdentifiers?: (ctx: SoqlIdentifiersContext) => void;
825
+ /**
826
+ * Enter a parse tree produced by `SoqlParser.soqlField`.
827
+ * @param ctx the parse tree
828
+ */
829
+ enterSoqlField?: (ctx: SoqlFieldContext) => void;
830
+ /**
831
+ * Exit a parse tree produced by `SoqlParser.soqlField`.
832
+ * @param ctx the parse tree
833
+ */
834
+ exitSoqlField?: (ctx: SoqlFieldContext) => void;
835
+ /**
836
+ * Enter a parse tree produced by `SoqlParser.soqlTypeofOperand`.
837
+ * @param ctx the parse tree
838
+ */
839
+ enterSoqlTypeofOperand?: (ctx: SoqlTypeofOperandContext) => void;
840
+ /**
841
+ * Exit a parse tree produced by `SoqlParser.soqlTypeofOperand`.
842
+ * @param ctx the parse tree
843
+ */
844
+ exitSoqlTypeofOperand?: (ctx: SoqlTypeofOperandContext) => void;
845
+ /**
846
+ * Enter a parse tree produced by `SoqlParser.soqlWhenOperand`.
847
+ * @param ctx the parse tree
848
+ */
849
+ enterSoqlWhenOperand?: (ctx: SoqlWhenOperandContext) => void;
850
+ /**
851
+ * Exit a parse tree produced by `SoqlParser.soqlWhenOperand`.
852
+ * @param ctx the parse tree
853
+ */
854
+ exitSoqlWhenOperand?: (ctx: SoqlWhenOperandContext) => void;
855
+ /**
856
+ * Enter a parse tree produced by `SoqlParser.soqlResultExpr`.
857
+ * @param ctx the parse tree
858
+ */
859
+ enterSoqlResultExpr?: (ctx: SoqlResultExprContext) => void;
860
+ /**
861
+ * Exit a parse tree produced by `SoqlParser.soqlResultExpr`.
862
+ * @param ctx the parse tree
863
+ */
864
+ exitSoqlResultExpr?: (ctx: SoqlResultExprContext) => void;
865
+ /**
866
+ * Enter a parse tree produced by `SoqlParser.soqlWhenExpr`.
867
+ * @param ctx the parse tree
868
+ */
869
+ enterSoqlWhenExpr?: (ctx: SoqlWhenExprContext) => void;
870
+ /**
871
+ * Exit a parse tree produced by `SoqlParser.soqlWhenExpr`.
872
+ * @param ctx the parse tree
873
+ */
874
+ exitSoqlWhenExpr?: (ctx: SoqlWhenExprContext) => void;
875
+ /**
876
+ * Enter a parse tree produced by `SoqlParser.soqlElseExpr`.
877
+ * @param ctx the parse tree
878
+ */
879
+ enterSoqlElseExpr?: (ctx: SoqlElseExprContext) => void;
880
+ /**
881
+ * Exit a parse tree produced by `SoqlParser.soqlElseExpr`.
882
+ * @param ctx the parse tree
883
+ */
884
+ exitSoqlElseExpr?: (ctx: SoqlElseExprContext) => void;
885
+ /**
886
+ * Enter a parse tree produced by `SoqlParser.soqlTypeofExpr`.
887
+ * @param ctx the parse tree
888
+ */
889
+ enterSoqlTypeofExpr?: (ctx: SoqlTypeofExprContext) => void;
890
+ /**
891
+ * Exit a parse tree produced by `SoqlParser.soqlTypeofExpr`.
892
+ * @param ctx the parse tree
893
+ */
894
+ exitSoqlTypeofExpr?: (ctx: SoqlTypeofExprContext) => void;
895
+ /**
896
+ * Enter a parse tree produced by `SoqlParser.soqlAlias`.
897
+ * @param ctx the parse tree
898
+ */
899
+ enterSoqlAlias?: (ctx: SoqlAliasContext) => void;
900
+ /**
901
+ * Exit a parse tree produced by `SoqlParser.soqlAlias`.
902
+ * @param ctx the parse tree
903
+ */
904
+ exitSoqlAlias?: (ctx: SoqlAliasContext) => void;
905
+ /**
906
+ * Enter a parse tree produced by `SoqlParser.soqlInteger`.
907
+ * @param ctx the parse tree
908
+ */
909
+ enterSoqlInteger?: (ctx: SoqlIntegerContext) => void;
910
+ /**
911
+ * Exit a parse tree produced by `SoqlParser.soqlInteger`.
912
+ * @param ctx the parse tree
913
+ */
914
+ exitSoqlInteger?: (ctx: SoqlIntegerContext) => void;
915
+ /**
916
+ * Enter a parse tree produced by `SoqlParser.soqlIntegerValue`.
917
+ * @param ctx the parse tree
918
+ */
919
+ enterSoqlIntegerValue?: (ctx: SoqlIntegerValueContext) => void;
920
+ /**
921
+ * Exit a parse tree produced by `SoqlParser.soqlIntegerValue`.
922
+ * @param ctx the parse tree
923
+ */
924
+ exitSoqlIntegerValue?: (ctx: SoqlIntegerValueContext) => void;
925
+ /**
926
+ * Enter a parse tree produced by `SoqlParser.soqlNumber`.
927
+ * @param ctx the parse tree
928
+ */
929
+ enterSoqlNumber?: (ctx: SoqlNumberContext) => void;
930
+ /**
931
+ * Exit a parse tree produced by `SoqlParser.soqlNumber`.
932
+ * @param ctx the parse tree
933
+ */
934
+ exitSoqlNumber?: (ctx: SoqlNumberContext) => void;
935
+ /**
936
+ * Enter a parse tree produced by `SoqlParser.soqlNumberValue`.
937
+ * @param ctx the parse tree
938
+ */
939
+ enterSoqlNumberValue?: (ctx: SoqlNumberValueContext) => void;
940
+ /**
941
+ * Exit a parse tree produced by `SoqlParser.soqlNumberValue`.
942
+ * @param ctx the parse tree
943
+ */
944
+ exitSoqlNumberValue?: (ctx: SoqlNumberValueContext) => void;
945
+ /**
946
+ * Enter a parse tree produced by `SoqlParser.soqlGeolocationValue`.
947
+ * @param ctx the parse tree
948
+ */
949
+ enterSoqlGeolocationValue?: (ctx: SoqlGeolocationValueContext) => void;
950
+ /**
951
+ * Exit a parse tree produced by `SoqlParser.soqlGeolocationValue`.
952
+ * @param ctx the parse tree
953
+ */
954
+ exitSoqlGeolocationValue?: (ctx: SoqlGeolocationValueContext) => void;
955
+ /**
956
+ * Enter a parse tree produced by `SoqlParser.soqlDistanceExpr`.
957
+ * @param ctx the parse tree
958
+ */
959
+ enterSoqlDistanceExpr?: (ctx: SoqlDistanceExprContext) => void;
960
+ /**
961
+ * Exit a parse tree produced by `SoqlParser.soqlDistanceExpr`.
962
+ * @param ctx the parse tree
963
+ */
964
+ exitSoqlDistanceExpr?: (ctx: SoqlDistanceExprContext) => void;
965
+ /**
966
+ * Enter a parse tree produced by `SoqlParser.soqlWhereClause`.
967
+ * @param ctx the parse tree
968
+ */
969
+ enterSoqlWhereClause?: (ctx: SoqlWhereClauseContext) => void;
970
+ /**
971
+ * Exit a parse tree produced by `SoqlParser.soqlWhereClause`.
972
+ * @param ctx the parse tree
973
+ */
974
+ exitSoqlWhereClause?: (ctx: SoqlWhereClauseContext) => void;
975
+ /**
976
+ * Enter a parse tree produced by `SoqlParser.soqlWhereExprs`.
977
+ * @param ctx the parse tree
978
+ */
979
+ enterSoqlWhereExprs?: (ctx: SoqlWhereExprsContext) => void;
980
+ /**
981
+ * Exit a parse tree produced by `SoqlParser.soqlWhereExprs`.
982
+ * @param ctx the parse tree
983
+ */
984
+ exitSoqlWhereExprs?: (ctx: SoqlWhereExprsContext) => void;
985
+ /**
986
+ * Enter a parse tree produced by `SoqlParser.soqlAndWhere`.
987
+ * @param ctx the parse tree
988
+ */
989
+ enterSoqlAndWhere?: (ctx: SoqlAndWhereContext) => void;
990
+ /**
991
+ * Exit a parse tree produced by `SoqlParser.soqlAndWhere`.
992
+ * @param ctx the parse tree
993
+ */
994
+ exitSoqlAndWhere?: (ctx: SoqlAndWhereContext) => void;
995
+ /**
996
+ * Enter a parse tree produced by `SoqlParser.soqlOrWhere`.
997
+ * @param ctx the parse tree
998
+ */
999
+ enterSoqlOrWhere?: (ctx: SoqlOrWhereContext) => void;
1000
+ /**
1001
+ * Exit a parse tree produced by `SoqlParser.soqlOrWhere`.
1002
+ * @param ctx the parse tree
1003
+ */
1004
+ exitSoqlOrWhere?: (ctx: SoqlOrWhereContext) => void;
1005
+ /**
1006
+ * Enter a parse tree produced by `SoqlParser.soqlWhereExpr`.
1007
+ * @param ctx the parse tree
1008
+ */
1009
+ enterSoqlWhereExpr?: (ctx: SoqlWhereExprContext) => void;
1010
+ /**
1011
+ * Exit a parse tree produced by `SoqlParser.soqlWhereExpr`.
1012
+ * @param ctx the parse tree
1013
+ */
1014
+ exitSoqlWhereExpr?: (ctx: SoqlWhereExprContext) => void;
1015
+ /**
1016
+ * Enter a parse tree produced by `SoqlParser.soqlCalcOperator`.
1017
+ * @param ctx the parse tree
1018
+ */
1019
+ enterSoqlCalcOperator?: (ctx: SoqlCalcOperatorContext) => void;
1020
+ /**
1021
+ * Exit a parse tree produced by `SoqlParser.soqlCalcOperator`.
1022
+ * @param ctx the parse tree
1023
+ */
1024
+ exitSoqlCalcOperator?: (ctx: SoqlCalcOperatorContext) => void;
1025
+ /**
1026
+ * Enter a parse tree produced by `SoqlParser.soqlLiteralValues`.
1027
+ * @param ctx the parse tree
1028
+ */
1029
+ enterSoqlLiteralValues?: (ctx: SoqlLiteralValuesContext) => void;
1030
+ /**
1031
+ * Exit a parse tree produced by `SoqlParser.soqlLiteralValues`.
1032
+ * @param ctx the parse tree
1033
+ */
1034
+ exitSoqlLiteralValues?: (ctx: SoqlLiteralValuesContext) => void;
1035
+ /**
1036
+ * Enter a parse tree produced by `SoqlParser.soqlIncludesOperator`.
1037
+ * @param ctx the parse tree
1038
+ */
1039
+ enterSoqlIncludesOperator?: (ctx: SoqlIncludesOperatorContext) => void;
1040
+ /**
1041
+ * Exit a parse tree produced by `SoqlParser.soqlIncludesOperator`.
1042
+ * @param ctx the parse tree
1043
+ */
1044
+ exitSoqlIncludesOperator?: (ctx: SoqlIncludesOperatorContext) => void;
1045
+ /**
1046
+ * Enter a parse tree produced by `SoqlParser.soqlInOperator`.
1047
+ * @param ctx the parse tree
1048
+ */
1049
+ enterSoqlInOperator?: (ctx: SoqlInOperatorContext) => void;
1050
+ /**
1051
+ * Exit a parse tree produced by `SoqlParser.soqlInOperator`.
1052
+ * @param ctx the parse tree
1053
+ */
1054
+ exitSoqlInOperator?: (ctx: SoqlInOperatorContext) => void;
1055
+ /**
1056
+ * Enter a parse tree produced by `SoqlParser.soqlComparisonOperator`.
1057
+ * @param ctx the parse tree
1058
+ */
1059
+ enterSoqlComparisonOperator?: (ctx: SoqlComparisonOperatorContext) => void;
1060
+ /**
1061
+ * Exit a parse tree produced by `SoqlParser.soqlComparisonOperator`.
1062
+ * @param ctx the parse tree
1063
+ */
1064
+ exitSoqlComparisonOperator?: (ctx: SoqlComparisonOperatorContext) => void;
1065
+ /**
1066
+ * Enter a parse tree produced by `SoqlParser.soqlCommonOperator`.
1067
+ * @param ctx the parse tree
1068
+ */
1069
+ enterSoqlCommonOperator?: (ctx: SoqlCommonOperatorContext) => void;
1070
+ /**
1071
+ * Exit a parse tree produced by `SoqlParser.soqlCommonOperator`.
1072
+ * @param ctx the parse tree
1073
+ */
1074
+ exitSoqlCommonOperator?: (ctx: SoqlCommonOperatorContext) => void;
1075
+ /**
1076
+ * Enter a parse tree produced by `SoqlParser.soqlLikeValue`.
1077
+ * @param ctx the parse tree
1078
+ */
1079
+ enterSoqlLikeValue?: (ctx: SoqlLikeValueContext) => void;
1080
+ /**
1081
+ * Exit a parse tree produced by `SoqlParser.soqlLikeValue`.
1082
+ * @param ctx the parse tree
1083
+ */
1084
+ exitSoqlLikeValue?: (ctx: SoqlLikeValueContext) => void;
1085
+ /**
1086
+ * Enter a parse tree produced by `SoqlParser.soqlLikeLiteral`.
1087
+ * @param ctx the parse tree
1088
+ */
1089
+ enterSoqlLikeLiteral?: (ctx: SoqlLikeLiteralContext) => void;
1090
+ /**
1091
+ * Exit a parse tree produced by `SoqlParser.soqlLikeLiteral`.
1092
+ * @param ctx the parse tree
1093
+ */
1094
+ exitSoqlLikeLiteral?: (ctx: SoqlLikeLiteralContext) => void;
1095
+ /**
1096
+ * Enter a parse tree produced by `SoqlParser.soqlCommonLiterals`.
1097
+ * @param ctx the parse tree
1098
+ */
1099
+ enterSoqlCommonLiterals?: (ctx: SoqlCommonLiteralsContext) => void;
1100
+ /**
1101
+ * Exit a parse tree produced by `SoqlParser.soqlCommonLiterals`.
1102
+ * @param ctx the parse tree
1103
+ */
1104
+ exitSoqlCommonLiterals?: (ctx: SoqlCommonLiteralsContext) => void;
1105
+ /**
1106
+ * Enter a parse tree produced by `SoqlParser.soqlLiteralValue`.
1107
+ * @param ctx the parse tree
1108
+ */
1109
+ enterSoqlLiteralValue?: (ctx: SoqlLiteralValueContext) => void;
1110
+ /**
1111
+ * Exit a parse tree produced by `SoqlParser.soqlLiteralValue`.
1112
+ * @param ctx the parse tree
1113
+ */
1114
+ exitSoqlLiteralValue?: (ctx: SoqlLiteralValueContext) => void;
1115
+ /**
1116
+ * Enter a parse tree produced by `SoqlParser.soqlCurrencyLiteral`.
1117
+ * @param ctx the parse tree
1118
+ */
1119
+ enterSoqlCurrencyLiteral?: (ctx: SoqlCurrencyLiteralContext) => void;
1120
+ /**
1121
+ * Exit a parse tree produced by `SoqlParser.soqlCurrencyLiteral`.
1122
+ * @param ctx the parse tree
1123
+ */
1124
+ exitSoqlCurrencyLiteral?: (ctx: SoqlCurrencyLiteralContext) => void;
1125
+ /**
1126
+ * Enter a parse tree produced by `SoqlParser.soqlColonExpr`.
1127
+ * @param ctx the parse tree
1128
+ */
1129
+ enterSoqlColonExpr?: (ctx: SoqlColonExprContext) => void;
1130
+ /**
1131
+ * Exit a parse tree produced by `SoqlParser.soqlColonExpr`.
1132
+ * @param ctx the parse tree
1133
+ */
1134
+ exitSoqlColonExpr?: (ctx: SoqlColonExprContext) => void;
1135
+ /**
1136
+ * Enter a parse tree produced by `SoqlParser.soqlLiteral`.
1137
+ * @param ctx the parse tree
1138
+ */
1139
+ enterSoqlLiteral?: (ctx: SoqlLiteralContext) => void;
1140
+ /**
1141
+ * Exit a parse tree produced by `SoqlParser.soqlLiteral`.
1142
+ * @param ctx the parse tree
1143
+ */
1144
+ exitSoqlLiteral?: (ctx: SoqlLiteralContext) => void;
1145
+ /**
1146
+ * Enter a parse tree produced by `SoqlParser.nonValidatedEscapeStringLiteral`.
1147
+ * @param ctx the parse tree
1148
+ */
1149
+ enterNonValidatedEscapeStringLiteral?: (ctx: NonValidatedEscapeStringLiteralContext) => void;
1150
+ /**
1151
+ * Exit a parse tree produced by `SoqlParser.nonValidatedEscapeStringLiteral`.
1152
+ * @param ctx the parse tree
1153
+ */
1154
+ exitNonValidatedEscapeStringLiteral?: (ctx: NonValidatedEscapeStringLiteralContext) => void;
1155
+ /**
1156
+ * Enter a parse tree produced by `SoqlParser.nonValidatedEscapeStringLiteralElement`.
1157
+ * @param ctx the parse tree
1158
+ */
1159
+ enterNonValidatedEscapeStringLiteralElement?: (ctx: NonValidatedEscapeStringLiteralElementContext) => void;
1160
+ /**
1161
+ * Exit a parse tree produced by `SoqlParser.nonValidatedEscapeStringLiteralElement`.
1162
+ * @param ctx the parse tree
1163
+ */
1164
+ exitNonValidatedEscapeStringLiteralElement?: (ctx: NonValidatedEscapeStringLiteralElementContext) => void;
1165
+ /**
1166
+ * Enter a parse tree produced by `SoqlParser.validatedEscapeStringLiteral`.
1167
+ * @param ctx the parse tree
1168
+ */
1169
+ enterValidatedEscapeStringLiteral?: (ctx: ValidatedEscapeStringLiteralContext) => void;
1170
+ /**
1171
+ * Exit a parse tree produced by `SoqlParser.validatedEscapeStringLiteral`.
1172
+ * @param ctx the parse tree
1173
+ */
1174
+ exitValidatedEscapeStringLiteral?: (ctx: ValidatedEscapeStringLiteralContext) => void;
1175
+ /**
1176
+ * Enter a parse tree produced by `SoqlParser.validatedEscapeStringLiteralElement`.
1177
+ * @param ctx the parse tree
1178
+ */
1179
+ enterValidatedEscapeStringLiteralElement?: (ctx: ValidatedEscapeStringLiteralElementContext) => void;
1180
+ /**
1181
+ * Exit a parse tree produced by `SoqlParser.validatedEscapeStringLiteralElement`.
1182
+ * @param ctx the parse tree
1183
+ */
1184
+ exitValidatedEscapeStringLiteralElement?: (ctx: ValidatedEscapeStringLiteralElementContext) => void;
1185
+ /**
1186
+ * Enter a parse tree produced by `SoqlParser.validatedEscapeLikeStringLiteral`.
1187
+ * @param ctx the parse tree
1188
+ */
1189
+ enterValidatedEscapeLikeStringLiteral?: (ctx: ValidatedEscapeLikeStringLiteralContext) => void;
1190
+ /**
1191
+ * Exit a parse tree produced by `SoqlParser.validatedEscapeLikeStringLiteral`.
1192
+ * @param ctx the parse tree
1193
+ */
1194
+ exitValidatedEscapeLikeStringLiteral?: (ctx: ValidatedEscapeLikeStringLiteralContext) => void;
1195
+ /**
1196
+ * Enter a parse tree produced by `SoqlParser.validatedEscapeLikeStringLiteralElements`.
1197
+ * @param ctx the parse tree
1198
+ */
1199
+ enterValidatedEscapeLikeStringLiteralElements?: (ctx: ValidatedEscapeLikeStringLiteralElementsContext) => void;
1200
+ /**
1201
+ * Exit a parse tree produced by `SoqlParser.validatedEscapeLikeStringLiteralElements`.
1202
+ * @param ctx the parse tree
1203
+ */
1204
+ exitValidatedEscapeLikeStringLiteralElements?: (ctx: ValidatedEscapeLikeStringLiteralElementsContext) => void;
1205
+ /**
1206
+ * Enter a parse tree produced by `SoqlParser.validatedCommonSoqlStringLiteralElements`.
1207
+ * @param ctx the parse tree
1208
+ */
1209
+ enterValidatedCommonSoqlStringLiteralElements?: (ctx: ValidatedCommonSoqlStringLiteralElementsContext) => void;
1210
+ /**
1211
+ * Exit a parse tree produced by `SoqlParser.validatedCommonSoqlStringLiteralElements`.
1212
+ * @param ctx the parse tree
1213
+ */
1214
+ exitValidatedCommonSoqlStringLiteralElements?: (ctx: ValidatedCommonSoqlStringLiteralElementsContext) => void;
1215
+ /**
1216
+ * Enter a parse tree produced by `SoqlParser.soqlSelectExpr`.
1217
+ * @param ctx the parse tree
1218
+ */
1219
+ enterSoqlSelectExpr?: (ctx: SoqlSelectExprContext) => void;
1220
+ /**
1221
+ * Exit a parse tree produced by `SoqlParser.soqlSelectExpr`.
1222
+ * @param ctx the parse tree
1223
+ */
1224
+ exitSoqlSelectExpr?: (ctx: SoqlSelectExprContext) => void;
1225
+ /**
1226
+ * Enter a parse tree produced by `SoqlParser.soqlSelectExprs`.
1227
+ * @param ctx the parse tree
1228
+ */
1229
+ enterSoqlSelectExprs?: (ctx: SoqlSelectExprsContext) => void;
1230
+ /**
1231
+ * Exit a parse tree produced by `SoqlParser.soqlSelectExprs`.
1232
+ * @param ctx the parse tree
1233
+ */
1234
+ exitSoqlSelectExprs?: (ctx: SoqlSelectExprsContext) => void;
1235
+ /**
1236
+ * Enter a parse tree produced by `SoqlParser.soqlFromClause`.
1237
+ * @param ctx the parse tree
1238
+ */
1239
+ enterSoqlFromClause?: (ctx: SoqlFromClauseContext) => void;
1240
+ /**
1241
+ * Exit a parse tree produced by `SoqlParser.soqlFromClause`.
1242
+ * @param ctx the parse tree
1243
+ */
1244
+ exitSoqlFromClause?: (ctx: SoqlFromClauseContext) => void;
1245
+ /**
1246
+ * Enter a parse tree produced by `SoqlParser.soqlFromExprs`.
1247
+ * @param ctx the parse tree
1248
+ */
1249
+ enterSoqlFromExprs?: (ctx: SoqlFromExprsContext) => void;
1250
+ /**
1251
+ * Exit a parse tree produced by `SoqlParser.soqlFromExprs`.
1252
+ * @param ctx the parse tree
1253
+ */
1254
+ exitSoqlFromExprs?: (ctx: SoqlFromExprsContext) => void;
1255
+ /**
1256
+ * Enter a parse tree produced by `SoqlParser.soqlFromExpr`.
1257
+ * @param ctx the parse tree
1258
+ */
1259
+ enterSoqlFromExpr?: (ctx: SoqlFromExprContext) => void;
1260
+ /**
1261
+ * Exit a parse tree produced by `SoqlParser.soqlFromExpr`.
1262
+ * @param ctx the parse tree
1263
+ */
1264
+ exitSoqlFromExpr?: (ctx: SoqlFromExprContext) => void;
1265
+ /**
1266
+ * Enter a parse tree produced by `SoqlParser.soqlUsingClause`.
1267
+ * @param ctx the parse tree
1268
+ */
1269
+ enterSoqlUsingClause?: (ctx: SoqlUsingClauseContext) => void;
1270
+ /**
1271
+ * Exit a parse tree produced by `SoqlParser.soqlUsingClause`.
1272
+ * @param ctx the parse tree
1273
+ */
1274
+ exitSoqlUsingClause?: (ctx: SoqlUsingClauseContext) => void;
1275
+ /**
1276
+ * Enter a parse tree produced by `SoqlParser.soqlUsingPre192Expr`.
1277
+ * @param ctx the parse tree
1278
+ */
1279
+ enterSoqlUsingPre192Expr?: (ctx: SoqlUsingPre192ExprContext) => void;
1280
+ /**
1281
+ * Exit a parse tree produced by `SoqlParser.soqlUsingPre192Expr`.
1282
+ * @param ctx the parse tree
1283
+ */
1284
+ exitSoqlUsingPre192Expr?: (ctx: SoqlUsingPre192ExprContext) => void;
1285
+ /**
1286
+ * Enter a parse tree produced by `SoqlParser.soqlUsingExprs`.
1287
+ * @param ctx the parse tree
1288
+ */
1289
+ enterSoqlUsingExprs?: (ctx: SoqlUsingExprsContext) => void;
1290
+ /**
1291
+ * Exit a parse tree produced by `SoqlParser.soqlUsingExprs`.
1292
+ * @param ctx the parse tree
1293
+ */
1294
+ exitSoqlUsingExprs?: (ctx: SoqlUsingExprsContext) => void;
1295
+ /**
1296
+ * Enter a parse tree produced by `SoqlParser.soqlUsingExpr`.
1297
+ * @param ctx the parse tree
1298
+ */
1299
+ enterSoqlUsingExpr?: (ctx: SoqlUsingExprContext) => void;
1300
+ /**
1301
+ * Exit a parse tree produced by `SoqlParser.soqlUsingExpr`.
1302
+ * @param ctx the parse tree
1303
+ */
1304
+ exitSoqlUsingExpr?: (ctx: SoqlUsingExprContext) => void;
1305
+ /**
1306
+ * Enter a parse tree produced by `SoqlParser.soqlDataCategoryOperator`.
1307
+ * @param ctx the parse tree
1308
+ */
1309
+ enterSoqlDataCategoryOperator?: (ctx: SoqlDataCategoryOperatorContext) => void;
1310
+ /**
1311
+ * Exit a parse tree produced by `SoqlParser.soqlDataCategoryOperator`.
1312
+ * @param ctx the parse tree
1313
+ */
1314
+ exitSoqlDataCategoryOperator?: (ctx: SoqlDataCategoryOperatorContext) => void;
1315
+ /**
1316
+ * Enter a parse tree produced by `SoqlParser.soqlDataCategoryExpr`.
1317
+ * @param ctx the parse tree
1318
+ */
1319
+ enterSoqlDataCategoryExpr?: (ctx: SoqlDataCategoryExprContext) => void;
1320
+ /**
1321
+ * Exit a parse tree produced by `SoqlParser.soqlDataCategoryExpr`.
1322
+ * @param ctx the parse tree
1323
+ */
1324
+ exitSoqlDataCategoryExpr?: (ctx: SoqlDataCategoryExprContext) => void;
1325
+ /**
1326
+ * Enter a parse tree produced by `SoqlParser.soqlWithValue`.
1327
+ * @param ctx the parse tree
1328
+ */
1329
+ enterSoqlWithValue?: (ctx: SoqlWithValueContext) => void;
1330
+ /**
1331
+ * Exit a parse tree produced by `SoqlParser.soqlWithValue`.
1332
+ * @param ctx the parse tree
1333
+ */
1334
+ exitSoqlWithValue?: (ctx: SoqlWithValueContext) => void;
1335
+ /**
1336
+ * Enter a parse tree produced by `SoqlParser.soqlWithKeyValue`.
1337
+ * @param ctx the parse tree
1338
+ */
1339
+ enterSoqlWithKeyValue?: (ctx: SoqlWithKeyValueContext) => void;
1340
+ /**
1341
+ * Exit a parse tree produced by `SoqlParser.soqlWithKeyValue`.
1342
+ * @param ctx the parse tree
1343
+ */
1344
+ exitSoqlWithKeyValue?: (ctx: SoqlWithKeyValueContext) => void;
1345
+ /**
1346
+ * Enter a parse tree produced by `SoqlParser.soqlWithClause`.
1347
+ * @param ctx the parse tree
1348
+ */
1349
+ enterSoqlWithClause?: (ctx: SoqlWithClauseContext) => void;
1350
+ /**
1351
+ * Exit a parse tree produced by `SoqlParser.soqlWithClause`.
1352
+ * @param ctx the parse tree
1353
+ */
1354
+ exitSoqlWithClause?: (ctx: SoqlWithClauseContext) => void;
1355
+ /**
1356
+ * Enter a parse tree produced by `SoqlParser.soqlWithIdentifierClause`.
1357
+ * @param ctx the parse tree
1358
+ */
1359
+ enterSoqlWithIdentifierClause?: (ctx: SoqlWithIdentifierClauseContext) => void;
1360
+ /**
1361
+ * Exit a parse tree produced by `SoqlParser.soqlWithIdentifierClause`.
1362
+ * @param ctx the parse tree
1363
+ */
1364
+ exitSoqlWithIdentifierClause?: (ctx: SoqlWithIdentifierClauseContext) => void;
1365
+ /**
1366
+ * Enter a parse tree produced by `SoqlParser.soqlLimitClause`.
1367
+ * @param ctx the parse tree
1368
+ */
1369
+ enterSoqlLimitClause?: (ctx: SoqlLimitClauseContext) => void;
1370
+ /**
1371
+ * Exit a parse tree produced by `SoqlParser.soqlLimitClause`.
1372
+ * @param ctx the parse tree
1373
+ */
1374
+ exitSoqlLimitClause?: (ctx: SoqlLimitClauseContext) => void;
1375
+ /**
1376
+ * Enter a parse tree produced by `SoqlParser.soqlOffsetClause`.
1377
+ * @param ctx the parse tree
1378
+ */
1379
+ enterSoqlOffsetClause?: (ctx: SoqlOffsetClauseContext) => void;
1380
+ /**
1381
+ * Exit a parse tree produced by `SoqlParser.soqlOffsetClause`.
1382
+ * @param ctx the parse tree
1383
+ */
1384
+ exitSoqlOffsetClause?: (ctx: SoqlOffsetClauseContext) => void;
1385
+ /**
1386
+ * Enter a parse tree produced by `SoqlParser.soqlGroupByExprs`.
1387
+ * @param ctx the parse tree
1388
+ */
1389
+ enterSoqlGroupByExprs?: (ctx: SoqlGroupByExprsContext) => void;
1390
+ /**
1391
+ * Exit a parse tree produced by `SoqlParser.soqlGroupByExprs`.
1392
+ * @param ctx the parse tree
1393
+ */
1394
+ exitSoqlGroupByExprs?: (ctx: SoqlGroupByExprsContext) => void;
1395
+ /**
1396
+ * Enter a parse tree produced by `SoqlParser.soqlGroupByClause`.
1397
+ * @param ctx the parse tree
1398
+ */
1399
+ enterSoqlGroupByClause?: (ctx: SoqlGroupByClauseContext) => void;
1400
+ /**
1401
+ * Exit a parse tree produced by `SoqlParser.soqlGroupByClause`.
1402
+ * @param ctx the parse tree
1403
+ */
1404
+ exitSoqlGroupByClause?: (ctx: SoqlGroupByClauseContext) => void;
1405
+ /**
1406
+ * Enter a parse tree produced by `SoqlParser.soqlHavingClause`.
1407
+ * @param ctx the parse tree
1408
+ */
1409
+ enterSoqlHavingClause?: (ctx: SoqlHavingClauseContext) => void;
1410
+ /**
1411
+ * Exit a parse tree produced by `SoqlParser.soqlHavingClause`.
1412
+ * @param ctx the parse tree
1413
+ */
1414
+ exitSoqlHavingClause?: (ctx: SoqlHavingClauseContext) => void;
1415
+ /**
1416
+ * Enter a parse tree produced by `SoqlParser.soqlOrderByClauseField`.
1417
+ * @param ctx the parse tree
1418
+ */
1419
+ enterSoqlOrderByClauseField?: (ctx: SoqlOrderByClauseFieldContext) => void;
1420
+ /**
1421
+ * Exit a parse tree produced by `SoqlParser.soqlOrderByClauseField`.
1422
+ * @param ctx the parse tree
1423
+ */
1424
+ exitSoqlOrderByClauseField?: (ctx: SoqlOrderByClauseFieldContext) => void;
1425
+ /**
1426
+ * Enter a parse tree produced by `SoqlParser.soqlOrderByClauseExpr`.
1427
+ * @param ctx the parse tree
1428
+ */
1429
+ enterSoqlOrderByClauseExpr?: (ctx: SoqlOrderByClauseExprContext) => void;
1430
+ /**
1431
+ * Exit a parse tree produced by `SoqlParser.soqlOrderByClauseExpr`.
1432
+ * @param ctx the parse tree
1433
+ */
1434
+ exitSoqlOrderByClauseExpr?: (ctx: SoqlOrderByClauseExprContext) => void;
1435
+ /**
1436
+ * Enter a parse tree produced by `SoqlParser.soqlOrderByClauseExprs`.
1437
+ * @param ctx the parse tree
1438
+ */
1439
+ enterSoqlOrderByClauseExprs?: (ctx: SoqlOrderByClauseExprsContext) => void;
1440
+ /**
1441
+ * Exit a parse tree produced by `SoqlParser.soqlOrderByClauseExprs`.
1442
+ * @param ctx the parse tree
1443
+ */
1444
+ exitSoqlOrderByClauseExprs?: (ctx: SoqlOrderByClauseExprsContext) => void;
1445
+ /**
1446
+ * Enter a parse tree produced by `SoqlParser.soqlOrderByClause`.
1447
+ * @param ctx the parse tree
1448
+ */
1449
+ enterSoqlOrderByClause?: (ctx: SoqlOrderByClauseContext) => void;
1450
+ /**
1451
+ * Exit a parse tree produced by `SoqlParser.soqlOrderByClause`.
1452
+ * @param ctx the parse tree
1453
+ */
1454
+ exitSoqlOrderByClause?: (ctx: SoqlOrderByClauseContext) => void;
1455
+ /**
1456
+ * Enter a parse tree produced by `SoqlParser.soqlBindClauseExpr`.
1457
+ * @param ctx the parse tree
1458
+ */
1459
+ enterSoqlBindClauseExpr?: (ctx: SoqlBindClauseExprContext) => void;
1460
+ /**
1461
+ * Exit a parse tree produced by `SoqlParser.soqlBindClauseExpr`.
1462
+ * @param ctx the parse tree
1463
+ */
1464
+ exitSoqlBindClauseExpr?: (ctx: SoqlBindClauseExprContext) => void;
1465
+ /**
1466
+ * Enter a parse tree produced by `SoqlParser.soqlBindClauseExprs`.
1467
+ * @param ctx the parse tree
1468
+ */
1469
+ enterSoqlBindClauseExprs?: (ctx: SoqlBindClauseExprsContext) => void;
1470
+ /**
1471
+ * Exit a parse tree produced by `SoqlParser.soqlBindClauseExprs`.
1472
+ * @param ctx the parse tree
1473
+ */
1474
+ exitSoqlBindClauseExprs?: (ctx: SoqlBindClauseExprsContext) => void;
1475
+ /**
1476
+ * Enter a parse tree produced by `SoqlParser.soqlBindClause`.
1477
+ * @param ctx the parse tree
1478
+ */
1479
+ enterSoqlBindClause?: (ctx: SoqlBindClauseContext) => void;
1480
+ /**
1481
+ * Exit a parse tree produced by `SoqlParser.soqlBindClause`.
1482
+ * @param ctx the parse tree
1483
+ */
1484
+ exitSoqlBindClause?: (ctx: SoqlBindClauseContext) => void;
1485
+ /**
1486
+ * Enter a parse tree produced by `SoqlParser.soqlRecordTrackingType`.
1487
+ * @param ctx the parse tree
1488
+ */
1489
+ enterSoqlRecordTrackingType?: (ctx: SoqlRecordTrackingTypeContext) => void;
1490
+ /**
1491
+ * Exit a parse tree produced by `SoqlParser.soqlRecordTrackingType`.
1492
+ * @param ctx the parse tree
1493
+ */
1494
+ exitSoqlRecordTrackingType?: (ctx: SoqlRecordTrackingTypeContext) => void;
1495
+ /**
1496
+ * Enter a parse tree produced by `SoqlParser.soqlUpdateStatsClause`.
1497
+ * @param ctx the parse tree
1498
+ */
1499
+ enterSoqlUpdateStatsClause?: (ctx: SoqlUpdateStatsClauseContext) => void;
1500
+ /**
1501
+ * Exit a parse tree produced by `SoqlParser.soqlUpdateStatsClause`.
1502
+ * @param ctx the parse tree
1503
+ */
1504
+ exitSoqlUpdateStatsClause?: (ctx: SoqlUpdateStatsClauseContext) => void;
1505
+ /**
1506
+ * Enter a parse tree produced by `SoqlParser.soqlSelectClause`.
1507
+ * @param ctx the parse tree
1508
+ */
1509
+ enterSoqlSelectClause?: (ctx: SoqlSelectClauseContext) => void;
1510
+ /**
1511
+ * Exit a parse tree produced by `SoqlParser.soqlSelectClause`.
1512
+ * @param ctx the parse tree
1513
+ */
1514
+ exitSoqlSelectClause?: (ctx: SoqlSelectClauseContext) => void;
1515
+ /**
1516
+ * Enter a parse tree produced by `SoqlParser.soqlSemiJoin`.
1517
+ * @param ctx the parse tree
1518
+ */
1519
+ enterSoqlSemiJoin?: (ctx: SoqlSemiJoinContext) => void;
1520
+ /**
1521
+ * Exit a parse tree produced by `SoqlParser.soqlSemiJoin`.
1522
+ * @param ctx the parse tree
1523
+ */
1524
+ exitSoqlSemiJoin?: (ctx: SoqlSemiJoinContext) => void;
1525
+ /**
1526
+ * Enter a parse tree produced by `SoqlParser.soqlInnerQuery`.
1527
+ * @param ctx the parse tree
1528
+ */
1529
+ enterSoqlInnerQuery?: (ctx: SoqlInnerQueryContext) => void;
1530
+ /**
1531
+ * Exit a parse tree produced by `SoqlParser.soqlInnerQuery`.
1532
+ * @param ctx the parse tree
1533
+ */
1534
+ exitSoqlInnerQuery?: (ctx: SoqlInnerQueryContext) => void;
1535
+ /**
1536
+ * Enter a parse tree produced by `SoqlParser.soqlQuery`.
1537
+ * @param ctx the parse tree
1538
+ */
1539
+ enterSoqlQuery?: (ctx: SoqlQueryContext) => void;
1540
+ /**
1541
+ * Exit a parse tree produced by `SoqlParser.soqlQuery`.
1542
+ * @param ctx the parse tree
1543
+ */
1544
+ exitSoqlQuery?: (ctx: SoqlQueryContext) => void;
1545
+ }