File: WdlV1ParserListener.py

package info (click to toggle)
python-wdlparse 0.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 936 kB
  • sloc: python: 16,432; sh: 17; makefile: 4
file content (840 lines) | stat: -rw-r--r-- 26,161 bytes parent folder | download | duplicates (2)
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
# Generated from WdlV1Parser.g4 by ANTLR 4.8
from antlr4 import *
if __name__ is not None and "." in __name__:
    from .WdlV1Parser import WdlV1Parser
else:
    from WdlV1Parser import WdlV1Parser

# This class defines a complete listener for a parse tree produced by WdlV1Parser.
class WdlV1ParserListener(ParseTreeListener):

    # Enter a parse tree produced by WdlV1Parser#map_type.
    def enterMap_type(self, ctx:WdlV1Parser.Map_typeContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#map_type.
    def exitMap_type(self, ctx:WdlV1Parser.Map_typeContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#array_type.
    def enterArray_type(self, ctx:WdlV1Parser.Array_typeContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#array_type.
    def exitArray_type(self, ctx:WdlV1Parser.Array_typeContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#pair_type.
    def enterPair_type(self, ctx:WdlV1Parser.Pair_typeContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#pair_type.
    def exitPair_type(self, ctx:WdlV1Parser.Pair_typeContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#type_base.
    def enterType_base(self, ctx:WdlV1Parser.Type_baseContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#type_base.
    def exitType_base(self, ctx:WdlV1Parser.Type_baseContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#wdl_type.
    def enterWdl_type(self, ctx:WdlV1Parser.Wdl_typeContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#wdl_type.
    def exitWdl_type(self, ctx:WdlV1Parser.Wdl_typeContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#unbound_decls.
    def enterUnbound_decls(self, ctx:WdlV1Parser.Unbound_declsContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#unbound_decls.
    def exitUnbound_decls(self, ctx:WdlV1Parser.Unbound_declsContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#bound_decls.
    def enterBound_decls(self, ctx:WdlV1Parser.Bound_declsContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#bound_decls.
    def exitBound_decls(self, ctx:WdlV1Parser.Bound_declsContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#any_decls.
    def enterAny_decls(self, ctx:WdlV1Parser.Any_declsContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#any_decls.
    def exitAny_decls(self, ctx:WdlV1Parser.Any_declsContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#number.
    def enterNumber(self, ctx:WdlV1Parser.NumberContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#number.
    def exitNumber(self, ctx:WdlV1Parser.NumberContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#expression_placeholder_option.
    def enterExpression_placeholder_option(self, ctx:WdlV1Parser.Expression_placeholder_optionContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#expression_placeholder_option.
    def exitExpression_placeholder_option(self, ctx:WdlV1Parser.Expression_placeholder_optionContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#string_part.
    def enterString_part(self, ctx:WdlV1Parser.String_partContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#string_part.
    def exitString_part(self, ctx:WdlV1Parser.String_partContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#string_expr_part.
    def enterString_expr_part(self, ctx:WdlV1Parser.String_expr_partContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#string_expr_part.
    def exitString_expr_part(self, ctx:WdlV1Parser.String_expr_partContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#string_expr_with_string_part.
    def enterString_expr_with_string_part(self, ctx:WdlV1Parser.String_expr_with_string_partContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#string_expr_with_string_part.
    def exitString_expr_with_string_part(self, ctx:WdlV1Parser.String_expr_with_string_partContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#string.
    def enterString(self, ctx:WdlV1Parser.StringContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#string.
    def exitString(self, ctx:WdlV1Parser.StringContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#primitive_literal.
    def enterPrimitive_literal(self, ctx:WdlV1Parser.Primitive_literalContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#primitive_literal.
    def exitPrimitive_literal(self, ctx:WdlV1Parser.Primitive_literalContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#expr.
    def enterExpr(self, ctx:WdlV1Parser.ExprContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#expr.
    def exitExpr(self, ctx:WdlV1Parser.ExprContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#infix0.
    def enterInfix0(self, ctx:WdlV1Parser.Infix0Context):
        pass

    # Exit a parse tree produced by WdlV1Parser#infix0.
    def exitInfix0(self, ctx:WdlV1Parser.Infix0Context):
        pass


    # Enter a parse tree produced by WdlV1Parser#infix1.
    def enterInfix1(self, ctx:WdlV1Parser.Infix1Context):
        pass

    # Exit a parse tree produced by WdlV1Parser#infix1.
    def exitInfix1(self, ctx:WdlV1Parser.Infix1Context):
        pass


    # Enter a parse tree produced by WdlV1Parser#lor.
    def enterLor(self, ctx:WdlV1Parser.LorContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#lor.
    def exitLor(self, ctx:WdlV1Parser.LorContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#infix2.
    def enterInfix2(self, ctx:WdlV1Parser.Infix2Context):
        pass

    # Exit a parse tree produced by WdlV1Parser#infix2.
    def exitInfix2(self, ctx:WdlV1Parser.Infix2Context):
        pass


    # Enter a parse tree produced by WdlV1Parser#land.
    def enterLand(self, ctx:WdlV1Parser.LandContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#land.
    def exitLand(self, ctx:WdlV1Parser.LandContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#eqeq.
    def enterEqeq(self, ctx:WdlV1Parser.EqeqContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#eqeq.
    def exitEqeq(self, ctx:WdlV1Parser.EqeqContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#lt.
    def enterLt(self, ctx:WdlV1Parser.LtContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#lt.
    def exitLt(self, ctx:WdlV1Parser.LtContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#infix3.
    def enterInfix3(self, ctx:WdlV1Parser.Infix3Context):
        pass

    # Exit a parse tree produced by WdlV1Parser#infix3.
    def exitInfix3(self, ctx:WdlV1Parser.Infix3Context):
        pass


    # Enter a parse tree produced by WdlV1Parser#gte.
    def enterGte(self, ctx:WdlV1Parser.GteContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#gte.
    def exitGte(self, ctx:WdlV1Parser.GteContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#neq.
    def enterNeq(self, ctx:WdlV1Parser.NeqContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#neq.
    def exitNeq(self, ctx:WdlV1Parser.NeqContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#lte.
    def enterLte(self, ctx:WdlV1Parser.LteContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#lte.
    def exitLte(self, ctx:WdlV1Parser.LteContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#gt.
    def enterGt(self, ctx:WdlV1Parser.GtContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#gt.
    def exitGt(self, ctx:WdlV1Parser.GtContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#add.
    def enterAdd(self, ctx:WdlV1Parser.AddContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#add.
    def exitAdd(self, ctx:WdlV1Parser.AddContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#sub.
    def enterSub(self, ctx:WdlV1Parser.SubContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#sub.
    def exitSub(self, ctx:WdlV1Parser.SubContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#infix4.
    def enterInfix4(self, ctx:WdlV1Parser.Infix4Context):
        pass

    # Exit a parse tree produced by WdlV1Parser#infix4.
    def exitInfix4(self, ctx:WdlV1Parser.Infix4Context):
        pass


    # Enter a parse tree produced by WdlV1Parser#mod.
    def enterMod(self, ctx:WdlV1Parser.ModContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#mod.
    def exitMod(self, ctx:WdlV1Parser.ModContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#mul.
    def enterMul(self, ctx:WdlV1Parser.MulContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#mul.
    def exitMul(self, ctx:WdlV1Parser.MulContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#divide.
    def enterDivide(self, ctx:WdlV1Parser.DivideContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#divide.
    def exitDivide(self, ctx:WdlV1Parser.DivideContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#infix5.
    def enterInfix5(self, ctx:WdlV1Parser.Infix5Context):
        pass

    # Exit a parse tree produced by WdlV1Parser#infix5.
    def exitInfix5(self, ctx:WdlV1Parser.Infix5Context):
        pass


    # Enter a parse tree produced by WdlV1Parser#expr_infix5.
    def enterExpr_infix5(self, ctx:WdlV1Parser.Expr_infix5Context):
        pass

    # Exit a parse tree produced by WdlV1Parser#expr_infix5.
    def exitExpr_infix5(self, ctx:WdlV1Parser.Expr_infix5Context):
        pass


    # Enter a parse tree produced by WdlV1Parser#pair_literal.
    def enterPair_literal(self, ctx:WdlV1Parser.Pair_literalContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#pair_literal.
    def exitPair_literal(self, ctx:WdlV1Parser.Pair_literalContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#unarysigned.
    def enterUnarysigned(self, ctx:WdlV1Parser.UnarysignedContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#unarysigned.
    def exitUnarysigned(self, ctx:WdlV1Parser.UnarysignedContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#apply.
    def enterApply(self, ctx:WdlV1Parser.ApplyContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#apply.
    def exitApply(self, ctx:WdlV1Parser.ApplyContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#expression_group.
    def enterExpression_group(self, ctx:WdlV1Parser.Expression_groupContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#expression_group.
    def exitExpression_group(self, ctx:WdlV1Parser.Expression_groupContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#primitives.
    def enterPrimitives(self, ctx:WdlV1Parser.PrimitivesContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#primitives.
    def exitPrimitives(self, ctx:WdlV1Parser.PrimitivesContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#left_name.
    def enterLeft_name(self, ctx:WdlV1Parser.Left_nameContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#left_name.
    def exitLeft_name(self, ctx:WdlV1Parser.Left_nameContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#at.
    def enterAt(self, ctx:WdlV1Parser.AtContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#at.
    def exitAt(self, ctx:WdlV1Parser.AtContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#negate.
    def enterNegate(self, ctx:WdlV1Parser.NegateContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#negate.
    def exitNegate(self, ctx:WdlV1Parser.NegateContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#map_literal.
    def enterMap_literal(self, ctx:WdlV1Parser.Map_literalContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#map_literal.
    def exitMap_literal(self, ctx:WdlV1Parser.Map_literalContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#ifthenelse.
    def enterIfthenelse(self, ctx:WdlV1Parser.IfthenelseContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#ifthenelse.
    def exitIfthenelse(self, ctx:WdlV1Parser.IfthenelseContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#get_name.
    def enterGet_name(self, ctx:WdlV1Parser.Get_nameContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#get_name.
    def exitGet_name(self, ctx:WdlV1Parser.Get_nameContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#object_literal.
    def enterObject_literal(self, ctx:WdlV1Parser.Object_literalContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#object_literal.
    def exitObject_literal(self, ctx:WdlV1Parser.Object_literalContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#array_literal.
    def enterArray_literal(self, ctx:WdlV1Parser.Array_literalContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#array_literal.
    def exitArray_literal(self, ctx:WdlV1Parser.Array_literalContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#version.
    def enterVersion(self, ctx:WdlV1Parser.VersionContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#version.
    def exitVersion(self, ctx:WdlV1Parser.VersionContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#import_alias.
    def enterImport_alias(self, ctx:WdlV1Parser.Import_aliasContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#import_alias.
    def exitImport_alias(self, ctx:WdlV1Parser.Import_aliasContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#import_as.
    def enterImport_as(self, ctx:WdlV1Parser.Import_asContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#import_as.
    def exitImport_as(self, ctx:WdlV1Parser.Import_asContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#import_doc.
    def enterImport_doc(self, ctx:WdlV1Parser.Import_docContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#import_doc.
    def exitImport_doc(self, ctx:WdlV1Parser.Import_docContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#struct.
    def enterStruct(self, ctx:WdlV1Parser.StructContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#struct.
    def exitStruct(self, ctx:WdlV1Parser.StructContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#meta_value.
    def enterMeta_value(self, ctx:WdlV1Parser.Meta_valueContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#meta_value.
    def exitMeta_value(self, ctx:WdlV1Parser.Meta_valueContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#meta_string_part.
    def enterMeta_string_part(self, ctx:WdlV1Parser.Meta_string_partContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#meta_string_part.
    def exitMeta_string_part(self, ctx:WdlV1Parser.Meta_string_partContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#meta_string.
    def enterMeta_string(self, ctx:WdlV1Parser.Meta_stringContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#meta_string.
    def exitMeta_string(self, ctx:WdlV1Parser.Meta_stringContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#meta_array.
    def enterMeta_array(self, ctx:WdlV1Parser.Meta_arrayContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#meta_array.
    def exitMeta_array(self, ctx:WdlV1Parser.Meta_arrayContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#meta_object.
    def enterMeta_object(self, ctx:WdlV1Parser.Meta_objectContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#meta_object.
    def exitMeta_object(self, ctx:WdlV1Parser.Meta_objectContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#meta_object_kv.
    def enterMeta_object_kv(self, ctx:WdlV1Parser.Meta_object_kvContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#meta_object_kv.
    def exitMeta_object_kv(self, ctx:WdlV1Parser.Meta_object_kvContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#meta_kv.
    def enterMeta_kv(self, ctx:WdlV1Parser.Meta_kvContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#meta_kv.
    def exitMeta_kv(self, ctx:WdlV1Parser.Meta_kvContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#parameter_meta.
    def enterParameter_meta(self, ctx:WdlV1Parser.Parameter_metaContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#parameter_meta.
    def exitParameter_meta(self, ctx:WdlV1Parser.Parameter_metaContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#meta.
    def enterMeta(self, ctx:WdlV1Parser.MetaContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#meta.
    def exitMeta(self, ctx:WdlV1Parser.MetaContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#task_runtime_kv.
    def enterTask_runtime_kv(self, ctx:WdlV1Parser.Task_runtime_kvContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#task_runtime_kv.
    def exitTask_runtime_kv(self, ctx:WdlV1Parser.Task_runtime_kvContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#task_runtime.
    def enterTask_runtime(self, ctx:WdlV1Parser.Task_runtimeContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#task_runtime.
    def exitTask_runtime(self, ctx:WdlV1Parser.Task_runtimeContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#task_input.
    def enterTask_input(self, ctx:WdlV1Parser.Task_inputContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#task_input.
    def exitTask_input(self, ctx:WdlV1Parser.Task_inputContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#task_output.
    def enterTask_output(self, ctx:WdlV1Parser.Task_outputContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#task_output.
    def exitTask_output(self, ctx:WdlV1Parser.Task_outputContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#task_command_string_part.
    def enterTask_command_string_part(self, ctx:WdlV1Parser.Task_command_string_partContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#task_command_string_part.
    def exitTask_command_string_part(self, ctx:WdlV1Parser.Task_command_string_partContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#task_command_expr_part.
    def enterTask_command_expr_part(self, ctx:WdlV1Parser.Task_command_expr_partContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#task_command_expr_part.
    def exitTask_command_expr_part(self, ctx:WdlV1Parser.Task_command_expr_partContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#task_command_expr_with_string.
    def enterTask_command_expr_with_string(self, ctx:WdlV1Parser.Task_command_expr_with_stringContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#task_command_expr_with_string.
    def exitTask_command_expr_with_string(self, ctx:WdlV1Parser.Task_command_expr_with_stringContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#task_command.
    def enterTask_command(self, ctx:WdlV1Parser.Task_commandContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#task_command.
    def exitTask_command(self, ctx:WdlV1Parser.Task_commandContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#task_element.
    def enterTask_element(self, ctx:WdlV1Parser.Task_elementContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#task_element.
    def exitTask_element(self, ctx:WdlV1Parser.Task_elementContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#task.
    def enterTask(self, ctx:WdlV1Parser.TaskContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#task.
    def exitTask(self, ctx:WdlV1Parser.TaskContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#inner_workflow_element.
    def enterInner_workflow_element(self, ctx:WdlV1Parser.Inner_workflow_elementContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#inner_workflow_element.
    def exitInner_workflow_element(self, ctx:WdlV1Parser.Inner_workflow_elementContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#call_alias.
    def enterCall_alias(self, ctx:WdlV1Parser.Call_aliasContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#call_alias.
    def exitCall_alias(self, ctx:WdlV1Parser.Call_aliasContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#call_input.
    def enterCall_input(self, ctx:WdlV1Parser.Call_inputContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#call_input.
    def exitCall_input(self, ctx:WdlV1Parser.Call_inputContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#call_inputs.
    def enterCall_inputs(self, ctx:WdlV1Parser.Call_inputsContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#call_inputs.
    def exitCall_inputs(self, ctx:WdlV1Parser.Call_inputsContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#call_body.
    def enterCall_body(self, ctx:WdlV1Parser.Call_bodyContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#call_body.
    def exitCall_body(self, ctx:WdlV1Parser.Call_bodyContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#call_name.
    def enterCall_name(self, ctx:WdlV1Parser.Call_nameContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#call_name.
    def exitCall_name(self, ctx:WdlV1Parser.Call_nameContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#call.
    def enterCall(self, ctx:WdlV1Parser.CallContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#call.
    def exitCall(self, ctx:WdlV1Parser.CallContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#scatter.
    def enterScatter(self, ctx:WdlV1Parser.ScatterContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#scatter.
    def exitScatter(self, ctx:WdlV1Parser.ScatterContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#conditional.
    def enterConditional(self, ctx:WdlV1Parser.ConditionalContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#conditional.
    def exitConditional(self, ctx:WdlV1Parser.ConditionalContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#workflow_input.
    def enterWorkflow_input(self, ctx:WdlV1Parser.Workflow_inputContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#workflow_input.
    def exitWorkflow_input(self, ctx:WdlV1Parser.Workflow_inputContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#workflow_output.
    def enterWorkflow_output(self, ctx:WdlV1Parser.Workflow_outputContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#workflow_output.
    def exitWorkflow_output(self, ctx:WdlV1Parser.Workflow_outputContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#input.
    def enterInput(self, ctx:WdlV1Parser.InputContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#input.
    def exitInput(self, ctx:WdlV1Parser.InputContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#output.
    def enterOutput(self, ctx:WdlV1Parser.OutputContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#output.
    def exitOutput(self, ctx:WdlV1Parser.OutputContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#inner_element.
    def enterInner_element(self, ctx:WdlV1Parser.Inner_elementContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#inner_element.
    def exitInner_element(self, ctx:WdlV1Parser.Inner_elementContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#parameter_meta_element.
    def enterParameter_meta_element(self, ctx:WdlV1Parser.Parameter_meta_elementContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#parameter_meta_element.
    def exitParameter_meta_element(self, ctx:WdlV1Parser.Parameter_meta_elementContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#meta_element.
    def enterMeta_element(self, ctx:WdlV1Parser.Meta_elementContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#meta_element.
    def exitMeta_element(self, ctx:WdlV1Parser.Meta_elementContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#workflow.
    def enterWorkflow(self, ctx:WdlV1Parser.WorkflowContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#workflow.
    def exitWorkflow(self, ctx:WdlV1Parser.WorkflowContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#document_element.
    def enterDocument_element(self, ctx:WdlV1Parser.Document_elementContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#document_element.
    def exitDocument_element(self, ctx:WdlV1Parser.Document_elementContext):
        pass


    # Enter a parse tree produced by WdlV1Parser#document.
    def enterDocument(self, ctx:WdlV1Parser.DocumentContext):
        pass

    # Exit a parse tree produced by WdlV1Parser#document.
    def exitDocument(self, ctx:WdlV1Parser.DocumentContext):
        pass



del WdlV1Parser