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