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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +55 -4
  3. package/dist/browser/apex-parser.mjs +64579 -0
  4. package/dist/browser/apex-parser.mjs.map +1 -0
  5. package/dist/browser/apex-parser.umd.js +64784 -0
  6. package/dist/browser/apex-parser.umd.js.map +1 -0
  7. package/dist/cjs/ApexErrorListener.cjs +31 -0
  8. package/dist/cjs/ApexErrorListener.cjs.map +1 -0
  9. package/dist/cjs/ApexParserFactory.cjs +83 -0
  10. package/dist/cjs/ApexParserFactory.cjs.map +1 -0
  11. package/dist/cjs/CaseInsensitiveInputStream.cjs +30 -0
  12. package/dist/cjs/CaseInsensitiveInputStream.cjs.map +1 -0
  13. package/dist/cjs/Check.cjs +172 -0
  14. package/dist/cjs/Check.cjs.map +1 -0
  15. package/dist/cjs/antlr/ApexLexer.cjs +23244 -0
  16. package/dist/cjs/antlr/ApexLexer.cjs.map +1 -0
  17. package/dist/cjs/antlr/ApexParser.cjs +38369 -0
  18. package/dist/cjs/antlr/ApexParser.cjs.map +1 -0
  19. package/dist/cjs/antlr/ApexParserListener.cjs +1915 -0
  20. package/dist/cjs/antlr/ApexParserListener.cjs.map +1 -0
  21. package/dist/cjs/antlr/ApexParserVisitor.cjs +1147 -0
  22. package/dist/cjs/antlr/ApexParserVisitor.cjs.map +1 -0
  23. package/dist/cjs/index.cjs +214 -0
  24. package/dist/cjs/index.cjs.map +1 -0
  25. package/dist/esm/ApexErrorListener.js +27 -0
  26. package/dist/esm/ApexErrorListener.js.map +1 -0
  27. package/dist/esm/ApexParserFactory.js +78 -0
  28. package/dist/esm/ApexParserFactory.js.map +1 -0
  29. package/dist/esm/CaseInsensitiveInputStream.js +28 -0
  30. package/dist/esm/CaseInsensitiveInputStream.js.map +1 -0
  31. package/dist/esm/Check.js +169 -0
  32. package/dist/esm/Check.js.map +1 -0
  33. package/dist/esm/antlr/ApexLexer.js +23240 -0
  34. package/dist/esm/antlr/ApexLexer.js.map +1 -0
  35. package/dist/esm/antlr/ApexParser.js +38179 -0
  36. package/dist/esm/antlr/ApexParser.js.map +1 -0
  37. package/dist/esm/antlr/ApexParserListener.js +1911 -0
  38. package/dist/esm/antlr/ApexParserListener.js.map +1 -0
  39. package/dist/esm/antlr/ApexParserVisitor.js +1143 -0
  40. package/dist/esm/antlr/ApexParserVisitor.js.map +1 -0
  41. package/dist/esm/index.js +9 -0
  42. package/dist/esm/index.js.map +1 -0
  43. package/dist/types/ApexErrorListener.d.cts +26 -0
  44. package/dist/{src → types}/ApexErrorListener.d.ts +4 -3
  45. package/dist/types/ApexParserFactory.d.cts +81 -0
  46. package/dist/{src → types}/ApexParserFactory.d.ts +12 -0
  47. package/dist/types/CaseInsensitiveInputStream.d.ts +14 -0
  48. package/dist/types/Check.d.ts +36 -0
  49. package/dist/types/antlr/ApexLexer.d.cts +275 -0
  50. package/dist/{src → types}/antlr/ApexLexer.d.ts +54 -53
  51. package/dist/types/antlr/ApexParser.d.cts +3126 -0
  52. package/dist/{src → types}/antlr/ApexParser.d.ts +113 -85
  53. package/dist/{src/antlr/ApexParserListener.js → types/antlr/ApexParserListener.d.cts} +568 -366
  54. package/dist/{src → types}/antlr/ApexParserListener.d.ts +22 -0
  55. package/dist/{src/antlr/ApexParserVisitor.js → types/antlr/ApexParserVisitor.d.cts} +379 -185
  56. package/dist/{src → types}/antlr/ApexParserVisitor.d.ts +14 -0
  57. package/dist/types/index.browser.d.cts +8 -0
  58. package/dist/types/index.browser.d.ts +8 -0
  59. package/dist/types/index.d.ts +9 -0
  60. package/package.json +89 -21
  61. package/dist/src/ApexErrorListener.js +0 -61
  62. package/dist/src/ApexErrorListener.js.map +0 -1
  63. package/dist/src/ApexParserFactory.js +0 -116
  64. package/dist/src/ApexParserFactory.js.map +0 -1
  65. package/dist/src/CaseInsensitiveInputStream.js +0 -64
  66. package/dist/src/CaseInsensitiveInputStream.js.map +0 -1
  67. package/dist/src/Check.js +0 -205
  68. package/dist/src/Check.js.map +0 -1
  69. package/dist/src/antlr/ApexLexer.js +0 -1573
  70. package/dist/src/antlr/ApexLexer.js.map +0 -1
  71. package/dist/src/antlr/ApexParser.js +0 -20786
  72. package/dist/src/antlr/ApexParser.js.map +0 -1
  73. package/dist/src/antlr/ApexParserListener.js.map +0 -1
  74. package/dist/src/antlr/ApexParserVisitor.js.map +0 -1
  75. package/dist/src/index.js +0 -37
  76. package/dist/src/index.js.map +0 -1
  77. /package/dist/{src/CaseInsensitiveInputStream.d.ts → types/CaseInsensitiveInputStream.d.cts} +0 -0
  78. /package/dist/{src/Check.d.ts → types/Check.d.cts} +0 -0
  79. /package/dist/{src/index.d.ts → types/index.d.cts} +0 -0
