UNPKG

22.8 kBJavaScriptView Raw
1/* istanbul ignore file */
2/* eslint-disable */
3// Generated from SOQL.g4 by ANTLR 4.7.1
4// jshint ignore: start
5var antlr4 = require('antlr4/index');
6
7// This class defines a complete listener for a parse tree produced by SOQLParser.
8function SOQLListener() {
9 antlr4.tree.ParseTreeListener.call(this);
10 return this;
11}
12
13SOQLListener.prototype = Object.create(antlr4.tree.ParseTreeListener.prototype);
14SOQLListener.prototype.constructor = SOQLListener;
15
16// Enter a parse tree produced by SOQLParser#keywords_alias_allowed.
17SOQLListener.prototype.enterKeywords_alias_allowed = function(ctx) {
18};
19
20// Exit a parse tree produced by SOQLParser#keywords_alias_allowed.
21SOQLListener.prototype.exitKeywords_alias_allowed = function(ctx) {
22};
23
24
25// Enter a parse tree produced by SOQLParser#keywords_name_allowed.
26SOQLListener.prototype.enterKeywords_name_allowed = function(ctx) {
27};
28
29// Exit a parse tree produced by SOQLParser#keywords_name_allowed.
30SOQLListener.prototype.exitKeywords_name_allowed = function(ctx) {
31};
32
33
34// Enter a parse tree produced by SOQLParser#name.
35SOQLListener.prototype.enterName = function(ctx) {
36};
37
38// Exit a parse tree produced by SOQLParser#name.
39SOQLListener.prototype.exitName = function(ctx) {
40};
41
42
43// Enter a parse tree produced by SOQLParser#object_name.
44SOQLListener.prototype.enterObject_name = function(ctx) {
45};
46
47// Exit a parse tree produced by SOQLParser#object_name.
48SOQLListener.prototype.exitObject_name = function(ctx) {
49};
50
51
52// Enter a parse tree produced by SOQLParser#field_name.
53SOQLListener.prototype.enterField_name = function(ctx) {
54};
55
56// Exit a parse tree produced by SOQLParser#field_name.
57SOQLListener.prototype.exitField_name = function(ctx) {
58};
59
60
61// Enter a parse tree produced by SOQLParser#filter_scope_name.
62SOQLListener.prototype.enterFilter_scope_name = function(ctx) {
63};
64
65// Exit a parse tree produced by SOQLParser#filter_scope_name.
66SOQLListener.prototype.exitFilter_scope_name = function(ctx) {
67};
68
69
70// Enter a parse tree produced by SOQLParser#data_category_group_name.
71SOQLListener.prototype.enterData_category_group_name = function(ctx) {
72};
73
74// Exit a parse tree produced by SOQLParser#data_category_group_name.
75SOQLListener.prototype.exitData_category_group_name = function(ctx) {
76};
77
78
79// Enter a parse tree produced by SOQLParser#data_category_name.
80SOQLListener.prototype.enterData_category_name = function(ctx) {
81};
82
83// Exit a parse tree produced by SOQLParser#data_category_name.
84SOQLListener.prototype.exitData_category_name = function(ctx) {
85};
86
87
88// Enter a parse tree produced by SOQLParser#alias_name.
89SOQLListener.prototype.enterAlias_name = function(ctx) {
90};
91
92// Exit a parse tree produced by SOQLParser#alias_name.
93SOQLListener.prototype.exitAlias_name = function(ctx) {
94};
95
96
97// Enter a parse tree produced by SOQLParser#alias.
98SOQLListener.prototype.enterAlias = function(ctx) {
99};
100
101// Exit a parse tree produced by SOQLParser#alias.
102SOQLListener.prototype.exitAlias = function(ctx) {
103};
104
105
106// Enter a parse tree produced by SOQLParser#literal.
107SOQLListener.prototype.enterLiteral = function(ctx) {
108};
109
110// Exit a parse tree produced by SOQLParser#literal.
111SOQLListener.prototype.exitLiteral = function(ctx) {
112};
113
114
115// Enter a parse tree produced by SOQLParser#date_formula_literal.
116SOQLListener.prototype.enterDate_formula_literal = function(ctx) {
117};
118
119// Exit a parse tree produced by SOQLParser#date_formula_literal.
120SOQLListener.prototype.exitDate_formula_literal = function(ctx) {
121};
122
123
124// Enter a parse tree produced by SOQLParser#date_formula_n_literal_name.
125SOQLListener.prototype.enterDate_formula_n_literal_name = function(ctx) {
126};
127
128// Exit a parse tree produced by SOQLParser#date_formula_n_literal_name.
129SOQLListener.prototype.exitDate_formula_n_literal_name = function(ctx) {
130};
131
132
133// Enter a parse tree produced by SOQLParser#date_formula_n_literal.
134SOQLListener.prototype.enterDate_formula_n_literal = function(ctx) {
135};
136
137// Exit a parse tree produced by SOQLParser#date_formula_n_literal.
138SOQLListener.prototype.exitDate_formula_n_literal = function(ctx) {
139};
140
141
142// Enter a parse tree produced by SOQLParser#datetime_literal.
143SOQLListener.prototype.enterDatetime_literal = function(ctx) {
144};
145
146// Exit a parse tree produced by SOQLParser#datetime_literal.
147SOQLListener.prototype.exitDatetime_literal = function(ctx) {
148};
149
150
151// Enter a parse tree produced by SOQLParser#date_literal.
152SOQLListener.prototype.enterDate_literal = function(ctx) {
153};
154
155// Exit a parse tree produced by SOQLParser#date_literal.
156SOQLListener.prototype.exitDate_literal = function(ctx) {
157};
158
159
160// Enter a parse tree produced by SOQLParser#integer_literal.
161SOQLListener.prototype.enterInteger_literal = function(ctx) {
162};
163
164// Exit a parse tree produced by SOQLParser#integer_literal.
165SOQLListener.prototype.exitInteger_literal = function(ctx) {
166};
167
168
169// Enter a parse tree produced by SOQLParser#real_literal.
170SOQLListener.prototype.enterReal_literal = function(ctx) {
171};
172
173// Exit a parse tree produced by SOQLParser#real_literal.
174SOQLListener.prototype.exitReal_literal = function(ctx) {
175};
176
177
178// Enter a parse tree produced by SOQLParser#string_literal.
179SOQLListener.prototype.enterString_literal = function(ctx) {
180};
181
182// Exit a parse tree produced by SOQLParser#string_literal.
183SOQLListener.prototype.exitString_literal = function(ctx) {
184};
185
186
187// Enter a parse tree produced by SOQLParser#boolean_literal.
188SOQLListener.prototype.enterBoolean_literal = function(ctx) {
189};
190
191// Exit a parse tree produced by SOQLParser#boolean_literal.
192SOQLListener.prototype.exitBoolean_literal = function(ctx) {
193};
194
195
196// Enter a parse tree produced by SOQLParser#null_literal.
197SOQLListener.prototype.enterNull_literal = function(ctx) {
198};
199
200// Exit a parse tree produced by SOQLParser#null_literal.
201SOQLListener.prototype.exitNull_literal = function(ctx) {
202};
203
204
205// Enter a parse tree produced by SOQLParser#function_name.
206SOQLListener.prototype.enterFunction_name = function(ctx) {
207};
208
209// Exit a parse tree produced by SOQLParser#function_name.
210SOQLListener.prototype.exitFunction_name = function(ctx) {
211};
212
213
214// Enter a parse tree produced by SOQLParser#function_date.
215SOQLListener.prototype.enterFunction_date = function(ctx) {
216};
217
218// Exit a parse tree produced by SOQLParser#function_date.
219SOQLListener.prototype.exitFunction_date = function(ctx) {
220};
221
222
223// Enter a parse tree produced by SOQLParser#function_aggregate.
224SOQLListener.prototype.enterFunction_aggregate = function(ctx) {
225};
226
227// Exit a parse tree produced by SOQLParser#function_aggregate.
228SOQLListener.prototype.exitFunction_aggregate = function(ctx) {
229};
230
231
232// Enter a parse tree produced by SOQLParser#function_location.
233SOQLListener.prototype.enterFunction_location = function(ctx) {
234};
235
236// Exit a parse tree produced by SOQLParser#function_location.
237SOQLListener.prototype.exitFunction_location = function(ctx) {
238};
239
240
241// Enter a parse tree produced by SOQLParser#function_other.
242SOQLListener.prototype.enterFunction_other = function(ctx) {
243};
244
245// Exit a parse tree produced by SOQLParser#function_other.
246SOQLListener.prototype.exitFunction_other = function(ctx) {
247};
248
249
250// Enter a parse tree produced by SOQLParser#soql_query.
251SOQLListener.prototype.enterSoql_query = function(ctx) {
252};
253
254// Exit a parse tree produced by SOQLParser#soql_query.
255SOQLListener.prototype.exitSoql_query = function(ctx) {
256};
257
258
259// Enter a parse tree produced by SOQLParser#select_clause.
260SOQLListener.prototype.enterSelect_clause = function(ctx) {
261};
262
263// Exit a parse tree produced by SOQLParser#select_clause.
264SOQLListener.prototype.exitSelect_clause = function(ctx) {
265};
266
267
268// Enter a parse tree produced by SOQLParser#from_clause.
269SOQLListener.prototype.enterFrom_clause = function(ctx) {
270};
271
272// Exit a parse tree produced by SOQLParser#from_clause.
273SOQLListener.prototype.exitFrom_clause = function(ctx) {
274};
275
276
277// Enter a parse tree produced by SOQLParser#using_clause.
278SOQLListener.prototype.enterUsing_clause = function(ctx) {
279};
280
281// Exit a parse tree produced by SOQLParser#using_clause.
282SOQLListener.prototype.exitUsing_clause = function(ctx) {
283};
284
285
286// Enter a parse tree produced by SOQLParser#where_clause.
287SOQLListener.prototype.enterWhere_clause = function(ctx) {
288};
289
290// Exit a parse tree produced by SOQLParser#where_clause.
291SOQLListener.prototype.exitWhere_clause = function(ctx) {
292};
293
294
295// Enter a parse tree produced by SOQLParser#groupby_clause.
296SOQLListener.prototype.enterGroupby_clause = function(ctx) {
297};
298
299// Exit a parse tree produced by SOQLParser#groupby_clause.
300SOQLListener.prototype.exitGroupby_clause = function(ctx) {
301};
302
303
304// Enter a parse tree produced by SOQLParser#having_clause.
305SOQLListener.prototype.enterHaving_clause = function(ctx) {
306};
307
308// Exit a parse tree produced by SOQLParser#having_clause.
309SOQLListener.prototype.exitHaving_clause = function(ctx) {
310};
311
312
313// Enter a parse tree produced by SOQLParser#orderby_clause.
314SOQLListener.prototype.enterOrderby_clause = function(ctx) {
315};
316
317// Exit a parse tree produced by SOQLParser#orderby_clause.
318SOQLListener.prototype.exitOrderby_clause = function(ctx) {
319};
320
321
322// Enter a parse tree produced by SOQLParser#limit_clause.
323SOQLListener.prototype.enterLimit_clause = function(ctx) {
324};
325
326// Exit a parse tree produced by SOQLParser#limit_clause.
327SOQLListener.prototype.exitLimit_clause = function(ctx) {
328};
329
330
331// Enter a parse tree produced by SOQLParser#offset_clause.
332SOQLListener.prototype.enterOffset_clause = function(ctx) {
333};
334
335// Exit a parse tree produced by SOQLParser#offset_clause.
336SOQLListener.prototype.exitOffset_clause = function(ctx) {
337};
338
339
340// Enter a parse tree produced by SOQLParser#for_clause.
341SOQLListener.prototype.enterFor_clause = function(ctx) {
342};
343
344// Exit a parse tree produced by SOQLParser#for_clause.
345SOQLListener.prototype.exitFor_clause = function(ctx) {
346};
347
348
349// Enter a parse tree produced by SOQLParser#update_clause.
350SOQLListener.prototype.enterUpdate_clause = function(ctx) {
351};
352
353// Exit a parse tree produced by SOQLParser#update_clause.
354SOQLListener.prototype.exitUpdate_clause = function(ctx) {
355};
356
357
358// Enter a parse tree produced by SOQLParser#soql_subquery.
359SOQLListener.prototype.enterSoql_subquery = function(ctx) {
360};
361
362// Exit a parse tree produced by SOQLParser#soql_subquery.
363SOQLListener.prototype.exitSoql_subquery = function(ctx) {
364};
365
366
367// Enter a parse tree produced by SOQLParser#subquery_select_clause.
368SOQLListener.prototype.enterSubquery_select_clause = function(ctx) {
369};
370
371// Exit a parse tree produced by SOQLParser#subquery_select_clause.
372SOQLListener.prototype.exitSubquery_select_clause = function(ctx) {
373};
374
375
376// Enter a parse tree produced by SOQLParser#select_spec.
377SOQLListener.prototype.enterSelect_spec = function(ctx) {
378};
379
380// Exit a parse tree produced by SOQLParser#select_spec.
381SOQLListener.prototype.exitSelect_spec = function(ctx) {
382};
383
384
385// Enter a parse tree produced by SOQLParser#subquery_select_spec.
386SOQLListener.prototype.enterSubquery_select_spec = function(ctx) {
387};
388
389// Exit a parse tree produced by SOQLParser#subquery_select_spec.
390SOQLListener.prototype.exitSubquery_select_spec = function(ctx) {
391};
392
393
394// Enter a parse tree produced by SOQLParser#field_spec.
395SOQLListener.prototype.enterField_spec = function(ctx) {
396};
397
398// Exit a parse tree produced by SOQLParser#field_spec.
399SOQLListener.prototype.exitField_spec = function(ctx) {
400};
401
402
403// Enter a parse tree produced by SOQLParser#function_call_spec.
404SOQLListener.prototype.enterFunction_call_spec = function(ctx) {
405};
406
407// Exit a parse tree produced by SOQLParser#function_call_spec.
408SOQLListener.prototype.exitFunction_call_spec = function(ctx) {
409};
410
411
412// Enter a parse tree produced by SOQLParser#field.
413SOQLListener.prototype.enterField = function(ctx) {
414};
415
416// Exit a parse tree produced by SOQLParser#field.
417SOQLListener.prototype.exitField = function(ctx) {
418};
419
420
421// Enter a parse tree produced by SOQLParser#function_call.
422SOQLListener.prototype.enterFunction_call = function(ctx) {
423};
424
425// Exit a parse tree produced by SOQLParser#function_call.
426SOQLListener.prototype.exitFunction_call = function(ctx) {
427};
428
429
430// Enter a parse tree produced by SOQLParser#function_parameter_list.
431SOQLListener.prototype.enterFunction_parameter_list = function(ctx) {
432};
433
434// Exit a parse tree produced by SOQLParser#function_parameter_list.
435SOQLListener.prototype.exitFunction_parameter_list = function(ctx) {
436};
437
438
439// Enter a parse tree produced by SOQLParser#function_parameter.
440SOQLListener.prototype.enterFunction_parameter = function(ctx) {
441};
442
443// Exit a parse tree produced by SOQLParser#function_parameter.
444SOQLListener.prototype.exitFunction_parameter = function(ctx) {
445};
446
447
448// Enter a parse tree produced by SOQLParser#typeof_spec.
449SOQLListener.prototype.enterTypeof_spec = function(ctx) {
450};
451
452// Exit a parse tree produced by SOQLParser#typeof_spec.
453SOQLListener.prototype.exitTypeof_spec = function(ctx) {
454};
455
456
457// Enter a parse tree produced by SOQLParser#typeof_when_then_clause_list.
458SOQLListener.prototype.enterTypeof_when_then_clause_list = function(ctx) {
459};
460
461// Exit a parse tree produced by SOQLParser#typeof_when_then_clause_list.
462SOQLListener.prototype.exitTypeof_when_then_clause_list = function(ctx) {
463};
464
465
466// Enter a parse tree produced by SOQLParser#typeof_when_then_clause.
467SOQLListener.prototype.enterTypeof_when_then_clause = function(ctx) {
468};
469
470// Exit a parse tree produced by SOQLParser#typeof_when_then_clause.
471SOQLListener.prototype.exitTypeof_when_then_clause = function(ctx) {
472};
473
474
475// Enter a parse tree produced by SOQLParser#typeof_then_clause.
476SOQLListener.prototype.enterTypeof_then_clause = function(ctx) {
477};
478
479// Exit a parse tree produced by SOQLParser#typeof_then_clause.
480SOQLListener.prototype.exitTypeof_then_clause = function(ctx) {
481};
482
483
484// Enter a parse tree produced by SOQLParser#typeof_else_clause.
485SOQLListener.prototype.enterTypeof_else_clause = function(ctx) {
486};
487
488// Exit a parse tree produced by SOQLParser#typeof_else_clause.
489SOQLListener.prototype.exitTypeof_else_clause = function(ctx) {
490};
491
492
493// Enter a parse tree produced by SOQLParser#field_list.
494SOQLListener.prototype.enterField_list = function(ctx) {
495};
496
497// Exit a parse tree produced by SOQLParser#field_list.
498SOQLListener.prototype.exitField_list = function(ctx) {
499};
500
501
502// Enter a parse tree produced by SOQLParser#object_spec.
503SOQLListener.prototype.enterObject_spec = function(ctx) {
504};
505
506// Exit a parse tree produced by SOQLParser#object_spec.
507SOQLListener.prototype.exitObject_spec = function(ctx) {
508};
509
510
511// Enter a parse tree produced by SOQLParser#object_prefix.
512SOQLListener.prototype.enterObject_prefix = function(ctx) {
513};
514
515// Exit a parse tree produced by SOQLParser#object_prefix.
516SOQLListener.prototype.exitObject_prefix = function(ctx) {
517};
518
519
520// Enter a parse tree produced by SOQLParser#comparison_operator.
521SOQLListener.prototype.enterComparison_operator = function(ctx) {
522};
523
524// Exit a parse tree produced by SOQLParser#comparison_operator.
525SOQLListener.prototype.exitComparison_operator = function(ctx) {
526};
527
528
529// Enter a parse tree produced by SOQLParser#set_operator.
530SOQLListener.prototype.enterSet_operator = function(ctx) {
531};
532
533// Exit a parse tree produced by SOQLParser#set_operator.
534SOQLListener.prototype.exitSet_operator = function(ctx) {
535};
536
537
538// Enter a parse tree produced by SOQLParser#condition.
539SOQLListener.prototype.enterCondition = function(ctx) {
540};
541
542// Exit a parse tree produced by SOQLParser#condition.
543SOQLListener.prototype.exitCondition = function(ctx) {
544};
545
546
547// Enter a parse tree produced by SOQLParser#condition1.
548SOQLListener.prototype.enterCondition1 = function(ctx) {
549};
550
551// Exit a parse tree produced by SOQLParser#condition1.
552SOQLListener.prototype.exitCondition1 = function(ctx) {
553};
554
555
556// Enter a parse tree produced by SOQLParser#parenthesis.
557SOQLListener.prototype.enterParenthesis = function(ctx) {
558};
559
560// Exit a parse tree produced by SOQLParser#parenthesis.
561SOQLListener.prototype.exitParenthesis = function(ctx) {
562};
563
564
565// Enter a parse tree produced by SOQLParser#simple_condition.
566SOQLListener.prototype.enterSimple_condition = function(ctx) {
567};
568
569// Exit a parse tree produced by SOQLParser#simple_condition.
570SOQLListener.prototype.exitSimple_condition = function(ctx) {
571};
572
573
574// Enter a parse tree produced by SOQLParser#field_based_condition.
575SOQLListener.prototype.enterField_based_condition = function(ctx) {
576};
577
578// Exit a parse tree produced by SOQLParser#field_based_condition.
579SOQLListener.prototype.exitField_based_condition = function(ctx) {
580};
581
582
583// Enter a parse tree produced by SOQLParser#set_based_condition.
584SOQLListener.prototype.enterSet_based_condition = function(ctx) {
585};
586
587// Exit a parse tree produced by SOQLParser#set_based_condition.
588SOQLListener.prototype.exitSet_based_condition = function(ctx) {
589};
590
591
592// Enter a parse tree produced by SOQLParser#like_based_condition.
593SOQLListener.prototype.enterLike_based_condition = function(ctx) {
594};
595
596// Exit a parse tree produced by SOQLParser#like_based_condition.
597SOQLListener.prototype.exitLike_based_condition = function(ctx) {
598};
599
600
601// Enter a parse tree produced by SOQLParser#condition_field.
602SOQLListener.prototype.enterCondition_field = function(ctx) {
603};
604
605// Exit a parse tree produced by SOQLParser#condition_field.
606SOQLListener.prototype.exitCondition_field = function(ctx) {
607};
608
609
610// Enter a parse tree produced by SOQLParser#set_values.
611SOQLListener.prototype.enterSet_values = function(ctx) {
612};
613
614// Exit a parse tree produced by SOQLParser#set_values.
615SOQLListener.prototype.exitSet_values = function(ctx) {
616};
617
618
619// Enter a parse tree produced by SOQLParser#set_value_list.
620SOQLListener.prototype.enterSet_value_list = function(ctx) {
621};
622
623// Exit a parse tree produced by SOQLParser#set_value_list.
624SOQLListener.prototype.exitSet_value_list = function(ctx) {
625};
626
627
628// Enter a parse tree produced by SOQLParser#with_clause.
629SOQLListener.prototype.enterWith_clause = function(ctx) {
630};
631
632// Exit a parse tree produced by SOQLParser#with_clause.
633SOQLListener.prototype.exitWith_clause = function(ctx) {
634};
635
636
637// Enter a parse tree produced by SOQLParser#with_plain_clause.
638SOQLListener.prototype.enterWith_plain_clause = function(ctx) {
639};
640
641// Exit a parse tree produced by SOQLParser#with_plain_clause.
642SOQLListener.prototype.exitWith_plain_clause = function(ctx) {
643};
644
645
646// Enter a parse tree produced by SOQLParser#with_data_category_clause.
647SOQLListener.prototype.enterWith_data_category_clause = function(ctx) {
648};
649
650// Exit a parse tree produced by SOQLParser#with_data_category_clause.
651SOQLListener.prototype.exitWith_data_category_clause = function(ctx) {
652};
653
654
655// Enter a parse tree produced by SOQLParser#data_category_spec_list.
656SOQLListener.prototype.enterData_category_spec_list = function(ctx) {
657};
658
659// Exit a parse tree produced by SOQLParser#data_category_spec_list.
660SOQLListener.prototype.exitData_category_spec_list = function(ctx) {
661};
662
663
664// Enter a parse tree produced by SOQLParser#data_category_spec.
665SOQLListener.prototype.enterData_category_spec = function(ctx) {
666};
667
668// Exit a parse tree produced by SOQLParser#data_category_spec.
669SOQLListener.prototype.exitData_category_spec = function(ctx) {
670};
671
672
673// Enter a parse tree produced by SOQLParser#data_category_parameter_list.
674SOQLListener.prototype.enterData_category_parameter_list = function(ctx) {
675};
676
677// Exit a parse tree produced by SOQLParser#data_category_parameter_list.
678SOQLListener.prototype.exitData_category_parameter_list = function(ctx) {
679};
680
681
682// Enter a parse tree produced by SOQLParser#data_category_selector.
683SOQLListener.prototype.enterData_category_selector = function(ctx) {
684};
685
686// Exit a parse tree produced by SOQLParser#data_category_selector.
687SOQLListener.prototype.exitData_category_selector = function(ctx) {
688};
689
690
691// Enter a parse tree produced by SOQLParser#group_by_plain_clause.
692SOQLListener.prototype.enterGroup_by_plain_clause = function(ctx) {
693};
694
695// Exit a parse tree produced by SOQLParser#group_by_plain_clause.
696SOQLListener.prototype.exitGroup_by_plain_clause = function(ctx) {
697};
698
699
700// Enter a parse tree produced by SOQLParser#group_by_rollup_clause.
701SOQLListener.prototype.enterGroup_by_rollup_clause = function(ctx) {
702};
703
704// Exit a parse tree produced by SOQLParser#group_by_rollup_clause.
705SOQLListener.prototype.exitGroup_by_rollup_clause = function(ctx) {
706};
707
708
709// Enter a parse tree produced by SOQLParser#group_by_cube_clause.
710SOQLListener.prototype.enterGroup_by_cube_clause = function(ctx) {
711};
712
713// Exit a parse tree produced by SOQLParser#group_by_cube_clause.
714SOQLListener.prototype.exitGroup_by_cube_clause = function(ctx) {
715};
716
717
718// Enter a parse tree produced by SOQLParser#group_by_list.
719SOQLListener.prototype.enterGroup_by_list = function(ctx) {
720};
721
722// Exit a parse tree produced by SOQLParser#group_by_list.
723SOQLListener.prototype.exitGroup_by_list = function(ctx) {
724};
725
726
727// Enter a parse tree produced by SOQLParser#group_by_spec.
728SOQLListener.prototype.enterGroup_by_spec = function(ctx) {
729};
730
731// Exit a parse tree produced by SOQLParser#group_by_spec.
732SOQLListener.prototype.exitGroup_by_spec = function(ctx) {
733};
734
735
736// Enter a parse tree produced by SOQLParser#order_by_list.
737SOQLListener.prototype.enterOrder_by_list = function(ctx) {
738};
739
740// Exit a parse tree produced by SOQLParser#order_by_list.
741SOQLListener.prototype.exitOrder_by_list = function(ctx) {
742};
743
744
745// Enter a parse tree produced by SOQLParser#order_by_spec.
746SOQLListener.prototype.enterOrder_by_spec = function(ctx) {
747};
748
749// Exit a parse tree produced by SOQLParser#order_by_spec.
750SOQLListener.prototype.exitOrder_by_spec = function(ctx) {
751};
752
753
754// Enter a parse tree produced by SOQLParser#order_by_direction_clause.
755SOQLListener.prototype.enterOrder_by_direction_clause = function(ctx) {
756};
757
758// Exit a parse tree produced by SOQLParser#order_by_direction_clause.
759SOQLListener.prototype.exitOrder_by_direction_clause = function(ctx) {
760};
761
762
763// Enter a parse tree produced by SOQLParser#order_by_nulls_clause.
764SOQLListener.prototype.enterOrder_by_nulls_clause = function(ctx) {
765};
766
767// Exit a parse tree produced by SOQLParser#order_by_nulls_clause.
768SOQLListener.prototype.exitOrder_by_nulls_clause = function(ctx) {
769};
770
771
772// Enter a parse tree produced by SOQLParser#order_by_field.
773SOQLListener.prototype.enterOrder_by_field = function(ctx) {
774};
775
776// Exit a parse tree produced by SOQLParser#order_by_field.
777SOQLListener.prototype.exitOrder_by_field = function(ctx) {
778};
779
780
781// Enter a parse tree produced by SOQLParser#for_value.
782SOQLListener.prototype.enterFor_value = function(ctx) {
783};
784
785// Exit a parse tree produced by SOQLParser#for_value.
786SOQLListener.prototype.exitFor_value = function(ctx) {
787};
788
789
790// Enter a parse tree produced by SOQLParser#update_value.
791SOQLListener.prototype.enterUpdate_value = function(ctx) {
792};
793
794// Exit a parse tree produced by SOQLParser#update_value.
795SOQLListener.prototype.exitUpdate_value = function(ctx) {
796};
797
798
799
800exports.SOQLListener = SOQLListener;
\No newline at end of file