-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathPLSQLListener.java
More file actions
1340 lines (1219 loc) · 44.4 KB
/
PLSQLListener.java
File metadata and controls
1340 lines (1219 loc) · 44.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Generated from PLSQLParser/PLSQL.g4 by ANTLR 4.2
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.ParseTreeListener;
/**
* This interface defines a complete listener for a parse tree produced by
* {@link PLSQLParser}.
*/
public interface PLSQLListener extends ParseTreeListener {
/**
* Enter a parse tree produced by {@link PLSQLParser#constant_declaration}.
* @param ctx the parse tree
*/
void enterConstant_declaration(@NotNull PLSQLParser.Constant_declarationContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#constant_declaration}.
* @param ctx the parse tree
*/
void exitConstant_declaration(@NotNull PLSQLParser.Constant_declarationContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#exception_declaration}.
* @param ctx the parse tree
*/
void enterException_declaration(@NotNull PLSQLParser.Exception_declarationContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#exception_declaration}.
* @param ctx the parse tree
*/
void exitException_declaration(@NotNull PLSQLParser.Exception_declarationContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#dynamic_returning_clause}.
* @param ctx the parse tree
*/
void enterDynamic_returning_clause(@NotNull PLSQLParser.Dynamic_returning_clauseContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#dynamic_returning_clause}.
* @param ctx the parse tree
*/
void exitDynamic_returning_clause(@NotNull PLSQLParser.Dynamic_returning_clauseContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#kINDICES}.
* @param ctx the parse tree
*/
void enterKINDICES(@NotNull PLSQLParser.KINDICESContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#kINDICES}.
* @param ctx the parse tree
*/
void exitKINDICES(@NotNull PLSQLParser.KINDICESContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#continue_statement}.
* @param ctx the parse tree
*/
void enterContinue_statement(@NotNull PLSQLParser.Continue_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#continue_statement}.
* @param ctx the parse tree
*/
void exitContinue_statement(@NotNull PLSQLParser.Continue_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#using_clause}.
* @param ctx the parse tree
*/
void enterUsing_clause(@NotNull PLSQLParser.Using_clauseContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#using_clause}.
* @param ctx the parse tree
*/
void exitUsing_clause(@NotNull PLSQLParser.Using_clauseContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#numeric_expression}.
* @param ctx the parse tree
*/
void enterNumeric_expression(@NotNull PLSQLParser.Numeric_expressionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#numeric_expression}.
* @param ctx the parse tree
*/
void exitNumeric_expression(@NotNull PLSQLParser.Numeric_expressionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#procedure_declaration}.
* @param ctx the parse tree
*/
void enterProcedure_declaration(@NotNull PLSQLParser.Procedure_declarationContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#procedure_declaration}.
* @param ctx the parse tree
*/
void exitProcedure_declaration(@NotNull PLSQLParser.Procedure_declarationContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#invoker_rights_clause}.
* @param ctx the parse tree
*/
void enterInvoker_rights_clause(@NotNull PLSQLParser.Invoker_rights_clauseContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#invoker_rights_clause}.
* @param ctx the parse tree
*/
void exitInvoker_rights_clause(@NotNull PLSQLParser.Invoker_rights_clauseContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#not_expr}.
* @param ctx the parse tree
*/
void enterNot_expr(@NotNull PLSQLParser.Not_exprContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#not_expr}.
* @param ctx the parse tree
*/
void exitNot_expr(@NotNull PLSQLParser.Not_exprContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#parameter_declarations}.
* @param ctx the parse tree
*/
void enterParameter_declarations(@NotNull PLSQLParser.Parameter_declarationsContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#parameter_declarations}.
* @param ctx the parse tree
*/
void exitParameter_declarations(@NotNull PLSQLParser.Parameter_declarationsContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#and_expr}.
* @param ctx the parse tree
*/
void enterAnd_expr(@NotNull PLSQLParser.And_exprContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#and_expr}.
* @param ctx the parse tree
*/
void exitAnd_expr(@NotNull PLSQLParser.And_exprContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#or_expr}.
* @param ctx the parse tree
*/
void enterOr_expr(@NotNull PLSQLParser.Or_exprContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#or_expr}.
* @param ctx the parse tree
*/
void exitOr_expr(@NotNull PLSQLParser.Or_exprContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#boolean_atom}.
* @param ctx the parse tree
*/
void enterBoolean_atom(@NotNull PLSQLParser.Boolean_atomContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#boolean_atom}.
* @param ctx the parse tree
*/
void exitBoolean_atom(@NotNull PLSQLParser.Boolean_atomContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#savepoint_statement}.
* @param ctx the parse tree
*/
void enterSavepoint_statement(@NotNull PLSQLParser.Savepoint_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#savepoint_statement}.
* @param ctx the parse tree
*/
void exitSavepoint_statement(@NotNull PLSQLParser.Savepoint_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#return_statement}.
* @param ctx the parse tree
*/
void enterReturn_statement(@NotNull PLSQLParser.Return_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#return_statement}.
* @param ctx the parse tree
*/
void exitReturn_statement(@NotNull PLSQLParser.Return_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#numeric_literal}.
* @param ctx the parse tree
*/
void enterNumeric_literal(@NotNull PLSQLParser.Numeric_literalContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#numeric_literal}.
* @param ctx the parse tree
*/
void exitNumeric_literal(@NotNull PLSQLParser.Numeric_literalContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#exception_handler}.
* @param ctx the parse tree
*/
void enterException_handler(@NotNull PLSQLParser.Exception_handlerContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#exception_handler}.
* @param ctx the parse tree
*/
void exitException_handler(@NotNull PLSQLParser.Exception_handlerContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#null_statement}.
* @param ctx the parse tree
*/
void enterNull_statement(@NotNull PLSQLParser.Null_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#null_statement}.
* @param ctx the parse tree
*/
void exitNull_statement(@NotNull PLSQLParser.Null_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#collection_exists}.
* @param ctx the parse tree
*/
void enterCollection_exists(@NotNull PLSQLParser.Collection_existsContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#collection_exists}.
* @param ctx the parse tree
*/
void exitCollection_exists(@NotNull PLSQLParser.Collection_existsContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#index}.
* @param ctx the parse tree
*/
void enterIndex(@NotNull PLSQLParser.IndexContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#index}.
* @param ctx the parse tree
*/
void exitIndex(@NotNull PLSQLParser.IndexContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#procedure_definition}.
* @param ctx the parse tree
*/
void enterProcedure_definition(@NotNull PLSQLParser.Procedure_definitionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#procedure_definition}.
* @param ctx the parse tree
*/
void exitProcedure_definition(@NotNull PLSQLParser.Procedure_definitionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#subtype_definition}.
* @param ctx the parse tree
*/
void enterSubtype_definition(@NotNull PLSQLParser.Subtype_definitionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#subtype_definition}.
* @param ctx the parse tree
*/
void exitSubtype_definition(@NotNull PLSQLParser.Subtype_definitionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#kTYPE}.
* @param ctx the parse tree
*/
void enterKTYPE(@NotNull PLSQLParser.KTYPEContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#kTYPE}.
* @param ctx the parse tree
*/
void exitKTYPE(@NotNull PLSQLParser.KTYPEContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#nested_table_type_definition}.
* @param ctx the parse tree
*/
void enterNested_table_type_definition(@NotNull PLSQLParser.Nested_table_type_definitionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#nested_table_type_definition}.
* @param ctx the parse tree
*/
void exitNested_table_type_definition(@NotNull PLSQLParser.Nested_table_type_definitionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#kERRORS}.
* @param ctx the parse tree
*/
void enterKERRORS(@NotNull PLSQLParser.KERRORSContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#kERRORS}.
* @param ctx the parse tree
*/
void exitKERRORS(@NotNull PLSQLParser.KERRORSContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#forall_statement}.
* @param ctx the parse tree
*/
void enterForall_statement(@NotNull PLSQLParser.Forall_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#forall_statement}.
* @param ctx the parse tree
*/
void exitForall_statement(@NotNull PLSQLParser.Forall_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#if_statement}.
* @param ctx the parse tree
*/
void enterIf_statement(@NotNull PLSQLParser.If_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#if_statement}.
* @param ctx the parse tree
*/
void exitIf_statement(@NotNull PLSQLParser.If_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#function_declaration_or_definition}.
* @param ctx the parse tree
*/
void enterFunction_declaration_or_definition(@NotNull PLSQLParser.Function_declaration_or_definitionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#function_declaration_or_definition}.
* @param ctx the parse tree
*/
void exitFunction_declaration_or_definition(@NotNull PLSQLParser.Function_declaration_or_definitionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#while_loop_statement}.
* @param ctx the parse tree
*/
void enterWhile_loop_statement(@NotNull PLSQLParser.While_loop_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#while_loop_statement}.
* @param ctx the parse tree
*/
void exitWhile_loop_statement(@NotNull PLSQLParser.While_loop_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#declare_section}.
* @param ctx the parse tree
*/
void enterDeclare_section(@NotNull PLSQLParser.Declare_sectionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#declare_section}.
* @param ctx the parse tree
*/
void exitDeclare_section(@NotNull PLSQLParser.Declare_sectionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#basic_loop_statement}.
* @param ctx the parse tree
*/
void enterBasic_loop_statement(@NotNull PLSQLParser.Basic_loop_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#basic_loop_statement}.
* @param ctx the parse tree
*/
void exitBasic_loop_statement(@NotNull PLSQLParser.Basic_loop_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#goto_statement}.
* @param ctx the parse tree
*/
void enterGoto_statement(@NotNull PLSQLParser.Goto_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#goto_statement}.
* @param ctx the parse tree
*/
void exitGoto_statement(@NotNull PLSQLParser.Goto_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#kFOUND}.
* @param ctx the parse tree
*/
void enterKFOUND(@NotNull PLSQLParser.KFOUNDContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#kFOUND}.
* @param ctx the parse tree
*/
void exitKFOUND(@NotNull PLSQLParser.KFOUNDContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#in_expr}.
* @param ctx the parse tree
*/
void enterIn_expr(@NotNull PLSQLParser.In_exprContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#in_expr}.
* @param ctx the parse tree
*/
void exitIn_expr(@NotNull PLSQLParser.In_exprContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#boolean_literal}.
* @param ctx the parse tree
*/
void enterBoolean_literal(@NotNull PLSQLParser.Boolean_literalContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#boolean_literal}.
* @param ctx the parse tree
*/
void exitBoolean_literal(@NotNull PLSQLParser.Boolean_literalContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#case_statement}.
* @param ctx the parse tree
*/
void enterCase_statement(@NotNull PLSQLParser.Case_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#case_statement}.
* @param ctx the parse tree
*/
void exitCase_statement(@NotNull PLSQLParser.Case_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#insert_statement}.
* @param ctx the parse tree
*/
void enterInsert_statement(@NotNull PLSQLParser.Insert_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#insert_statement}.
* @param ctx the parse tree
*/
void exitInsert_statement(@NotNull PLSQLParser.Insert_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#select_statement}.
* @param ctx the parse tree
*/
void enterSelect_statement(@NotNull PLSQLParser.Select_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#select_statement}.
* @param ctx the parse tree
*/
void exitSelect_statement(@NotNull PLSQLParser.Select_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#param_modifiers}.
* @param ctx the parse tree
*/
void enterParam_modifiers(@NotNull PLSQLParser.Param_modifiersContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#param_modifiers}.
* @param ctx the parse tree
*/
void exitParam_modifiers(@NotNull PLSQLParser.Param_modifiersContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#conditional_predicate}.
* @param ctx the parse tree
*/
void enterConditional_predicate(@NotNull PLSQLParser.Conditional_predicateContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#conditional_predicate}.
* @param ctx the parse tree
*/
void exitConditional_predicate(@NotNull PLSQLParser.Conditional_predicateContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#rollback_statement}.
* @param ctx the parse tree
*/
void enterRollback_statement(@NotNull PLSQLParser.Rollback_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#rollback_statement}.
* @param ctx the parse tree
*/
void exitRollback_statement(@NotNull PLSQLParser.Rollback_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#file}.
* @param ctx the parse tree
*/
void enterFile(@NotNull PLSQLParser.FileContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#file}.
* @param ctx the parse tree
*/
void exitFile(@NotNull PLSQLParser.FileContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#datatype}.
* @param ctx the parse tree
*/
void enterDatatype(@NotNull PLSQLParser.DatatypeContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#datatype}.
* @param ctx the parse tree
*/
void exitDatatype(@NotNull PLSQLParser.DatatypeContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#create_function}.
* @param ctx the parse tree
*/
void enterCreate_function(@NotNull PLSQLParser.Create_functionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#create_function}.
* @param ctx the parse tree
*/
void exitCreate_function(@NotNull PLSQLParser.Create_functionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#call_spec}.
* @param ctx the parse tree
*/
void enterCall_spec(@NotNull PLSQLParser.Call_specContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#call_spec}.
* @param ctx the parse tree
*/
void exitCall_spec(@NotNull PLSQLParser.Call_specContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#attribute}.
* @param ctx the parse tree
*/
void enterAttribute(@NotNull PLSQLParser.AttributeContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#attribute}.
* @param ctx the parse tree
*/
void exitAttribute(@NotNull PLSQLParser.AttributeContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#for_loop_statement}.
* @param ctx the parse tree
*/
void enterFor_loop_statement(@NotNull PLSQLParser.For_loop_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#for_loop_statement}.
* @param ctx the parse tree
*/
void exitFor_loop_statement(@NotNull PLSQLParser.For_loop_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#commit_statement}.
* @param ctx the parse tree
*/
void enterCommit_statement(@NotNull PLSQLParser.Commit_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#commit_statement}.
* @param ctx the parse tree
*/
void exitCommit_statement(@NotNull PLSQLParser.Commit_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#label_name}.
* @param ctx the parse tree
*/
void enterLabel_name(@NotNull PLSQLParser.Label_nameContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#label_name}.
* @param ctx the parse tree
*/
void exitLabel_name(@NotNull PLSQLParser.Label_nameContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#lock_table_statement}.
* @param ctx the parse tree
*/
void enterLock_table_statement(@NotNull PLSQLParser.Lock_table_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#lock_table_statement}.
* @param ctx the parse tree
*/
void exitLock_table_statement(@NotNull PLSQLParser.Lock_table_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#mul_expr}.
* @param ctx the parse tree
*/
void enterMul_expr(@NotNull PLSQLParser.Mul_exprContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#mul_expr}.
* @param ctx the parse tree
*/
void exitMul_expr(@NotNull PLSQLParser.Mul_exprContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#plsql_block}.
* @param ctx the parse tree
*/
void enterPlsql_block(@NotNull PLSQLParser.Plsql_blockContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#plsql_block}.
* @param ctx the parse tree
*/
void exitPlsql_block(@NotNull PLSQLParser.Plsql_blockContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#kSAVE}.
* @param ctx the parse tree
*/
void enterKSAVE(@NotNull PLSQLParser.KSAVEContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#kSAVE}.
* @param ctx the parse tree
*/
void exitKSAVE(@NotNull PLSQLParser.KSAVEContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#variable_declaration}.
* @param ctx the parse tree
*/
void enterVariable_declaration(@NotNull PLSQLParser.Variable_declarationContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#variable_declaration}.
* @param ctx the parse tree
*/
void exitVariable_declaration(@NotNull PLSQLParser.Variable_declarationContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#expression}.
* @param ctx the parse tree
*/
void enterExpression(@NotNull PLSQLParser.ExpressionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#expression}.
* @param ctx the parse tree
*/
void exitExpression(@NotNull PLSQLParser.ExpressionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#delete_call}.
* @param ctx the parse tree
*/
void enterDelete_call(@NotNull PLSQLParser.Delete_callContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#delete_call}.
* @param ctx the parse tree
*/
void exitDelete_call(@NotNull PLSQLParser.Delete_callContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#parameter_declaration}.
* @param ctx the parse tree
*/
void enterParameter_declaration(@NotNull PLSQLParser.Parameter_declarationContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#parameter_declaration}.
* @param ctx the parse tree
*/
void exitParameter_declaration(@NotNull PLSQLParser.Parameter_declarationContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#type_definition}.
* @param ctx the parse tree
*/
void enterType_definition(@NotNull PLSQLParser.Type_definitionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#type_definition}.
* @param ctx the parse tree
*/
void exitType_definition(@NotNull PLSQLParser.Type_definitionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#record_type_definition}.
* @param ctx the parse tree
*/
void enterRecord_type_definition(@NotNull PLSQLParser.Record_type_definitionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#record_type_definition}.
* @param ctx the parse tree
*/
void exitRecord_type_definition(@NotNull PLSQLParser.Record_type_definitionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#open_statement}.
* @param ctx the parse tree
*/
void enterOpen_statement(@NotNull PLSQLParser.Open_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#open_statement}.
* @param ctx the parse tree
*/
void exitOpen_statement(@NotNull PLSQLParser.Open_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#numeric_atom}.
* @param ctx the parse tree
*/
void enterNumeric_atom(@NotNull PLSQLParser.Numeric_atomContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#numeric_atom}.
* @param ctx the parse tree
*/
void exitNumeric_atom(@NotNull PLSQLParser.Numeric_atomContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#call}.
* @param ctx the parse tree
*/
void enterCall(@NotNull PLSQLParser.CallContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#call}.
* @param ctx the parse tree
*/
void exitCall(@NotNull PLSQLParser.CallContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#lvalue}.
* @param ctx the parse tree
*/
void enterLvalue(@NotNull PLSQLParser.LvalueContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#lvalue}.
* @param ctx the parse tree
*/
void exitLvalue(@NotNull PLSQLParser.LvalueContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#function_heading}.
* @param ctx the parse tree
*/
void enterFunction_heading(@NotNull PLSQLParser.Function_headingContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#function_heading}.
* @param ctx the parse tree
*/
void exitFunction_heading(@NotNull PLSQLParser.Function_headingContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#atom}.
* @param ctx the parse tree
*/
void enterAtom(@NotNull PLSQLParser.AtomContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#atom}.
* @param ctx the parse tree
*/
void exitAtom(@NotNull PLSQLParser.AtomContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#kNAME}.
* @param ctx the parse tree
*/
void enterKNAME(@NotNull PLSQLParser.KNAMEContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#kNAME}.
* @param ctx the parse tree
*/
void exitKNAME(@NotNull PLSQLParser.KNAMEContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#add_expr}.
* @param ctx the parse tree
*/
void enterAdd_expr(@NotNull PLSQLParser.Add_exprContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#add_expr}.
* @param ctx the parse tree
*/
void exitAdd_expr(@NotNull PLSQLParser.Add_exprContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#call_args}.
* @param ctx the parse tree
*/
void enterCall_args(@NotNull PLSQLParser.Call_argsContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#call_args}.
* @param ctx the parse tree
*/
void exitCall_args(@NotNull PLSQLParser.Call_argsContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#kOF}.
* @param ctx the parse tree
*/
void enterKOF(@NotNull PLSQLParser.KOFContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#kOF}.
* @param ctx the parse tree
*/
void exitKOF(@NotNull PLSQLParser.KOFContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#kEXCEPTIONS}.
* @param ctx the parse tree
*/
void enterKEXCEPTIONS(@NotNull PLSQLParser.KEXCEPTIONSContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#kEXCEPTIONS}.
* @param ctx the parse tree
*/
void exitKEXCEPTIONS(@NotNull PLSQLParser.KEXCEPTIONSContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#execute_immediate_statement}.
* @param ctx the parse tree
*/
void enterExecute_immediate_statement(@NotNull PLSQLParser.Execute_immediate_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#execute_immediate_statement}.
* @param ctx the parse tree
*/
void exitExecute_immediate_statement(@NotNull PLSQLParser.Execute_immediate_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#sql_statement}.
* @param ctx the parse tree
*/
void enterSql_statement(@NotNull PLSQLParser.Sql_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#sql_statement}.
* @param ctx the parse tree
*/
void exitSql_statement(@NotNull PLSQLParser.Sql_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#body}.
* @param ctx the parse tree
*/
void enterBody(@NotNull PLSQLParser.BodyContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#body}.
* @param ctx the parse tree
*/
void exitBody(@NotNull PLSQLParser.BodyContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#varray_type_definition}.
* @param ctx the parse tree
*/
void enterVarray_type_definition(@NotNull PLSQLParser.Varray_type_definitionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#varray_type_definition}.
* @param ctx the parse tree
*/
void exitVarray_type_definition(@NotNull PLSQLParser.Varray_type_definitionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#ref_cursor_type_definition}.
* @param ctx the parse tree
*/
void enterRef_cursor_type_definition(@NotNull PLSQLParser.Ref_cursor_type_definitionContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#ref_cursor_type_definition}.
* @param ctx the parse tree
*/
void exitRef_cursor_type_definition(@NotNull PLSQLParser.Ref_cursor_type_definitionContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#create_package}.
* @param ctx the parse tree
*/
void enterCreate_package(@NotNull PLSQLParser.Create_packageContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#create_package}.
* @param ctx the parse tree
*/
void exitCreate_package(@NotNull PLSQLParser.Create_packageContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#create_package_body}.
* @param ctx the parse tree
*/
void enterCreate_package_body(@NotNull PLSQLParser.Create_package_bodyContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#create_package_body}.
* @param ctx the parse tree
*/
void exitCreate_package_body(@NotNull PLSQLParser.Create_package_bodyContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#bounds_clause}.
* @param ctx the parse tree
*/
void enterBounds_clause(@NotNull PLSQLParser.Bounds_clauseContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#bounds_clause}.
* @param ctx the parse tree
*/
void exitBounds_clause(@NotNull PLSQLParser.Bounds_clauseContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#raise_statement}.
* @param ctx the parse tree
*/
void enterRaise_statement(@NotNull PLSQLParser.Raise_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#raise_statement}.
* @param ctx the parse tree
*/
void exitRaise_statement(@NotNull PLSQLParser.Raise_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#record_field_declaration}.
* @param ctx the parse tree
*/
void enterRecord_field_declaration(@NotNull PLSQLParser.Record_field_declarationContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#record_field_declaration}.
* @param ctx the parse tree
*/
void exitRecord_field_declaration(@NotNull PLSQLParser.Record_field_declarationContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#compare_expr}.
* @param ctx the parse tree
*/
void enterCompare_expr(@NotNull PLSQLParser.Compare_exprContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#compare_expr}.
* @param ctx the parse tree
*/
void exitCompare_expr(@NotNull PLSQLParser.Compare_exprContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#associative_index_type}.
* @param ctx the parse tree
*/
void enterAssociative_index_type(@NotNull PLSQLParser.Associative_index_typeContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#associative_index_type}.
* @param ctx the parse tree
*/
void exitAssociative_index_type(@NotNull PLSQLParser.Associative_index_typeContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#variable_or_function_call}.
* @param ctx the parse tree
*/
void enterVariable_or_function_call(@NotNull PLSQLParser.Variable_or_function_callContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#variable_or_function_call}.
* @param ctx the parse tree
*/
void exitVariable_or_function_call(@NotNull PLSQLParser.Variable_or_function_callContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#delete_statement}.
* @param ctx the parse tree
*/
void enterDelete_statement(@NotNull PLSQLParser.Delete_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#delete_statement}.
* @param ctx the parse tree
*/
void exitDelete_statement(@NotNull PLSQLParser.Delete_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#like_expr}.
* @param ctx the parse tree
*/
void enterLike_expr(@NotNull PLSQLParser.Like_exprContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#like_expr}.
* @param ctx the parse tree
*/
void exitLike_expr(@NotNull PLSQLParser.Like_exprContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#assign_or_call_statement}.
* @param ctx the parse tree
*/
void enterAssign_or_call_statement(@NotNull PLSQLParser.Assign_or_call_statementContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#assign_or_call_statement}.
* @param ctx the parse tree
*/
void exitAssign_or_call_statement(@NotNull PLSQLParser.Assign_or_call_statementContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#kMOD}.
* @param ctx the parse tree
*/
void enterKMOD(@NotNull PLSQLParser.KMODContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#kMOD}.
* @param ctx the parse tree
*/
void exitKMOD(@NotNull PLSQLParser.KMODContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#create_procedure}.
* @param ctx the parse tree
*/
void enterCreate_procedure(@NotNull PLSQLParser.Create_procedureContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#create_procedure}.
* @param ctx the parse tree
*/
void exitCreate_procedure(@NotNull PLSQLParser.Create_procedureContext ctx);
/**
* Enter a parse tree produced by {@link PLSQLParser#into_clause}.
* @param ctx the parse tree
*/
void enterInto_clause(@NotNull PLSQLParser.Into_clauseContext ctx);
/**
* Exit a parse tree produced by {@link PLSQLParser#into_clause}.
* @param ctx the parse tree
*/
void exitInto_clause(@NotNull PLSQLParser.Into_clauseContext ctx);
/**