@@ -0,0 +1,1147 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var antlr4 = require('antlr4');
6
+
7
+ class ApexParserVisitor extends antlr4.ParseTreeVisitor {
8
+ /**
9
+ * Visit a parse tree produced by `ApexParser.triggerUnit`.
10
+ * @param ctx the parse tree
11
+ * @return the visitor result
12
+ */
13
+ visitTriggerUnit;
14
+ /**
15
+ * Visit a parse tree produced by `ApexParser.triggerCase`.
16
+ * @param ctx the parse tree
17
+ * @return the visitor result
18
+ */
19
+ visitTriggerCase;
20
+ /**
21
+ * Visit a parse tree produced by `ApexParser.triggerBlock`.
22
+ * @param ctx the parse tree
23
+ * @return the visitor result
24
+ */
25
+ visitTriggerBlock;
26
+ /**
27
+ * Visit a parse tree produced by `ApexParser.triggerBlockMember`.
28
+ * @param ctx the parse tree
29
+ * @return the visitor result
30
+ */
31
+ visitTriggerBlockMember;
32
+ /**
33
+ * Visit a parse tree produced by `ApexParser.anonymousUnit`.
34
+ * @param ctx the parse tree
35
+ * @return the visitor result
36
+ */
37
+ visitAnonymousUnit;
38
+ /**
39
+ * Visit a parse tree produced by `ApexParser.anonymousBlock`.
40
+ * @param ctx the parse tree
41
+ * @return the visitor result
42
+ */
43
+ visitAnonymousBlock;
44
+ /**
45
+ * Visit a parse tree produced by `ApexParser.anonymousBlockMember`.
46
+ * @param ctx the parse tree
47
+ * @return the visitor result
48
+ */
49
+ visitAnonymousBlockMember;
50
+ /**
51
+ * Visit a parse tree produced by `ApexParser.compilationUnit`.
52
+ * @param ctx the parse tree
53
+ * @return the visitor result
54
+ */
55
+ visitCompilationUnit;
56
+ /**
57
+ * Visit a parse tree produced by `ApexParser.typeDeclaration`.
58
+ * @param ctx the parse tree
59
+ * @return the visitor result
60
+ */
61
+ visitTypeDeclaration;
62
+ /**
63
+ * Visit a parse tree produced by `ApexParser.classDeclaration`.
64
+ * @param ctx the parse tree
65
+ * @return the visitor result
66
+ */
67
+ visitClassDeclaration;
68
+ /**
69
+ * Visit a parse tree produced by `ApexParser.enumDeclaration`.
70
+ * @param ctx the parse tree
71
+ * @return the visitor result
72
+ */
73
+ visitEnumDeclaration;
74
+ /**
75
+ * Visit a parse tree produced by `ApexParser.enumConstants`.
76
+ * @param ctx the parse tree
77
+ * @return the visitor result
78
+ */
79
+ visitEnumConstants;
80
+ /**
81
+ * Visit a parse tree produced by `ApexParser.interfaceDeclaration`.
82
+ * @param ctx the parse tree
83
+ * @return the visitor result
84
+ */
85
+ visitInterfaceDeclaration;
86
+ /**
87
+ * Visit a parse tree produced by `ApexParser.typeList`.
88
+ * @param ctx the parse tree
89
+ * @return the visitor result
90
+ */
91
+ visitTypeList;
92
+ /**
93
+ * Visit a parse tree produced by `ApexParser.classBody`.
94
+ * @param ctx the parse tree
95
+ * @return the visitor result
96
+ */
97
+ visitClassBody;
98
+ /**
99
+ * Visit a parse tree produced by `ApexParser.interfaceBody`.
100
+ * @param ctx the parse tree
101
+ * @return the visitor result
102
+ */
103
+ visitInterfaceBody;
104
+ /**
105
+ * Visit a parse tree produced by `ApexParser.classBodyDeclaration`.
106
+ * @param ctx the parse tree
107
+ * @return the visitor result
108
+ */
109
+ visitClassBodyDeclaration;
110
+ /**
111
+ * Visit a parse tree produced by `ApexParser.modifier`.
112
+ * @param ctx the parse tree
113
+ * @return the visitor result
114
+ */
115
+ visitModifier;
116
+ /**
117
+ * Visit a parse tree produced by `ApexParser.memberDeclaration`.
118
+ * @param ctx the parse tree
119
+ * @return the visitor result
120
+ */
121
+ visitMemberDeclaration;
122
+ /**
123
+ * Visit a parse tree produced by `ApexParser.triggerMemberDeclaration`.
124
+ * @param ctx the parse tree
125
+ * @return the visitor result
126
+ */
127
+ visitTriggerMemberDeclaration;
128
+ /**
129
+ * Visit a parse tree produced by `ApexParser.anonymousMemberDeclaration`.
130
+ * @param ctx the parse tree
131
+ * @return the visitor result
132
+ */
133
+ visitAnonymousMemberDeclaration;
134
+ /**
135
+ * Visit a parse tree produced by `ApexParser.methodDeclaration`.
136
+ * @param ctx the parse tree
137
+ * @return the visitor result
138
+ */
139
+ visitMethodDeclaration;
140
+ /**
141
+ * Visit a parse tree produced by `ApexParser.constructorDeclaration`.
142
+ * @param ctx the parse tree
143
+ * @return the visitor result
144
+ */
145
+ visitConstructorDeclaration;
146
+ /**
147
+ * Visit a parse tree produced by `ApexParser.fieldDeclaration`.
148
+ * @param ctx the parse tree
149
+ * @return the visitor result
150
+ */
151
+ visitFieldDeclaration;
152
+ /**
153
+ * Visit a parse tree produced by `ApexParser.propertyDeclaration`.
154
+ * @param ctx the parse tree
155
+ * @return the visitor result
156
+ */
157
+ visitPropertyDeclaration;
158
+ /**
159
+ * Visit a parse tree produced by `ApexParser.interfaceMethodDeclaration`.
160
+ * @param ctx the parse tree
161
+ * @return the visitor result
162
+ */
163
+ visitInterfaceMethodDeclaration;
164
+ /**
165
+ * Visit a parse tree produced by `ApexParser.variableDeclarators`.
166
+ * @param ctx the parse tree
167
+ * @return the visitor result
168
+ */
169
+ visitVariableDeclarators;
170
+ /**
171
+ * Visit a parse tree produced by `ApexParser.variableDeclarator`.
172
+ * @param ctx the parse tree
173
+ * @return the visitor result
174
+ */
175
+ visitVariableDeclarator;
176
+ /**
177
+ * Visit a parse tree produced by `ApexParser.arrayInitializer`.
178
+ * @param ctx the parse tree
179
+ * @return the visitor result
180
+ */
181
+ visitArrayInitializer;
182
+ /**
183
+ * Visit a parse tree produced by `ApexParser.typeRef`.
184
+ * @param ctx the parse tree
185
+ * @return the visitor result
186
+ */
187
+ visitTypeRef;
188
+ /**
189
+ * Visit a parse tree produced by `ApexParser.arraySubscripts`.
190
+ * @param ctx the parse tree
191
+ * @return the visitor result
192
+ */
193
+ visitArraySubscripts;
194
+ /**
195
+ * Visit a parse tree produced by `ApexParser.typeName`.
196
+ * @param ctx the parse tree
197
+ * @return the visitor result
198
+ */
199
+ visitTypeName;
200
+ /**
201
+ * Visit a parse tree produced by `ApexParser.typeArguments`.
202
+ * @param ctx the parse tree
203
+ * @return the visitor result
204
+ */
205
+ visitTypeArguments;
206
+ /**
207
+ * Visit a parse tree produced by `ApexParser.formalParameters`.
208
+ * @param ctx the parse tree
209
+ * @return the visitor result
210
+ */
211
+ visitFormalParameters;
212
+ /**
213
+ * Visit a parse tree produced by `ApexParser.formalParameterList`.
214
+ * @param ctx the parse tree
215
+ * @return the visitor result
216
+ */
217
+ visitFormalParameterList;
218
+ /**
219
+ * Visit a parse tree produced by `ApexParser.formalParameter`.
220
+ * @param ctx the parse tree
221
+ * @return the visitor result
222
+ */
223
+ visitFormalParameter;
224
+ /**
225
+ * Visit a parse tree produced by `ApexParser.qualifiedName`.
226
+ * @param ctx the parse tree
227
+ * @return the visitor result
228
+ */
229
+ visitQualifiedName;
230
+ /**
231
+ * Visit a parse tree produced by `ApexParser.literal`.
232
+ * @param ctx the parse tree
233
+ * @return the visitor result
234
+ */
235
+ visitLiteral;
236
+ /**
237
+ * Visit a parse tree produced by `ApexParser.annotation`.
238
+ * @param ctx the parse tree
239
+ * @return the visitor result
240
+ */
241
+ visitAnnotation;
242
+ /**
243
+ * Visit a parse tree produced by `ApexParser.elementValuePairs`.
244
+ * @param ctx the parse tree
245
+ * @return the visitor result
246
+ */
247
+ visitElementValuePairs;
248
+ /**
249
+ * Visit a parse tree produced by `ApexParser.elementValuePair`.
250
+ * @param ctx the parse tree
251
+ * @return the visitor result
252
+ */
253
+ visitElementValuePair;
254
+ /**
255
+ * Visit a parse tree produced by `ApexParser.elementValue`.
256
+ * @param ctx the parse tree
257
+ * @return the visitor result
258
+ */
259
+ visitElementValue;
260
+ /**
261
+ * Visit a parse tree produced by `ApexParser.elementValueArrayInitializer`.
262
+ * @param ctx the parse tree
263
+ * @return the visitor result
264
+ */
265
+ visitElementValueArrayInitializer;
266
+ /**
267
+ * Visit a parse tree produced by `ApexParser.block`.
268
+ * @param ctx the parse tree
269
+ * @return the visitor result
270
+ */
271
+ visitBlock;
272
+ /**
273
+ * Visit a parse tree produced by `ApexParser.localVariableDeclarationStatement`.
274
+ * @param ctx the parse tree
275
+ * @return the visitor result
276
+ */
277
+ visitLocalVariableDeclarationStatement;
278
+ /**
279
+ * Visit a parse tree produced by `ApexParser.localVariableDeclaration`.
280
+ * @param ctx the parse tree
281
+ * @return the visitor result
282
+ */
283
+ visitLocalVariableDeclaration;
284
+ /**
285
+ * Visit a parse tree produced by `ApexParser.statement`.
286
+ * @param ctx the parse tree
287
+ * @return the visitor result
288
+ */
289
+ visitStatement;
290
+ /**
291
+ * Visit a parse tree produced by `ApexParser.ifStatement`.
292
+ * @param ctx the parse tree
293
+ * @return the visitor result
294
+ */
295
+ visitIfStatement;
296
+ /**
297
+ * Visit a parse tree produced by `ApexParser.switchStatement`.
298
+ * @param ctx the parse tree
299
+ * @return the visitor result
300
+ */
301
+ visitSwitchStatement;
302
+ /**
303
+ * Visit a parse tree produced by `ApexParser.whenControl`.
304
+ * @param ctx the parse tree
305
+ * @return the visitor result
306
+ */
307
+ visitWhenControl;
308
+ /**
309
+ * Visit a parse tree produced by `ApexParser.whenValue`.
310
+ * @param ctx the parse tree
311
+ * @return the visitor result
312
+ */
313
+ visitWhenValue;
314
+ /**
315
+ * Visit a parse tree produced by `ApexParser.whenLiteral`.
316
+ * @param ctx the parse tree
317
+ * @return the visitor result
318
+ */
319
+ visitWhenLiteral;
320
+ /**
321
+ * Visit a parse tree produced by `ApexParser.forStatement`.
322
+ * @param ctx the parse tree
323
+ * @return the visitor result
324
+ */
325
+ visitForStatement;
326
+ /**
327
+ * Visit a parse tree produced by `ApexParser.whileStatement`.
328
+ * @param ctx the parse tree
329
+ * @return the visitor result
330
+ */
331
+ visitWhileStatement;
332
+ /**
333
+ * Visit a parse tree produced by `ApexParser.doWhileStatement`.
334
+ * @param ctx the parse tree
335
+ * @return the visitor result
336
+ */
337
+ visitDoWhileStatement;
338
+ /**
339
+ * Visit a parse tree produced by `ApexParser.tryStatement`.
340
+ * @param ctx the parse tree
341
+ * @return the visitor result
342
+ */
343
+ visitTryStatement;
344
+ /**
345
+ * Visit a parse tree produced by `ApexParser.returnStatement`.
346
+ * @param ctx the parse tree
347
+ * @return the visitor result
348
+ */
349
+ visitReturnStatement;
350
+ /**
351
+ * Visit a parse tree produced by `ApexParser.throwStatement`.
352
+ * @param ctx the parse tree
353
+ * @return the visitor result
354
+ */
355
+ visitThrowStatement;
356
+ /**
357
+ * Visit a parse tree produced by `ApexParser.breakStatement`.
358
+ * @param ctx the parse tree
359
+ * @return the visitor result
360
+ */
361
+ visitBreakStatement;
362
+ /**
363
+ * Visit a parse tree produced by `ApexParser.continueStatement`.
364
+ * @param ctx the parse tree
365
+ * @return the visitor result
366
+ */
367
+ visitContinueStatement;
368
+ /**
369
+ * Visit a parse tree produced by `ApexParser.accessLevel`.
370
+ * @param ctx the parse tree
371
+ * @return the visitor result
372
+ */
373
+ visitAccessLevel;
374
+ /**
375
+ * Visit a parse tree produced by `ApexParser.insertStatement`.
376
+ * @param ctx the parse tree
377
+ * @return the visitor result
378
+ */
379
+ visitInsertStatement;
380
+ /**
381
+ * Visit a parse tree produced by `ApexParser.updateStatement`.
382
+ * @param ctx the parse tree
383
+ * @return the visitor result
384
+ */
385
+ visitUpdateStatement;
386
+ /**
387
+ * Visit a parse tree produced by `ApexParser.deleteStatement`.
388
+ * @param ctx the parse tree
389
+ * @return the visitor result
390
+ */
391
+ visitDeleteStatement;
392
+ /**
393
+ * Visit a parse tree produced by `ApexParser.undeleteStatement`.
394
+ * @param ctx the parse tree
395
+ * @return the visitor result
396
+ */
397
+ visitUndeleteStatement;
398
+ /**
399
+ * Visit a parse tree produced by `ApexParser.upsertStatement`.
400
+ * @param ctx the parse tree
401
+ * @return the visitor result
402
+ */
403
+ visitUpsertStatement;
404
+ /**
405
+ * Visit a parse tree produced by `ApexParser.mergeStatement`.
406
+ * @param ctx the parse tree
407
+ * @return the visitor result
408
+ */
409
+ visitMergeStatement;
410
+ /**
411
+ * Visit a parse tree produced by `ApexParser.runAsStatement`.
412
+ * @param ctx the parse tree
413
+ * @return the visitor result
414
+ */
415
+ visitRunAsStatement;
416
+ /**
417
+ * Visit a parse tree produced by `ApexParser.expressionStatement`.
418
+ * @param ctx the parse tree
419
+ * @return the visitor result
420
+ */
421
+ visitExpressionStatement;
422
+ /**
423
+ * Visit a parse tree produced by `ApexParser.propertyBlock`.
424
+ * @param ctx the parse tree
425
+ * @return the visitor result
426
+ */
427
+ visitPropertyBlock;
428
+ /**
429
+ * Visit a parse tree produced by `ApexParser.getter`.
430
+ * @param ctx the parse tree
431
+ * @return the visitor result
432
+ */
433
+ visitGetter;
434
+ /**
435
+ * Visit a parse tree produced by `ApexParser.setter`.
436
+ * @param ctx the parse tree
437
+ * @return the visitor result
438
+ */
439
+ visitSetter;
440
+ /**
441
+ * Visit a parse tree produced by `ApexParser.catchClause`.
442
+ * @param ctx the parse tree
443
+ * @return the visitor result
444
+ */
445
+ visitCatchClause;
446
+ /**
447
+ * Visit a parse tree produced by `ApexParser.finallyBlock`.
448
+ * @param ctx the parse tree
449
+ * @return the visitor result
450
+ */
451
+ visitFinallyBlock;
452
+ /**
453
+ * Visit a parse tree produced by `ApexParser.forControl`.
454
+ * @param ctx the parse tree
455
+ * @return the visitor result
456
+ */
457
+ visitForControl;
458
+ /**
459
+ * Visit a parse tree produced by `ApexParser.forInit`.
460
+ * @param ctx the parse tree
461
+ * @return the visitor result
462
+ */
463
+ visitForInit;
464
+ /**
465
+ * Visit a parse tree produced by `ApexParser.enhancedForControl`.
466
+ * @param ctx the parse tree
467
+ * @return the visitor result
468
+ */
469
+ visitEnhancedForControl;
470
+ /**
471
+ * Visit a parse tree produced by `ApexParser.forUpdate`.
472
+ * @param ctx the parse tree
473
+ * @return the visitor result
474
+ */
475
+ visitForUpdate;
476
+ /**
477
+ * Visit a parse tree produced by `ApexParser.parExpression`.
478
+ * @param ctx the parse tree
479
+ * @return the visitor result
480
+ */
481
+ visitParExpression;
482
+ /**
483
+ * Visit a parse tree produced by `ApexParser.expressionList`.
484
+ * @param ctx the parse tree
485
+ * @return the visitor result
486
+ */
487
+ visitExpressionList;
488
+ /**
489
+ * Visit a parse tree produced by the `primaryExpression`
490
+ * labeled alternative in `ApexParser.expression`.
491
+ * @param ctx the parse tree
492
+ * @return the visitor result
493
+ */
494
+ visitPrimaryExpression;
495
+ /**
496
+ * Visit a parse tree produced by the `arth1Expression`
497
+ * labeled alternative in `ApexParser.expression`.
498
+ * @param ctx the parse tree
499
+ * @return the visitor result
500
+ */
501
+ visitArth1Expression;
502
+ /**
503
+ * Visit a parse tree produced by the `coalExpression`
504
+ * labeled alternative in `ApexParser.expression`.
505
+ * @param ctx the parse tree
506
+ * @return the visitor result
507
+ */
508
+ visitCoalExpression;
509
+ /**
510
+ * Visit a parse tree produced by the `dotExpression`
511
+ * labeled alternative in `ApexParser.expression`.
512
+ * @param ctx the parse tree
513
+ * @return the visitor result
514
+ */
515
+ visitDotExpression;
516
+ /**
517
+ * Visit a parse tree produced by the `bitOrExpression`
518
+ * labeled alternative in `ApexParser.expression`.
519
+ * @param ctx the parse tree
520
+ * @return the visitor result
521
+ */
522
+ visitBitOrExpression;
523
+ /**
524
+ * Visit a parse tree produced by the `arrayExpression`
525
+ * labeled alternative in `ApexParser.expression`.
526
+ * @param ctx the parse tree
527
+ * @return the visitor result
528
+ */
529
+ visitArrayExpression;
530
+ /**
531
+ * Visit a parse tree produced by the `newExpression`
532
+ * labeled alternative in `ApexParser.expression`.
533
+ * @param ctx the parse tree
534
+ * @return the visitor result
535
+ */
536
+ visitNewExpression;
537
+ /**
538
+ * Visit a parse tree produced by the `assignExpression`
539
+ * labeled alternative in `ApexParser.expression`.
540
+ * @param ctx the parse tree
541
+ * @return the visitor result
542
+ */
543
+ visitAssignExpression;
544
+ /**
545
+ * Visit a parse tree produced by the `methodCallExpression`
546
+ * labeled alternative in `ApexParser.expression`.
547
+ * @param ctx the parse tree
548
+ * @return the visitor result
549
+ */
550
+ visitMethodCallExpression;
551
+ /**
552
+ * Visit a parse tree produced by the `bitNotExpression`
553
+ * labeled alternative in `ApexParser.expression`.
554
+ * @param ctx the parse tree
555
+ * @return the visitor result
556
+ */
557
+ visitBitNotExpression;
558
+ /**
559
+ * Visit a parse tree produced by the `arth2Expression`
560
+ * labeled alternative in `ApexParser.expression`.
561
+ * @param ctx the parse tree
562
+ * @return the visitor result
563
+ */
564
+ visitArth2Expression;
565
+ /**
566
+ * Visit a parse tree produced by the `logAndExpression`
567
+ * labeled alternative in `ApexParser.expression`.
568
+ * @param ctx the parse tree
569
+ * @return the visitor result
570
+ */
571
+ visitLogAndExpression;
572
+ /**
573
+ * Visit a parse tree produced by the `castExpression`
574
+ * labeled alternative in `ApexParser.expression`.
575
+ * @param ctx the parse tree
576
+ * @return the visitor result
577
+ */
578
+ visitCastExpression;
579
+ /**
580
+ * Visit a parse tree produced by the `bitAndExpression`
581
+ * labeled alternative in `ApexParser.expression`.
582
+ * @param ctx the parse tree
583
+ * @return the visitor result
584
+ */
585
+ visitBitAndExpression;
586
+ /**
587
+ * Visit a parse tree produced by the `cmpExpression`
588
+ * labeled alternative in `ApexParser.expression`.
589
+ * @param ctx the parse tree
590
+ * @return the visitor result
591
+ */
592
+ visitCmpExpression;
593
+ /**
594
+ * Visit a parse tree produced by the `bitExpression`
595
+ * labeled alternative in `ApexParser.expression`.
596
+ * @param ctx the parse tree
597
+ * @return the visitor result
598
+ */
599
+ visitBitExpression;
600
+ /**
601
+ * Visit a parse tree produced by the `logOrExpression`
602
+ * labeled alternative in `ApexParser.expression`.
603
+ * @param ctx the parse tree
604
+ * @return the visitor result
605
+ */
606
+ visitLogOrExpression;
607
+ /**
608
+ * Visit a parse tree produced by the `condExpression`
609
+ * labeled alternative in `ApexParser.expression`.
610
+ * @param ctx the parse tree
611
+ * @return the visitor result
612
+ */
613
+ visitCondExpression;
614
+ /**
615
+ * Visit a parse tree produced by the `equalityExpression`
616
+ * labeled alternative in `ApexParser.expression`.
617
+ * @param ctx the parse tree
618
+ * @return the visitor result
619
+ */
620
+ visitEqualityExpression;
621
+ /**
622
+ * Visit a parse tree produced by the `postOpExpression`
623
+ * labeled alternative in `ApexParser.expression`.
624
+ * @param ctx the parse tree
625
+ * @return the visitor result
626
+ */
627
+ visitPostOpExpression;
628
+ /**
629
+ * Visit a parse tree produced by the `negExpression`
630
+ * labeled alternative in `ApexParser.expression`.
631
+ * @param ctx the parse tree
632
+ * @return the visitor result
633
+ */
634
+ visitNegExpression;
635
+ /**
636
+ * Visit a parse tree produced by the `preOpExpression`
637
+ * labeled alternative in `ApexParser.expression`.
638
+ * @param ctx the parse tree
639
+ * @return the visitor result
640
+ */
641
+ visitPreOpExpression;
642
+ /**
643
+ * Visit a parse tree produced by the `subExpression`
644
+ * labeled alternative in `ApexParser.expression`.
645
+ * @param ctx the parse tree
646
+ * @return the visitor result
647
+ */
648
+ visitSubExpression;
649
+ /**
650
+ * Visit a parse tree produced by the `instanceOfExpression`
651
+ * labeled alternative in `ApexParser.expression`.
652
+ * @param ctx the parse tree
653
+ * @return the visitor result
654
+ */
655
+ visitInstanceOfExpression;
656
+ /**
657
+ * Visit a parse tree produced by the `thisPrimary`
658
+ * labeled alternative in `ApexParser.primary`.
659
+ * @param ctx the parse tree
660
+ * @return the visitor result
661
+ */
662
+ visitThisPrimary;
663
+ /**
664
+ * Visit a parse tree produced by the `superPrimary`
665
+ * labeled alternative in `ApexParser.primary`.
666
+ * @param ctx the parse tree
667
+ * @return the visitor result
668
+ */
669
+ visitSuperPrimary;
670
+ /**
671
+ * Visit a parse tree produced by the `literalPrimary`
672
+ * labeled alternative in `ApexParser.primary`.
673
+ * @param ctx the parse tree
674
+ * @return the visitor result
675
+ */
676
+ visitLiteralPrimary;
677
+ /**
678
+ * Visit a parse tree produced by the `typeRefPrimary`
679
+ * labeled alternative in `ApexParser.primary`.
680
+ * @param ctx the parse tree
681
+ * @return the visitor result
682
+ */
683
+ visitTypeRefPrimary;
684
+ /**
685
+ * Visit a parse tree produced by the `voidPrimary`
686
+ * labeled alternative in `ApexParser.primary`.
687
+ * @param ctx the parse tree
688
+ * @return the visitor result
689
+ */
690
+ visitVoidPrimary;
691
+ /**
692
+ * Visit a parse tree produced by the `idPrimary`
693
+ * labeled alternative in `ApexParser.primary`.
694
+ * @param ctx the parse tree
695
+ * @return the visitor result
696
+ */
697
+ visitIdPrimary;
698
+ /**
699
+ * Visit a parse tree produced by the `soqlPrimary`
700
+ * labeled alternative in `ApexParser.primary`.
701
+ * @param ctx the parse tree
702
+ * @return the visitor result
703
+ */
704
+ visitSoqlPrimary;
705
+ /**
706
+ * Visit a parse tree produced by the `soslPrimary`
707
+ * labeled alternative in `ApexParser.primary`.
708
+ * @param ctx the parse tree
709
+ * @return the visitor result
710
+ */
711
+ visitSoslPrimary;
712
+ /**
713
+ * Visit a parse tree produced by `ApexParser.methodCall`.
714
+ * @param ctx the parse tree
715
+ * @return the visitor result
716
+ */
717
+ visitMethodCall;
718
+ /**
719
+ * Visit a parse tree produced by `ApexParser.dotMethodCall`.
720
+ * @param ctx the parse tree
721
+ * @return the visitor result
722
+ */
723
+ visitDotMethodCall;
724
+ /**
725
+ * Visit a parse tree produced by `ApexParser.creator`.
726
+ * @param ctx the parse tree
727
+ * @return the visitor result
728
+ */
729
+ visitCreator;
730
+ /**
731
+ * Visit a parse tree produced by `ApexParser.createdName`.
732
+ * @param ctx the parse tree
733
+ * @return the visitor result
734
+ */
735
+ visitCreatedName;
736
+ /**
737
+ * Visit a parse tree produced by `ApexParser.idCreatedNamePair`.
738
+ * @param ctx the parse tree
739
+ * @return the visitor result
740
+ */
741
+ visitIdCreatedNamePair;
742
+ /**
743
+ * Visit a parse tree produced by `ApexParser.noRest`.
744
+ * @param ctx the parse tree
745
+ * @return the visitor result
746
+ */
747
+ visitNoRest;
748
+ /**
749
+ * Visit a parse tree produced by `ApexParser.classCreatorRest`.
750
+ * @param ctx the parse tree
751
+ * @return the visitor result
752
+ */
753
+ visitClassCreatorRest;
754
+ /**
755
+ * Visit a parse tree produced by `ApexParser.arrayCreatorRest`.
756
+ * @param ctx the parse tree
757
+ * @return the visitor result
758
+ */
759
+ visitArrayCreatorRest;
760
+ /**
761
+ * Visit a parse tree produced by `ApexParser.mapCreatorRest`.
762
+ * @param ctx the parse tree
763
+ * @return the visitor result
764
+ */
765
+ visitMapCreatorRest;
766
+ /**
767
+ * Visit a parse tree produced by `ApexParser.mapCreatorRestPair`.
768
+ * @param ctx the parse tree
769
+ * @return the visitor result
770
+ */
771
+ visitMapCreatorRestPair;
772
+ /**
773
+ * Visit a parse tree produced by `ApexParser.setCreatorRest`.
774
+ * @param ctx the parse tree
775
+ * @return the visitor result
776
+ */
777
+ visitSetCreatorRest;
778
+ /**
779
+ * Visit a parse tree produced by `ApexParser.arguments`.
780
+ * @param ctx the parse tree
781
+ * @return the visitor result
782
+ */
783
+ visitArguments;
784
+ /**
785
+ * Visit a parse tree produced by `ApexParser.soqlLiteral`.
786
+ * @param ctx the parse tree
787
+ * @return the visitor result
788
+ */
789
+ visitSoqlLiteral;
790
+ /**
791
+ * Visit a parse tree produced by `ApexParser.query`.
792
+ * @param ctx the parse tree
793
+ * @return the visitor result
794
+ */
795
+ visitQuery;
796
+ /**
797
+ * Visit a parse tree produced by `ApexParser.subQuery`.
798
+ * @param ctx the parse tree
799
+ * @return the visitor result
800
+ */
801
+ visitSubQuery;
802
+ /**
803
+ * Visit a parse tree produced by `ApexParser.selectList`.
804
+ * @param ctx the parse tree
805
+ * @return the visitor result
806
+ */
807
+ visitSelectList;
808
+ /**
809
+ * Visit a parse tree produced by `ApexParser.selectEntry`.
810
+ * @param ctx the parse tree
811
+ * @return the visitor result
812
+ */
813
+ visitSelectEntry;
814
+ /**
815
+ * Visit a parse tree produced by `ApexParser.fieldName`.
816
+ * @param ctx the parse tree
817
+ * @return the visitor result
818
+ */
819
+ visitFieldName;
820
+ /**
821
+ * Visit a parse tree produced by `ApexParser.fromNameList`.
822
+ * @param ctx the parse tree
823
+ * @return the visitor result
824
+ */
825
+ visitFromNameList;
826
+ /**
827
+ * Visit a parse tree produced by `ApexParser.subFieldList`.
828
+ * @param ctx the parse tree
829
+ * @return the visitor result
830
+ */
831
+ visitSubFieldList;
832
+ /**
833
+ * Visit a parse tree produced by `ApexParser.subFieldEntry`.
834
+ * @param ctx the parse tree
835
+ * @return the visitor result
836
+ */
837
+ visitSubFieldEntry;
838
+ /**
839
+ * Visit a parse tree produced by `ApexParser.soqlFieldsParameter`.
840
+ * @param ctx the parse tree
841
+ * @return the visitor result
842
+ */
843
+ visitSoqlFieldsParameter;
844
+ /**
845
+ * Visit a parse tree produced by `ApexParser.soqlFunction`.
846
+ * @param ctx the parse tree
847
+ * @return the visitor result
848
+ */
849
+ visitSoqlFunction;
850
+ /**
851
+ * Visit a parse tree produced by `ApexParser.dateFieldName`.
852
+ * @param ctx the parse tree
853
+ * @return the visitor result
854
+ */
855
+ visitDateFieldName;
856
+ /**
857
+ * Visit a parse tree produced by `ApexParser.locationValue`.
858
+ * @param ctx the parse tree
859
+ * @return the visitor result
860
+ */
861
+ visitLocationValue;
862
+ /**
863
+ * Visit a parse tree produced by `ApexParser.coordinateValue`.
864
+ * @param ctx the parse tree
865
+ * @return the visitor result
866
+ */
867
+ visitCoordinateValue;
868
+ /**
869
+ * Visit a parse tree produced by `ApexParser.typeOf`.
870
+ * @param ctx the parse tree
871
+ * @return the visitor result
872
+ */
873
+ visitTypeOf;
874
+ /**
875
+ * Visit a parse tree produced by `ApexParser.whenClause`.
876
+ * @param ctx the parse tree
877
+ * @return the visitor result
878
+ */
879
+ visitWhenClause;
880
+ /**
881
+ * Visit a parse tree produced by `ApexParser.elseClause`.
882
+ * @param ctx the parse tree
883
+ * @return the visitor result
884
+ */
885
+ visitElseClause;
886
+ /**
887
+ * Visit a parse tree produced by `ApexParser.fieldNameList`.
888
+ * @param ctx the parse tree
889
+ * @return the visitor result
890
+ */
891
+ visitFieldNameList;
892
+ /**
893
+ * Visit a parse tree produced by `ApexParser.usingScope`.
894
+ * @param ctx the parse tree
895
+ * @return the visitor result
896
+ */
897
+ visitUsingScope;
898
+ /**
899
+ * Visit a parse tree produced by `ApexParser.whereClause`.
900
+ * @param ctx the parse tree
901
+ * @return the visitor result
902
+ */
903
+ visitWhereClause;
904
+ /**
905
+ * Visit a parse tree produced by `ApexParser.logicalExpression`.
906
+ * @param ctx the parse tree
907
+ * @return the visitor result
908
+ */
909
+ visitLogicalExpression;
910
+ /**
911
+ * Visit a parse tree produced by `ApexParser.conditionalExpression`.
912
+ * @param ctx the parse tree
913
+ * @return the visitor result
914
+ */
915
+ visitConditionalExpression;
916
+ /**
917
+ * Visit a parse tree produced by `ApexParser.fieldExpression`.
918
+ * @param ctx the parse tree
919
+ * @return the visitor result
920
+ */
921
+ visitFieldExpression;
922
+ /**
923
+ * Visit a parse tree produced by `ApexParser.comparisonOperator`.
924
+ * @param ctx the parse tree
925
+ * @return the visitor result
926
+ */
927
+ visitComparisonOperator;
928
+ /**
929
+ * Visit a parse tree produced by `ApexParser.value`.
930
+ * @param ctx the parse tree
931
+ * @return the visitor result
932
+ */
933
+ visitValue;
934
+ /**
935
+ * Visit a parse tree produced by `ApexParser.valueList`.
936
+ * @param ctx the parse tree
937
+ * @return the visitor result
938
+ */
939
+ visitValueList;
940
+ /**
941
+ * Visit a parse tree produced by `ApexParser.signedNumber`.
942
+ * @param ctx the parse tree
943
+ * @return the visitor result
944
+ */
945
+ visitSignedNumber;
946
+ /**
947
+ * Visit a parse tree produced by `ApexParser.withClause`.
948
+ * @param ctx the parse tree
949
+ * @return the visitor result
950
+ */
951
+ visitWithClause;
952
+ /**
953
+ * Visit a parse tree produced by `ApexParser.filteringExpression`.
954
+ * @param ctx the parse tree
955
+ * @return the visitor result
956
+ */
957
+ visitFilteringExpression;
958
+ /**
959
+ * Visit a parse tree produced by `ApexParser.dataCategorySelection`.
960
+ * @param ctx the parse tree
961
+ * @return the visitor result
962
+ */
963
+ visitDataCategorySelection;
964
+ /**
965
+ * Visit a parse tree produced by `ApexParser.dataCategoryName`.
966
+ * @param ctx the parse tree
967
+ * @return the visitor result
968
+ */
969
+ visitDataCategoryName;
970
+ /**
971
+ * Visit a parse tree produced by `ApexParser.filteringSelector`.
972
+ * @param ctx the parse tree
973
+ * @return the visitor result
974
+ */
975
+ visitFilteringSelector;
976
+ /**
977
+ * Visit a parse tree produced by `ApexParser.groupByClause`.
978
+ * @param ctx the parse tree
979
+ * @return the visitor result
980
+ */
981
+ visitGroupByClause;
982
+ /**
983
+ * Visit a parse tree produced by `ApexParser.fieldGroupByList`.
984
+ * @param ctx the parse tree
985
+ * @return the visitor result
986
+ */
987
+ visitFieldGroupByList;
988
+ /**
989
+ * Visit a parse tree produced by `ApexParser.fieldGroupBy`.
990
+ * @param ctx the parse tree
991
+ * @return the visitor result
992
+ */
993
+ visitFieldGroupBy;
994
+ /**
995
+ * Visit a parse tree produced by `ApexParser.orderByClause`.
996
+ * @param ctx the parse tree
997
+ * @return the visitor result
998
+ */
999
+ visitOrderByClause;
1000
+ /**
1001
+ * Visit a parse tree produced by `ApexParser.fieldOrderList`.
1002
+ * @param ctx the parse tree
1003
+ * @return the visitor result
1004
+ */
1005
+ visitFieldOrderList;
1006
+ /**
1007
+ * Visit a parse tree produced by `ApexParser.fieldOrder`.
1008
+ * @param ctx the parse tree
1009
+ * @return the visitor result
1010
+ */
1011
+ visitFieldOrder;
1012
+ /**
1013
+ * Visit a parse tree produced by `ApexParser.limitClause`.
1014
+ * @param ctx the parse tree
1015
+ * @return the visitor result
1016
+ */
1017
+ visitLimitClause;
1018
+ /**
1019
+ * Visit a parse tree produced by `ApexParser.offsetClause`.
1020
+ * @param ctx the parse tree
1021
+ * @return the visitor result
1022
+ */
1023
+ visitOffsetClause;
1024
+ /**
1025
+ * Visit a parse tree produced by `ApexParser.allRowsClause`.
1026
+ * @param ctx the parse tree
1027
+ * @return the visitor result
1028
+ */
1029
+ visitAllRowsClause;
1030
+ /**
1031
+ * Visit a parse tree produced by `ApexParser.forClauses`.
1032
+ * @param ctx the parse tree
1033
+ * @return the visitor result
1034
+ */
1035
+ visitForClauses;
1036
+ /**
1037
+ * Visit a parse tree produced by `ApexParser.boundExpression`.
1038
+ * @param ctx the parse tree
1039
+ * @return the visitor result
1040
+ */
1041
+ visitBoundExpression;
1042
+ /**
1043
+ * Visit a parse tree produced by `ApexParser.dateFormula`.
1044
+ * @param ctx the parse tree
1045
+ * @return the visitor result
1046
+ */
1047
+ visitDateFormula;
1048
+ /**
1049
+ * Visit a parse tree produced by `ApexParser.signedInteger`.
1050
+ * @param ctx the parse tree
1051
+ * @return the visitor result
1052
+ */
1053
+ visitSignedInteger;
1054
+ /**
1055
+ * Visit a parse tree produced by `ApexParser.soqlId`.
1056
+ * @param ctx the parse tree
1057
+ * @return the visitor result
1058
+ */
1059
+ visitSoqlId;
1060
+ /**
1061
+ * Visit a parse tree produced by `ApexParser.soslLiteral`.
1062
+ * @param ctx the parse tree
1063
+ * @return the visitor result
1064
+ */
1065
+ visitSoslLiteral;
1066
+ /**
1067
+ * Visit a parse tree produced by `ApexParser.soslLiteralAlt`.
1068
+ * @param ctx the parse tree
1069
+ * @return the visitor result
1070
+ */
1071
+ visitSoslLiteralAlt;
1072
+ /**
1073
+ * Visit a parse tree produced by `ApexParser.soslClauses`.
1074
+ * @param ctx the parse tree
1075
+ * @return the visitor result
1076
+ */
1077
+ visitSoslClauses;
1078
+ /**
1079
+ * Visit a parse tree produced by `ApexParser.soslWithClause`.
1080
+ * @param ctx the parse tree
1081
+ * @return the visitor result
1082
+ */
1083
+ visitSoslWithClause;
1084
+ /**
1085
+ * Visit a parse tree produced by `ApexParser.searchGroup`.
1086
+ * @param ctx the parse tree
1087
+ * @return the visitor result
1088
+ */
1089
+ visitSearchGroup;
1090
+ /**
1091
+ * Visit a parse tree produced by `ApexParser.fieldSpecList`.
1092
+ * @param ctx the parse tree
1093
+ * @return the visitor result
1094
+ */
1095
+ visitFieldSpecList;
1096
+ /**
1097
+ * Visit a parse tree produced by `ApexParser.fieldSpec`.
1098
+ * @param ctx the parse tree
1099
+ * @return the visitor result
1100
+ */
1101
+ visitFieldSpec;
1102
+ /**
1103
+ * Visit a parse tree produced by `ApexParser.fieldList`.
1104
+ * @param ctx the parse tree
1105
+ * @return the visitor result
1106
+ */
1107
+ visitFieldList;
1108
+ /**
1109
+ * Visit a parse tree produced by `ApexParser.updateList`.
1110
+ * @param ctx the parse tree
1111
+ * @return the visitor result
1112
+ */
1113
+ visitUpdateList;
1114
+ /**
1115
+ * Visit a parse tree produced by `ApexParser.updateType`.
1116
+ * @param ctx the parse tree
1117
+ * @return the visitor result
1118
+ */
1119
+ visitUpdateType;
1120
+ /**
1121
+ * Visit a parse tree produced by `ApexParser.networkList`.
1122
+ * @param ctx the parse tree
1123
+ * @return the visitor result
1124
+ */
1125
+ visitNetworkList;
1126
+ /**
1127
+ * Visit a parse tree produced by `ApexParser.soslId`.
1128
+ * @param ctx the parse tree
1129
+ * @return the visitor result
1130
+ */
1131
+ visitSoslId;
1132
+ /**
1133
+ * Visit a parse tree produced by `ApexParser.id`.
1134
+ * @param ctx the parse tree
1135
+ * @return the visitor result
1136
+ */
1137
+ visitId;
1138
+ /**
1139
+ * Visit a parse tree produced by `ApexParser.anyId`.
1140
+ * @param ctx the parse tree
1141
+ * @return the visitor result
1142
+ */
1143
+ visitAnyId;
1144
+ }
1145
+
1146
+ exports.default = ApexParserVisitor;
1147
+ //# sourceMappingURL=ApexParserVisitor.cjs.map