@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,974 @@
1
+ import { ParseTreeVisitor } from "antlr4ts/tree/ParseTreeVisitor";
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 generic visitor for a parse tree produced
134
+ * by `SoqlParser`.
135
+ *
136
+ * @param <Result> The return type of the visit operation. Use `void` for
137
+ * operations with no return type.
138
+ */
139
+ export interface SoqlParserVisitor<Result> extends ParseTreeVisitor<Result> {
140
+ /**
141
+ * Visit a parse tree produced by the `soqlLiteralIntegerValue`
142
+ * labeled alternative in `SoqlParser.soqlIntegerValue`.
143
+ * @param ctx the parse tree
144
+ * @return the visitor result
145
+ */
146
+ visitSoqlLiteralIntegerValue?: (ctx: SoqlLiteralIntegerValueContext) => Result;
147
+ /**
148
+ * Visit a parse tree produced by the `soqlColonExprIntegerValue`
149
+ * labeled alternative in `SoqlParser.soqlIntegerValue`.
150
+ * @param ctx the parse tree
151
+ * @return the visitor result
152
+ */
153
+ visitSoqlColonExprIntegerValue?: (ctx: SoqlColonExprIntegerValueContext) => Result;
154
+ /**
155
+ * Visit a parse tree produced by the `soqlSelectColumnExpr`
156
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
157
+ * @param ctx the parse tree
158
+ * @return the visitor result
159
+ */
160
+ visitSoqlSelectColumnExpr?: (ctx: SoqlSelectColumnExprContext) => Result;
161
+ /**
162
+ * Visit a parse tree produced by the `soqlSelectInnerQueryExpr`
163
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
164
+ * @param ctx the parse tree
165
+ * @return the visitor result
166
+ */
167
+ visitSoqlSelectInnerQueryExpr?: (ctx: SoqlSelectInnerQueryExprContext) => Result;
168
+ /**
169
+ * Visit a parse tree produced by the `soqlSelectTypeofExpr`
170
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
171
+ * @param ctx the parse tree
172
+ * @return the visitor result
173
+ */
174
+ visitSoqlSelectTypeofExpr?: (ctx: SoqlSelectTypeofExprContext) => Result;
175
+ /**
176
+ * Visit a parse tree produced by the `soqlSelectDistanceExpr`
177
+ * labeled alternative in `SoqlParser.soqlSelectExpr`.
178
+ * @param ctx the parse tree
179
+ * @return the visitor result
180
+ */
181
+ visitSoqlSelectDistanceExpr?: (ctx: SoqlSelectDistanceExprContext) => Result;
182
+ /**
183
+ * Visit a parse tree produced by the `soqlUsingPre192ExprWithScope`
184
+ * labeled alternative in `SoqlParser.soqlUsingPre192Expr`.
185
+ * @param ctx the parse tree
186
+ * @return the visitor result
187
+ */
188
+ visitSoqlUsingPre192ExprWithScope?: (ctx: SoqlUsingPre192ExprWithScopeContext) => Result;
189
+ /**
190
+ * Visit a parse tree produced by the `soqlUsingPre192ExprDefault`
191
+ * labeled alternative in `SoqlParser.soqlUsingPre192Expr`.
192
+ * @param ctx the parse tree
193
+ * @return the visitor result
194
+ */
195
+ visitSoqlUsingPre192ExprDefault?: (ctx: SoqlUsingPre192ExprDefaultContext) => Result;
196
+ /**
197
+ * Visit a parse tree produced by the `soqlUsingPre192ExprWithNoScope`
198
+ * labeled alternative in `SoqlParser.soqlUsingPre192Expr`.
199
+ * @param ctx the parse tree
200
+ * @return the visitor result
201
+ */
202
+ visitSoqlUsingPre192ExprWithNoScope?: (ctx: SoqlUsingPre192ExprWithNoScopeContext) => Result;
203
+ /**
204
+ * Visit a parse tree produced by the `soqlLiteralGeolocationValue`
205
+ * labeled alternative in `SoqlParser.soqlGeolocationValue`.
206
+ * @param ctx the parse tree
207
+ * @return the visitor result
208
+ */
209
+ visitSoqlLiteralGeolocationValue?: (ctx: SoqlLiteralGeolocationValueContext) => Result;
210
+ /**
211
+ * Visit a parse tree produced by the `soqlColonExprGeolocationValue`
212
+ * labeled alternative in `SoqlParser.soqlGeolocationValue`.
213
+ * @param ctx the parse tree
214
+ * @return the visitor result
215
+ */
216
+ visitSoqlColonExprGeolocationValue?: (ctx: SoqlColonExprGeolocationValueContext) => Result;
217
+ /**
218
+ * Visit a parse tree produced by the `soqlLiteralLikeValue`
219
+ * labeled alternative in `SoqlParser.soqlLikeValue`.
220
+ * @param ctx the parse tree
221
+ * @return the visitor result
222
+ */
223
+ visitSoqlLiteralLikeValue?: (ctx: SoqlLiteralLikeValueContext) => Result;
224
+ /**
225
+ * Visit a parse tree produced by the `soqlColonLikeValue`
226
+ * labeled alternative in `SoqlParser.soqlLikeValue`.
227
+ * @param ctx the parse tree
228
+ * @return the visitor result
229
+ */
230
+ visitSoqlColonLikeValue?: (ctx: SoqlColonLikeValueContext) => Result;
231
+ /**
232
+ * Visit a parse tree produced by the `soqlWhereAndOrExpr`
233
+ * labeled alternative in `SoqlParser.soqlWhereExprs`.
234
+ * @param ctx the parse tree
235
+ * @return the visitor result
236
+ */
237
+ visitSoqlWhereAndOrExpr?: (ctx: SoqlWhereAndOrExprContext) => Result;
238
+ /**
239
+ * Visit a parse tree produced by the `soqlWhereNotExpr`
240
+ * labeled alternative in `SoqlParser.soqlWhereExprs`.
241
+ * @param ctx the parse tree
242
+ * @return the visitor result
243
+ */
244
+ visitSoqlWhereNotExpr?: (ctx: SoqlWhereNotExprContext) => Result;
245
+ /**
246
+ * Visit a parse tree produced by the `soqlWhereClauseMethod`
247
+ * labeled alternative in `SoqlParser.soqlWhereClause`.
248
+ * @param ctx the parse tree
249
+ * @return the visitor result
250
+ */
251
+ visitSoqlWhereClauseMethod?: (ctx: SoqlWhereClauseMethodContext) => Result;
252
+ /**
253
+ * Visit a parse tree produced by the `soqlSelectCountClause`
254
+ * labeled alternative in `SoqlParser.soqlSelectClause`.
255
+ * @param ctx the parse tree
256
+ * @return the visitor result
257
+ */
258
+ visitSoqlSelectCountClause?: (ctx: SoqlSelectCountClauseContext) => Result;
259
+ /**
260
+ * Visit a parse tree produced by the `soqlSelectExprsClause`
261
+ * labeled alternative in `SoqlParser.soqlSelectClause`.
262
+ * @param ctx the parse tree
263
+ * @return the visitor result
264
+ */
265
+ visitSoqlSelectExprsClause?: (ctx: SoqlSelectExprsClauseContext) => Result;
266
+ /**
267
+ * Visit a parse tree produced by the `soqlForView`
268
+ * labeled alternative in `SoqlParser.soqlRecordTrackingType`.
269
+ * @param ctx the parse tree
270
+ * @return the visitor result
271
+ */
272
+ visitSoqlForView?: (ctx: SoqlForViewContext) => Result;
273
+ /**
274
+ * Visit a parse tree produced by the `soqlForReference`
275
+ * labeled alternative in `SoqlParser.soqlRecordTrackingType`.
276
+ * @param ctx the parse tree
277
+ * @return the visitor result
278
+ */
279
+ visitSoqlForReference?: (ctx: SoqlForReferenceContext) => Result;
280
+ /**
281
+ * Visit a parse tree produced by the `soqlLikeStringLiteral`
282
+ * labeled alternative in `SoqlParser.soqlLikeLiteral`.
283
+ * @param ctx the parse tree
284
+ * @return the visitor result
285
+ */
286
+ visitSoqlLikeStringLiteral?: (ctx: SoqlLikeStringLiteralContext) => Result;
287
+ /**
288
+ * Visit a parse tree produced by the `soqlLikeCommonLiterals`
289
+ * labeled alternative in `SoqlParser.soqlLikeLiteral`.
290
+ * @param ctx the parse tree
291
+ * @return the visitor result
292
+ */
293
+ visitSoqlLikeCommonLiterals?: (ctx: SoqlLikeCommonLiteralsContext) => Result;
294
+ /**
295
+ * Visit a parse tree produced by the `soqlStringWithValue`
296
+ * labeled alternative in `SoqlParser.soqlWithValue`.
297
+ * @param ctx the parse tree
298
+ * @return the visitor result
299
+ */
300
+ visitSoqlStringWithValue?: (ctx: SoqlStringWithValueContext) => Result;
301
+ /**
302
+ * Visit a parse tree produced by the `soqlColonExprWithValue`
303
+ * labeled alternative in `SoqlParser.soqlWithValue`.
304
+ * @param ctx the parse tree
305
+ * @return the visitor result
306
+ */
307
+ visitSoqlColonExprWithValue?: (ctx: SoqlColonExprWithValueContext) => Result;
308
+ /**
309
+ * Visit a parse tree produced by the `soqlWithIdentifierTupleClause`
310
+ * labeled alternative in `SoqlParser.soqlWithIdentifierClause`.
311
+ * @param ctx the parse tree
312
+ * @return the visitor result
313
+ */
314
+ visitSoqlWithIdentifierTupleClause?: (ctx: SoqlWithIdentifierTupleClauseContext) => Result;
315
+ /**
316
+ * Visit a parse tree produced by the `soqlWithSingleIdentifierClause`
317
+ * labeled alternative in `SoqlParser.soqlWithIdentifierClause`.
318
+ * @param ctx the parse tree
319
+ * @return the visitor result
320
+ */
321
+ visitSoqlWithSingleIdentifierClause?: (ctx: SoqlWithSingleIdentifierClauseContext) => Result;
322
+ /**
323
+ * Visit a parse tree produced by the `soqlUsingScope`
324
+ * labeled alternative in `SoqlParser.soqlUsingExpr`.
325
+ * @param ctx the parse tree
326
+ * @return the visitor result
327
+ */
328
+ visitSoqlUsingScope?: (ctx: SoqlUsingScopeContext) => Result;
329
+ /**
330
+ * Visit a parse tree produced by the `soqlUsingLookup`
331
+ * labeled alternative in `SoqlParser.soqlUsingExpr`.
332
+ * @param ctx the parse tree
333
+ * @return the visitor result
334
+ */
335
+ visitSoqlUsingLookup?: (ctx: SoqlUsingLookupContext) => Result;
336
+ /**
337
+ * Visit a parse tree produced by the `soqlDateLiteral`
338
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
339
+ * @param ctx the parse tree
340
+ * @return the visitor result
341
+ */
342
+ visitSoqlDateLiteral?: (ctx: SoqlDateLiteralContext) => Result;
343
+ /**
344
+ * Visit a parse tree produced by the `soqlDateTimeLiteral`
345
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
346
+ * @param ctx the parse tree
347
+ * @return the visitor result
348
+ */
349
+ visitSoqlDateTimeLiteral?: (ctx: SoqlDateTimeLiteralContext) => Result;
350
+ /**
351
+ * Visit a parse tree produced by the `soqlTimeLiteral`
352
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
353
+ * @param ctx the parse tree
354
+ * @return the visitor result
355
+ */
356
+ visitSoqlTimeLiteral?: (ctx: SoqlTimeLiteralContext) => Result;
357
+ /**
358
+ * Visit a parse tree produced by the `soqlNumberLiteral`
359
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
360
+ * @param ctx the parse tree
361
+ * @return the visitor result
362
+ */
363
+ visitSoqlNumberLiteral?: (ctx: SoqlNumberLiteralContext) => Result;
364
+ /**
365
+ * Visit a parse tree produced by the `soqlNullLiteral`
366
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
367
+ * @param ctx the parse tree
368
+ * @return the visitor result
369
+ */
370
+ visitSoqlNullLiteral?: (ctx: SoqlNullLiteralContext) => Result;
371
+ /**
372
+ * Visit a parse tree produced by the `soqlBooleanLiteral`
373
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
374
+ * @param ctx the parse tree
375
+ * @return the visitor result
376
+ */
377
+ visitSoqlBooleanLiteral?: (ctx: SoqlBooleanLiteralContext) => Result;
378
+ /**
379
+ * Visit a parse tree produced by the `soqlDateFormulaLiteral`
380
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
381
+ * @param ctx the parse tree
382
+ * @return the visitor result
383
+ */
384
+ visitSoqlDateFormulaLiteral?: (ctx: SoqlDateFormulaLiteralContext) => Result;
385
+ /**
386
+ * Visit a parse tree produced by the `soqlMultiCurrency`
387
+ * labeled alternative in `SoqlParser.soqlCommonLiterals`.
388
+ * @param ctx the parse tree
389
+ * @return the visitor result
390
+ */
391
+ visitSoqlMultiCurrency?: (ctx: SoqlMultiCurrencyContext) => Result;
392
+ /**
393
+ * Visit a parse tree produced by the `soqlLiteralLiteralValue`
394
+ * labeled alternative in `SoqlParser.soqlLiteralValue`.
395
+ * @param ctx the parse tree
396
+ * @return the visitor result
397
+ */
398
+ visitSoqlLiteralLiteralValue?: (ctx: SoqlLiteralLiteralValueContext) => Result;
399
+ /**
400
+ * Visit a parse tree produced by the `soqlColonExprLiteralValue`
401
+ * labeled alternative in `SoqlParser.soqlLiteralValue`.
402
+ * @param ctx the parse tree
403
+ * @return the visitor result
404
+ */
405
+ visitSoqlColonExprLiteralValue?: (ctx: SoqlColonExprLiteralValueContext) => Result;
406
+ /**
407
+ * Visit a parse tree produced by the `soqlWithDataCategoryClause`
408
+ * labeled alternative in `SoqlParser.soqlWithClause`.
409
+ * @param ctx the parse tree
410
+ * @return the visitor result
411
+ */
412
+ visitSoqlWithDataCategoryClause?: (ctx: SoqlWithDataCategoryClauseContext) => Result;
413
+ /**
414
+ * Visit a parse tree produced by the `soqlWithEqualsClause`
415
+ * labeled alternative in `SoqlParser.soqlWithClause`.
416
+ * @param ctx the parse tree
417
+ * @return the visitor result
418
+ */
419
+ visitSoqlWithEqualsClause?: (ctx: SoqlWithEqualsClauseContext) => Result;
420
+ /**
421
+ * Visit a parse tree produced by the `soqlStringLiteral`
422
+ * labeled alternative in `SoqlParser.soqlLiteral`.
423
+ * @param ctx the parse tree
424
+ * @return the visitor result
425
+ */
426
+ visitSoqlStringLiteral?: (ctx: SoqlStringLiteralContext) => Result;
427
+ /**
428
+ * Visit a parse tree produced by the `soqlLiteralCommonLiterals`
429
+ * labeled alternative in `SoqlParser.soqlLiteral`.
430
+ * @param ctx the parse tree
431
+ * @return the visitor result
432
+ */
433
+ visitSoqlLiteralCommonLiterals?: (ctx: SoqlLiteralCommonLiteralsContext) => Result;
434
+ /**
435
+ * Visit a parse tree produced by the `nestedWhereExpr`
436
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
437
+ * @param ctx the parse tree
438
+ * @return the visitor result
439
+ */
440
+ visitNestedWhereExpr?: (ctx: NestedWhereExprContext) => Result;
441
+ /**
442
+ * Visit a parse tree produced by the `calculatedWhereExpr`
443
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
444
+ * @param ctx the parse tree
445
+ * @return the visitor result
446
+ */
447
+ visitCalculatedWhereExpr?: (ctx: CalculatedWhereExprContext) => Result;
448
+ /**
449
+ * Visit a parse tree produced by the `distanceWhereExpr`
450
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
451
+ * @param ctx the parse tree
452
+ * @return the visitor result
453
+ */
454
+ visitDistanceWhereExpr?: (ctx: DistanceWhereExprContext) => Result;
455
+ /**
456
+ * Visit a parse tree produced by the `simpleWhereExpr`
457
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
458
+ * @param ctx the parse tree
459
+ * @return the visitor result
460
+ */
461
+ visitSimpleWhereExpr?: (ctx: SimpleWhereExprContext) => Result;
462
+ /**
463
+ * Visit a parse tree produced by the `likeWhereExpr`
464
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
465
+ * @param ctx the parse tree
466
+ * @return the visitor result
467
+ */
468
+ visitLikeWhereExpr?: (ctx: LikeWhereExprContext) => Result;
469
+ /**
470
+ * Visit a parse tree produced by the `includesWhereExpr`
471
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
472
+ * @param ctx the parse tree
473
+ * @return the visitor result
474
+ */
475
+ visitIncludesWhereExpr?: (ctx: IncludesWhereExprContext) => Result;
476
+ /**
477
+ * Visit a parse tree produced by the `inWhereExprWithSemiJoin`
478
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
479
+ * @param ctx the parse tree
480
+ * @return the visitor result
481
+ */
482
+ visitInWhereExprWithSemiJoin?: (ctx: InWhereExprWithSemiJoinContext) => Result;
483
+ /**
484
+ * Visit a parse tree produced by the `inWhereExpr`
485
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
486
+ * @param ctx the parse tree
487
+ * @return the visitor result
488
+ */
489
+ visitInWhereExpr?: (ctx: InWhereExprContext) => Result;
490
+ /**
491
+ * Visit a parse tree produced by the `inWhereExprForColonExpr`
492
+ * labeled alternative in `SoqlParser.soqlWhereExpr`.
493
+ * @param ctx the parse tree
494
+ * @return the visitor result
495
+ */
496
+ visitInWhereExprForColonExpr?: (ctx: InWhereExprForColonExprContext) => Result;
497
+ /**
498
+ * Visit a parse tree produced by the `soqlLiteralNumberValue`
499
+ * labeled alternative in `SoqlParser.soqlNumberValue`.
500
+ * @param ctx the parse tree
501
+ * @return the visitor result
502
+ */
503
+ visitSoqlLiteralNumberValue?: (ctx: SoqlLiteralNumberValueContext) => Result;
504
+ /**
505
+ * Visit a parse tree produced by the `soqlOrderByColumnExpr`
506
+ * labeled alternative in `SoqlParser.soqlOrderByClauseField`.
507
+ * @param ctx the parse tree
508
+ * @return the visitor result
509
+ */
510
+ visitSoqlOrderByColumnExpr?: (ctx: SoqlOrderByColumnExprContext) => Result;
511
+ /**
512
+ * Visit a parse tree produced by the `soqlOrderByDistanceExpr`
513
+ * labeled alternative in `SoqlParser.soqlOrderByClauseField`.
514
+ * @param ctx the parse tree
515
+ * @return the visitor result
516
+ */
517
+ visitSoqlOrderByDistanceExpr?: (ctx: SoqlOrderByDistanceExprContext) => Result;
518
+ /**
519
+ * Visit a parse tree produced by `SoqlParser.parseReservedForFieldName`.
520
+ * @param ctx the parse tree
521
+ * @return the visitor result
522
+ */
523
+ visitParseReservedForFieldName?: (ctx: ParseReservedForFieldNameContext) => Result;
524
+ /**
525
+ * Visit a parse tree produced by `SoqlParser.soqlIdentifier`.
526
+ * @param ctx the parse tree
527
+ * @return the visitor result
528
+ */
529
+ visitSoqlIdentifier?: (ctx: SoqlIdentifierContext) => Result;
530
+ /**
531
+ * Visit a parse tree produced by `SoqlParser.soqlIdentifierNoReserved`.
532
+ * @param ctx the parse tree
533
+ * @return the visitor result
534
+ */
535
+ visitSoqlIdentifierNoReserved?: (ctx: SoqlIdentifierNoReservedContext) => Result;
536
+ /**
537
+ * Visit a parse tree produced by `SoqlParser.soqlIdentifiers`.
538
+ * @param ctx the parse tree
539
+ * @return the visitor result
540
+ */
541
+ visitSoqlIdentifiers?: (ctx: SoqlIdentifiersContext) => Result;
542
+ /**
543
+ * Visit a parse tree produced by `SoqlParser.soqlField`.
544
+ * @param ctx the parse tree
545
+ * @return the visitor result
546
+ */
547
+ visitSoqlField?: (ctx: SoqlFieldContext) => Result;
548
+ /**
549
+ * Visit a parse tree produced by `SoqlParser.soqlTypeofOperand`.
550
+ * @param ctx the parse tree
551
+ * @return the visitor result
552
+ */
553
+ visitSoqlTypeofOperand?: (ctx: SoqlTypeofOperandContext) => Result;
554
+ /**
555
+ * Visit a parse tree produced by `SoqlParser.soqlWhenOperand`.
556
+ * @param ctx the parse tree
557
+ * @return the visitor result
558
+ */
559
+ visitSoqlWhenOperand?: (ctx: SoqlWhenOperandContext) => Result;
560
+ /**
561
+ * Visit a parse tree produced by `SoqlParser.soqlResultExpr`.
562
+ * @param ctx the parse tree
563
+ * @return the visitor result
564
+ */
565
+ visitSoqlResultExpr?: (ctx: SoqlResultExprContext) => Result;
566
+ /**
567
+ * Visit a parse tree produced by `SoqlParser.soqlWhenExpr`.
568
+ * @param ctx the parse tree
569
+ * @return the visitor result
570
+ */
571
+ visitSoqlWhenExpr?: (ctx: SoqlWhenExprContext) => Result;
572
+ /**
573
+ * Visit a parse tree produced by `SoqlParser.soqlElseExpr`.
574
+ * @param ctx the parse tree
575
+ * @return the visitor result
576
+ */
577
+ visitSoqlElseExpr?: (ctx: SoqlElseExprContext) => Result;
578
+ /**
579
+ * Visit a parse tree produced by `SoqlParser.soqlTypeofExpr`.
580
+ * @param ctx the parse tree
581
+ * @return the visitor result
582
+ */
583
+ visitSoqlTypeofExpr?: (ctx: SoqlTypeofExprContext) => Result;
584
+ /**
585
+ * Visit a parse tree produced by `SoqlParser.soqlAlias`.
586
+ * @param ctx the parse tree
587
+ * @return the visitor result
588
+ */
589
+ visitSoqlAlias?: (ctx: SoqlAliasContext) => Result;
590
+ /**
591
+ * Visit a parse tree produced by `SoqlParser.soqlInteger`.
592
+ * @param ctx the parse tree
593
+ * @return the visitor result
594
+ */
595
+ visitSoqlInteger?: (ctx: SoqlIntegerContext) => Result;
596
+ /**
597
+ * Visit a parse tree produced by `SoqlParser.soqlIntegerValue`.
598
+ * @param ctx the parse tree
599
+ * @return the visitor result
600
+ */
601
+ visitSoqlIntegerValue?: (ctx: SoqlIntegerValueContext) => Result;
602
+ /**
603
+ * Visit a parse tree produced by `SoqlParser.soqlNumber`.
604
+ * @param ctx the parse tree
605
+ * @return the visitor result
606
+ */
607
+ visitSoqlNumber?: (ctx: SoqlNumberContext) => Result;
608
+ /**
609
+ * Visit a parse tree produced by `SoqlParser.soqlNumberValue`.
610
+ * @param ctx the parse tree
611
+ * @return the visitor result
612
+ */
613
+ visitSoqlNumberValue?: (ctx: SoqlNumberValueContext) => Result;
614
+ /**
615
+ * Visit a parse tree produced by `SoqlParser.soqlGeolocationValue`.
616
+ * @param ctx the parse tree
617
+ * @return the visitor result
618
+ */
619
+ visitSoqlGeolocationValue?: (ctx: SoqlGeolocationValueContext) => Result;
620
+ /**
621
+ * Visit a parse tree produced by `SoqlParser.soqlDistanceExpr`.
622
+ * @param ctx the parse tree
623
+ * @return the visitor result
624
+ */
625
+ visitSoqlDistanceExpr?: (ctx: SoqlDistanceExprContext) => Result;
626
+ /**
627
+ * Visit a parse tree produced by `SoqlParser.soqlWhereClause`.
628
+ * @param ctx the parse tree
629
+ * @return the visitor result
630
+ */
631
+ visitSoqlWhereClause?: (ctx: SoqlWhereClauseContext) => Result;
632
+ /**
633
+ * Visit a parse tree produced by `SoqlParser.soqlWhereExprs`.
634
+ * @param ctx the parse tree
635
+ * @return the visitor result
636
+ */
637
+ visitSoqlWhereExprs?: (ctx: SoqlWhereExprsContext) => Result;
638
+ /**
639
+ * Visit a parse tree produced by `SoqlParser.soqlAndWhere`.
640
+ * @param ctx the parse tree
641
+ * @return the visitor result
642
+ */
643
+ visitSoqlAndWhere?: (ctx: SoqlAndWhereContext) => Result;
644
+ /**
645
+ * Visit a parse tree produced by `SoqlParser.soqlOrWhere`.
646
+ * @param ctx the parse tree
647
+ * @return the visitor result
648
+ */
649
+ visitSoqlOrWhere?: (ctx: SoqlOrWhereContext) => Result;
650
+ /**
651
+ * Visit a parse tree produced by `SoqlParser.soqlWhereExpr`.
652
+ * @param ctx the parse tree
653
+ * @return the visitor result
654
+ */
655
+ visitSoqlWhereExpr?: (ctx: SoqlWhereExprContext) => Result;
656
+ /**
657
+ * Visit a parse tree produced by `SoqlParser.soqlCalcOperator`.
658
+ * @param ctx the parse tree
659
+ * @return the visitor result
660
+ */
661
+ visitSoqlCalcOperator?: (ctx: SoqlCalcOperatorContext) => Result;
662
+ /**
663
+ * Visit a parse tree produced by `SoqlParser.soqlLiteralValues`.
664
+ * @param ctx the parse tree
665
+ * @return the visitor result
666
+ */
667
+ visitSoqlLiteralValues?: (ctx: SoqlLiteralValuesContext) => Result;
668
+ /**
669
+ * Visit a parse tree produced by `SoqlParser.soqlIncludesOperator`.
670
+ * @param ctx the parse tree
671
+ * @return the visitor result
672
+ */
673
+ visitSoqlIncludesOperator?: (ctx: SoqlIncludesOperatorContext) => Result;
674
+ /**
675
+ * Visit a parse tree produced by `SoqlParser.soqlInOperator`.
676
+ * @param ctx the parse tree
677
+ * @return the visitor result
678
+ */
679
+ visitSoqlInOperator?: (ctx: SoqlInOperatorContext) => Result;
680
+ /**
681
+ * Visit a parse tree produced by `SoqlParser.soqlComparisonOperator`.
682
+ * @param ctx the parse tree
683
+ * @return the visitor result
684
+ */
685
+ visitSoqlComparisonOperator?: (ctx: SoqlComparisonOperatorContext) => Result;
686
+ /**
687
+ * Visit a parse tree produced by `SoqlParser.soqlCommonOperator`.
688
+ * @param ctx the parse tree
689
+ * @return the visitor result
690
+ */
691
+ visitSoqlCommonOperator?: (ctx: SoqlCommonOperatorContext) => Result;
692
+ /**
693
+ * Visit a parse tree produced by `SoqlParser.soqlLikeValue`.
694
+ * @param ctx the parse tree
695
+ * @return the visitor result
696
+ */
697
+ visitSoqlLikeValue?: (ctx: SoqlLikeValueContext) => Result;
698
+ /**
699
+ * Visit a parse tree produced by `SoqlParser.soqlLikeLiteral`.
700
+ * @param ctx the parse tree
701
+ * @return the visitor result
702
+ */
703
+ visitSoqlLikeLiteral?: (ctx: SoqlLikeLiteralContext) => Result;
704
+ /**
705
+ * Visit a parse tree produced by `SoqlParser.soqlCommonLiterals`.
706
+ * @param ctx the parse tree
707
+ * @return the visitor result
708
+ */
709
+ visitSoqlCommonLiterals?: (ctx: SoqlCommonLiteralsContext) => Result;
710
+ /**
711
+ * Visit a parse tree produced by `SoqlParser.soqlLiteralValue`.
712
+ * @param ctx the parse tree
713
+ * @return the visitor result
714
+ */
715
+ visitSoqlLiteralValue?: (ctx: SoqlLiteralValueContext) => Result;
716
+ /**
717
+ * Visit a parse tree produced by `SoqlParser.soqlCurrencyLiteral`.
718
+ * @param ctx the parse tree
719
+ * @return the visitor result
720
+ */
721
+ visitSoqlCurrencyLiteral?: (ctx: SoqlCurrencyLiteralContext) => Result;
722
+ /**
723
+ * Visit a parse tree produced by `SoqlParser.soqlColonExpr`.
724
+ * @param ctx the parse tree
725
+ * @return the visitor result
726
+ */
727
+ visitSoqlColonExpr?: (ctx: SoqlColonExprContext) => Result;
728
+ /**
729
+ * Visit a parse tree produced by `SoqlParser.soqlLiteral`.
730
+ * @param ctx the parse tree
731
+ * @return the visitor result
732
+ */
733
+ visitSoqlLiteral?: (ctx: SoqlLiteralContext) => Result;
734
+ /**
735
+ * Visit a parse tree produced by `SoqlParser.nonValidatedEscapeStringLiteral`.
736
+ * @param ctx the parse tree
737
+ * @return the visitor result
738
+ */
739
+ visitNonValidatedEscapeStringLiteral?: (ctx: NonValidatedEscapeStringLiteralContext) => Result;
740
+ /**
741
+ * Visit a parse tree produced by `SoqlParser.nonValidatedEscapeStringLiteralElement`.
742
+ * @param ctx the parse tree
743
+ * @return the visitor result
744
+ */
745
+ visitNonValidatedEscapeStringLiteralElement?: (ctx: NonValidatedEscapeStringLiteralElementContext) => Result;
746
+ /**
747
+ * Visit a parse tree produced by `SoqlParser.validatedEscapeStringLiteral`.
748
+ * @param ctx the parse tree
749
+ * @return the visitor result
750
+ */
751
+ visitValidatedEscapeStringLiteral?: (ctx: ValidatedEscapeStringLiteralContext) => Result;
752
+ /**
753
+ * Visit a parse tree produced by `SoqlParser.validatedEscapeStringLiteralElement`.
754
+ * @param ctx the parse tree
755
+ * @return the visitor result
756
+ */
757
+ visitValidatedEscapeStringLiteralElement?: (ctx: ValidatedEscapeStringLiteralElementContext) => Result;
758
+ /**
759
+ * Visit a parse tree produced by `SoqlParser.validatedEscapeLikeStringLiteral`.
760
+ * @param ctx the parse tree
761
+ * @return the visitor result
762
+ */
763
+ visitValidatedEscapeLikeStringLiteral?: (ctx: ValidatedEscapeLikeStringLiteralContext) => Result;
764
+ /**
765
+ * Visit a parse tree produced by `SoqlParser.validatedEscapeLikeStringLiteralElements`.
766
+ * @param ctx the parse tree
767
+ * @return the visitor result
768
+ */
769
+ visitValidatedEscapeLikeStringLiteralElements?: (ctx: ValidatedEscapeLikeStringLiteralElementsContext) => Result;
770
+ /**
771
+ * Visit a parse tree produced by `SoqlParser.validatedCommonSoqlStringLiteralElements`.
772
+ * @param ctx the parse tree
773
+ * @return the visitor result
774
+ */
775
+ visitValidatedCommonSoqlStringLiteralElements?: (ctx: ValidatedCommonSoqlStringLiteralElementsContext) => Result;
776
+ /**
777
+ * Visit a parse tree produced by `SoqlParser.soqlSelectExpr`.
778
+ * @param ctx the parse tree
779
+ * @return the visitor result
780
+ */
781
+ visitSoqlSelectExpr?: (ctx: SoqlSelectExprContext) => Result;
782
+ /**
783
+ * Visit a parse tree produced by `SoqlParser.soqlSelectExprs`.
784
+ * @param ctx the parse tree
785
+ * @return the visitor result
786
+ */
787
+ visitSoqlSelectExprs?: (ctx: SoqlSelectExprsContext) => Result;
788
+ /**
789
+ * Visit a parse tree produced by `SoqlParser.soqlFromClause`.
790
+ * @param ctx the parse tree
791
+ * @return the visitor result
792
+ */
793
+ visitSoqlFromClause?: (ctx: SoqlFromClauseContext) => Result;
794
+ /**
795
+ * Visit a parse tree produced by `SoqlParser.soqlFromExprs`.
796
+ * @param ctx the parse tree
797
+ * @return the visitor result
798
+ */
799
+ visitSoqlFromExprs?: (ctx: SoqlFromExprsContext) => Result;
800
+ /**
801
+ * Visit a parse tree produced by `SoqlParser.soqlFromExpr`.
802
+ * @param ctx the parse tree
803
+ * @return the visitor result
804
+ */
805
+ visitSoqlFromExpr?: (ctx: SoqlFromExprContext) => Result;
806
+ /**
807
+ * Visit a parse tree produced by `SoqlParser.soqlUsingClause`.
808
+ * @param ctx the parse tree
809
+ * @return the visitor result
810
+ */
811
+ visitSoqlUsingClause?: (ctx: SoqlUsingClauseContext) => Result;
812
+ /**
813
+ * Visit a parse tree produced by `SoqlParser.soqlUsingPre192Expr`.
814
+ * @param ctx the parse tree
815
+ * @return the visitor result
816
+ */
817
+ visitSoqlUsingPre192Expr?: (ctx: SoqlUsingPre192ExprContext) => Result;
818
+ /**
819
+ * Visit a parse tree produced by `SoqlParser.soqlUsingExprs`.
820
+ * @param ctx the parse tree
821
+ * @return the visitor result
822
+ */
823
+ visitSoqlUsingExprs?: (ctx: SoqlUsingExprsContext) => Result;
824
+ /**
825
+ * Visit a parse tree produced by `SoqlParser.soqlUsingExpr`.
826
+ * @param ctx the parse tree
827
+ * @return the visitor result
828
+ */
829
+ visitSoqlUsingExpr?: (ctx: SoqlUsingExprContext) => Result;
830
+ /**
831
+ * Visit a parse tree produced by `SoqlParser.soqlDataCategoryOperator`.
832
+ * @param ctx the parse tree
833
+ * @return the visitor result
834
+ */
835
+ visitSoqlDataCategoryOperator?: (ctx: SoqlDataCategoryOperatorContext) => Result;
836
+ /**
837
+ * Visit a parse tree produced by `SoqlParser.soqlDataCategoryExpr`.
838
+ * @param ctx the parse tree
839
+ * @return the visitor result
840
+ */
841
+ visitSoqlDataCategoryExpr?: (ctx: SoqlDataCategoryExprContext) => Result;
842
+ /**
843
+ * Visit a parse tree produced by `SoqlParser.soqlWithValue`.
844
+ * @param ctx the parse tree
845
+ * @return the visitor result
846
+ */
847
+ visitSoqlWithValue?: (ctx: SoqlWithValueContext) => Result;
848
+ /**
849
+ * Visit a parse tree produced by `SoqlParser.soqlWithKeyValue`.
850
+ * @param ctx the parse tree
851
+ * @return the visitor result
852
+ */
853
+ visitSoqlWithKeyValue?: (ctx: SoqlWithKeyValueContext) => Result;
854
+ /**
855
+ * Visit a parse tree produced by `SoqlParser.soqlWithClause`.
856
+ * @param ctx the parse tree
857
+ * @return the visitor result
858
+ */
859
+ visitSoqlWithClause?: (ctx: SoqlWithClauseContext) => Result;
860
+ /**
861
+ * Visit a parse tree produced by `SoqlParser.soqlWithIdentifierClause`.
862
+ * @param ctx the parse tree
863
+ * @return the visitor result
864
+ */
865
+ visitSoqlWithIdentifierClause?: (ctx: SoqlWithIdentifierClauseContext) => Result;
866
+ /**
867
+ * Visit a parse tree produced by `SoqlParser.soqlLimitClause`.
868
+ * @param ctx the parse tree
869
+ * @return the visitor result
870
+ */
871
+ visitSoqlLimitClause?: (ctx: SoqlLimitClauseContext) => Result;
872
+ /**
873
+ * Visit a parse tree produced by `SoqlParser.soqlOffsetClause`.
874
+ * @param ctx the parse tree
875
+ * @return the visitor result
876
+ */
877
+ visitSoqlOffsetClause?: (ctx: SoqlOffsetClauseContext) => Result;
878
+ /**
879
+ * Visit a parse tree produced by `SoqlParser.soqlGroupByExprs`.
880
+ * @param ctx the parse tree
881
+ * @return the visitor result
882
+ */
883
+ visitSoqlGroupByExprs?: (ctx: SoqlGroupByExprsContext) => Result;
884
+ /**
885
+ * Visit a parse tree produced by `SoqlParser.soqlGroupByClause`.
886
+ * @param ctx the parse tree
887
+ * @return the visitor result
888
+ */
889
+ visitSoqlGroupByClause?: (ctx: SoqlGroupByClauseContext) => Result;
890
+ /**
891
+ * Visit a parse tree produced by `SoqlParser.soqlHavingClause`.
892
+ * @param ctx the parse tree
893
+ * @return the visitor result
894
+ */
895
+ visitSoqlHavingClause?: (ctx: SoqlHavingClauseContext) => Result;
896
+ /**
897
+ * Visit a parse tree produced by `SoqlParser.soqlOrderByClauseField`.
898
+ * @param ctx the parse tree
899
+ * @return the visitor result
900
+ */
901
+ visitSoqlOrderByClauseField?: (ctx: SoqlOrderByClauseFieldContext) => Result;
902
+ /**
903
+ * Visit a parse tree produced by `SoqlParser.soqlOrderByClauseExpr`.
904
+ * @param ctx the parse tree
905
+ * @return the visitor result
906
+ */
907
+ visitSoqlOrderByClauseExpr?: (ctx: SoqlOrderByClauseExprContext) => Result;
908
+ /**
909
+ * Visit a parse tree produced by `SoqlParser.soqlOrderByClauseExprs`.
910
+ * @param ctx the parse tree
911
+ * @return the visitor result
912
+ */
913
+ visitSoqlOrderByClauseExprs?: (ctx: SoqlOrderByClauseExprsContext) => Result;
914
+ /**
915
+ * Visit a parse tree produced by `SoqlParser.soqlOrderByClause`.
916
+ * @param ctx the parse tree
917
+ * @return the visitor result
918
+ */
919
+ visitSoqlOrderByClause?: (ctx: SoqlOrderByClauseContext) => Result;
920
+ /**
921
+ * Visit a parse tree produced by `SoqlParser.soqlBindClauseExpr`.
922
+ * @param ctx the parse tree
923
+ * @return the visitor result
924
+ */
925
+ visitSoqlBindClauseExpr?: (ctx: SoqlBindClauseExprContext) => Result;
926
+ /**
927
+ * Visit a parse tree produced by `SoqlParser.soqlBindClauseExprs`.
928
+ * @param ctx the parse tree
929
+ * @return the visitor result
930
+ */
931
+ visitSoqlBindClauseExprs?: (ctx: SoqlBindClauseExprsContext) => Result;
932
+ /**
933
+ * Visit a parse tree produced by `SoqlParser.soqlBindClause`.
934
+ * @param ctx the parse tree
935
+ * @return the visitor result
936
+ */
937
+ visitSoqlBindClause?: (ctx: SoqlBindClauseContext) => Result;
938
+ /**
939
+ * Visit a parse tree produced by `SoqlParser.soqlRecordTrackingType`.
940
+ * @param ctx the parse tree
941
+ * @return the visitor result
942
+ */
943
+ visitSoqlRecordTrackingType?: (ctx: SoqlRecordTrackingTypeContext) => Result;
944
+ /**
945
+ * Visit a parse tree produced by `SoqlParser.soqlUpdateStatsClause`.
946
+ * @param ctx the parse tree
947
+ * @return the visitor result
948
+ */
949
+ visitSoqlUpdateStatsClause?: (ctx: SoqlUpdateStatsClauseContext) => Result;
950
+ /**
951
+ * Visit a parse tree produced by `SoqlParser.soqlSelectClause`.
952
+ * @param ctx the parse tree
953
+ * @return the visitor result
954
+ */
955
+ visitSoqlSelectClause?: (ctx: SoqlSelectClauseContext) => Result;
956
+ /**
957
+ * Visit a parse tree produced by `SoqlParser.soqlSemiJoin`.
958
+ * @param ctx the parse tree
959
+ * @return the visitor result
960
+ */
961
+ visitSoqlSemiJoin?: (ctx: SoqlSemiJoinContext) => Result;
962
+ /**
963
+ * Visit a parse tree produced by `SoqlParser.soqlInnerQuery`.
964
+ * @param ctx the parse tree
965
+ * @return the visitor result
966
+ */
967
+ visitSoqlInnerQuery?: (ctx: SoqlInnerQueryContext) => Result;
968
+ /**
969
+ * Visit a parse tree produced by `SoqlParser.soqlQuery`.
970
+ * @param ctx the parse tree
971
+ * @return the visitor result
972
+ */
973
+ visitSoqlQuery?: (ctx: SoqlQueryContext) => Result;
974
+ }