summaryrefslogtreecommitdiff
path: root/test/prism/snapshots/unparser/corpus/literal/def.txt
blob: f3ef6c388e4f0a3a6c46e4a781a3790fb1b65a6b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
@ ProgramNode (location: (1,0)-(134,3))
├── locals: []
└── statements:
    @ StatementsNode (location: (1,0)-(134,3))
    └── body: (length: 30)
        ├── @ DefNode (location: (1,0)-(9,3))
        │   ├── name: :foo
        │   ├── name_loc: (1,4)-(1,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ BeginNode (location: (1,0)-(9,3))
        │   │   ├── begin_keyword_loc: ∅
        │   │   ├── statements:
        │   │   │   @ StatementsNode (location: (2,2)-(2,3))
        │   │   │   └── body: (length: 1)
        │   │   │       └── @ CallNode (location: (2,2)-(2,3))
        │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │           ├── receiver: ∅
        │   │   │           ├── call_operator_loc: ∅
        │   │   │           ├── name: :a
        │   │   │           ├── message_loc: (2,2)-(2,3) = "a"
        │   │   │           ├── opening_loc: ∅
        │   │   │           ├── arguments: ∅
        │   │   │           ├── closing_loc: ∅
        │   │   │           └── block: ∅
        │   │   ├── rescue_clause:
        │   │   │   @ RescueNode (location: (3,0)-(4,3))
        │   │   │   ├── keyword_loc: (3,0)-(3,6) = "rescue"
        │   │   │   ├── exceptions: (length: 0)
        │   │   │   ├── operator_loc: ∅
        │   │   │   ├── reference: ∅
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (4,2)-(4,3))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ CallNode (location: (4,2)-(4,3))
        │   │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │   │           ├── receiver: ∅
        │   │   │   │           ├── call_operator_loc: ∅
        │   │   │   │           ├── name: :b
        │   │   │   │           ├── message_loc: (4,2)-(4,3) = "b"
        │   │   │   │           ├── opening_loc: ∅
        │   │   │   │           ├── arguments: ∅
        │   │   │   │           ├── closing_loc: ∅
        │   │   │   │           └── block: ∅
        │   │   │   └── consequent: ∅
        │   │   ├── else_clause:
        │   │   │   @ ElseNode (location: (5,0)-(7,6))
        │   │   │   ├── else_keyword_loc: (5,0)-(5,4) = "else"
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (6,2)-(6,3))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ CallNode (location: (6,2)-(6,3))
        │   │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │   │           ├── receiver: ∅
        │   │   │   │           ├── call_operator_loc: ∅
        │   │   │   │           ├── name: :c
        │   │   │   │           ├── message_loc: (6,2)-(6,3) = "c"
        │   │   │   │           ├── opening_loc: ∅
        │   │   │   │           ├── arguments: ∅
        │   │   │   │           ├── closing_loc: ∅
        │   │   │   │           └── block: ∅
        │   │   │   └── end_keyword_loc: (7,0)-(7,6) = "ensure"
        │   │   ├── ensure_clause:
        │   │   │   @ EnsureNode (location: (7,0)-(9,3))
        │   │   │   ├── ensure_keyword_loc: (7,0)-(7,6) = "ensure"
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (8,2)-(8,3))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ CallNode (location: (8,2)-(8,3))
        │   │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │   │           ├── receiver: ∅
        │   │   │   │           ├── call_operator_loc: ∅
        │   │   │   │           ├── name: :d
        │   │   │   │           ├── message_loc: (8,2)-(8,3) = "d"
        │   │   │   │           ├── opening_loc: ∅
        │   │   │   │           ├── arguments: ∅
        │   │   │   │           ├── closing_loc: ∅
        │   │   │   │           └── block: ∅
        │   │   │   └── end_keyword_loc: (9,0)-(9,3) = "end"
        │   │   └── end_keyword_loc: (9,0)-(9,3) = "end"
        │   ├── locals: []
        │   ├── def_keyword_loc: (1,0)-(1,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (9,0)-(9,3) = "end"
        ├── @ DefNode (location: (11,0)-(19,3))
        │   ├── name: :foo
        │   ├── name_loc: (11,4)-(11,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ BeginNode (location: (11,0)-(19,3))
        │   │   ├── begin_keyword_loc: ∅
        │   │   ├── statements:
        │   │   │   @ StatementsNode (location: (12,2)-(12,12))
        │   │   │   └── body: (length: 1)
        │   │   │       └── @ RescueModifierNode (location: (12,2)-(12,12))
        │   │   │           ├── expression:
        │   │   │           │   @ CallNode (location: (12,2)-(12,3))
        │   │   │           │   ├── flags: variable_call, ignore_visibility
        │   │   │           │   ├── receiver: ∅
        │   │   │           │   ├── call_operator_loc: ∅
        │   │   │           │   ├── name: :a
        │   │   │           │   ├── message_loc: (12,2)-(12,3) = "a"
        │   │   │           │   ├── opening_loc: ∅
        │   │   │           │   ├── arguments: ∅
        │   │   │           │   ├── closing_loc: ∅
        │   │   │           │   └── block: ∅
        │   │   │           ├── keyword_loc: (12,4)-(12,10) = "rescue"
        │   │   │           └── rescue_expression:
        │   │   │               @ CallNode (location: (12,11)-(12,12))
        │   │   │               ├── flags: variable_call, ignore_visibility
        │   │   │               ├── receiver: ∅
        │   │   │               ├── call_operator_loc: ∅
        │   │   │               ├── name: :b
        │   │   │               ├── message_loc: (12,11)-(12,12) = "b"
        │   │   │               ├── opening_loc: ∅
        │   │   │               ├── arguments: ∅
        │   │   │               ├── closing_loc: ∅
        │   │   │               └── block: ∅
        │   │   ├── rescue_clause:
        │   │   │   @ RescueNode (location: (13,0)-(14,3))
        │   │   │   ├── keyword_loc: (13,0)-(13,6) = "rescue"
        │   │   │   ├── exceptions: (length: 0)
        │   │   │   ├── operator_loc: ∅
        │   │   │   ├── reference: ∅
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (14,2)-(14,3))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ CallNode (location: (14,2)-(14,3))
        │   │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │   │           ├── receiver: ∅
        │   │   │   │           ├── call_operator_loc: ∅
        │   │   │   │           ├── name: :b
        │   │   │   │           ├── message_loc: (14,2)-(14,3) = "b"
        │   │   │   │           ├── opening_loc: ∅
        │   │   │   │           ├── arguments: ∅
        │   │   │   │           ├── closing_loc: ∅
        │   │   │   │           └── block: ∅
        │   │   │   └── consequent: ∅
        │   │   ├── else_clause:
        │   │   │   @ ElseNode (location: (15,0)-(17,6))
        │   │   │   ├── else_keyword_loc: (15,0)-(15,4) = "else"
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (16,2)-(16,3))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ CallNode (location: (16,2)-(16,3))
        │   │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │   │           ├── receiver: ∅
        │   │   │   │           ├── call_operator_loc: ∅
        │   │   │   │           ├── name: :c
        │   │   │   │           ├── message_loc: (16,2)-(16,3) = "c"
        │   │   │   │           ├── opening_loc: ∅
        │   │   │   │           ├── arguments: ∅
        │   │   │   │           ├── closing_loc: ∅
        │   │   │   │           └── block: ∅
        │   │   │   └── end_keyword_loc: (17,0)-(17,6) = "ensure"
        │   │   ├── ensure_clause:
        │   │   │   @ EnsureNode (location: (17,0)-(19,3))
        │   │   │   ├── ensure_keyword_loc: (17,0)-(17,6) = "ensure"
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (18,2)-(18,3))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ CallNode (location: (18,2)-(18,3))
        │   │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │   │           ├── receiver: ∅
        │   │   │   │           ├── call_operator_loc: ∅
        │   │   │   │           ├── name: :d
        │   │   │   │           ├── message_loc: (18,2)-(18,3) = "d"
        │   │   │   │           ├── opening_loc: ∅
        │   │   │   │           ├── arguments: ∅
        │   │   │   │           ├── closing_loc: ∅
        │   │   │   │           └── block: ∅
        │   │   │   └── end_keyword_loc: (19,0)-(19,3) = "end"
        │   │   └── end_keyword_loc: (19,0)-(19,3) = "end"
        │   ├── locals: []
        │   ├── def_keyword_loc: (11,0)-(11,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (19,0)-(19,3) = "end"
        ├── @ DefNode (location: (21,0)-(22,3))
        │   ├── name: :foo
        │   ├── name_loc: (21,4)-(21,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (21,8)-(21,18))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 2)
        │   │   │   ├── @ RequiredKeywordParameterNode (location: (21,8)-(21,12))
        │   │   │   │   ├── flags: ∅
        │   │   │   │   ├── name: :bar
        │   │   │   │   └── name_loc: (21,8)-(21,12) = "bar:"
        │   │   │   └── @ RequiredKeywordParameterNode (location: (21,14)-(21,18))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :baz
        │   │   │       └── name_loc: (21,14)-(21,18) = "baz:"
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:bar, :baz]
        │   ├── def_keyword_loc: (21,0)-(21,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (21,7)-(21,8) = "("
        │   ├── rparen_loc: (21,18)-(21,19) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (22,0)-(22,3) = "end"
        ├── @ DefNode (location: (24,0)-(25,3))
        │   ├── name: :foo
        │   ├── name_loc: (24,4)-(24,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (24,0)-(24,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (25,0)-(25,3) = "end"
        ├── @ DefNode (location: (27,0)-(29,3))
        │   ├── name: :foo
        │   ├── name_loc: (27,4)-(27,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (28,2)-(28,5))
        │   │   └── body: (length: 1)
        │   │       └── @ CallNode (location: (28,2)-(28,5))
        │   │           ├── flags: variable_call, ignore_visibility
        │   │           ├── receiver: ∅
        │   │           ├── call_operator_loc: ∅
        │   │           ├── name: :bar
        │   │           ├── message_loc: (28,2)-(28,5) = "bar"
        │   │           ├── opening_loc: ∅
        │   │           ├── arguments: ∅
        │   │           ├── closing_loc: ∅
        │   │           └── block: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (27,0)-(27,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (29,0)-(29,3) = "end"
        ├── @ DefNode (location: (31,0)-(37,3))
        │   ├── name: :foo
        │   ├── name_loc: (31,4)-(31,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ BeginNode (location: (31,0)-(37,3))
        │   │   ├── begin_keyword_loc: ∅
        │   │   ├── statements:
        │   │   │   @ StatementsNode (location: (32,2)-(32,5))
        │   │   │   └── body: (length: 1)
        │   │   │       └── @ CallNode (location: (32,2)-(32,5))
        │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │           ├── receiver: ∅
        │   │   │           ├── call_operator_loc: ∅
        │   │   │           ├── name: :foo
        │   │   │           ├── message_loc: (32,2)-(32,5) = "foo"
        │   │   │           ├── opening_loc: ∅
        │   │   │           ├── arguments: ∅
        │   │   │           ├── closing_loc: ∅
        │   │   │           └── block: ∅
        │   │   ├── rescue_clause:
        │   │   │   @ RescueNode (location: (33,0)-(34,5))
        │   │   │   ├── keyword_loc: (33,0)-(33,6) = "rescue"
        │   │   │   ├── exceptions: (length: 0)
        │   │   │   ├── operator_loc: ∅
        │   │   │   ├── reference: ∅
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (34,2)-(34,5))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ CallNode (location: (34,2)-(34,5))
        │   │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │   │           ├── receiver: ∅
        │   │   │   │           ├── call_operator_loc: ∅
        │   │   │   │           ├── name: :bar
        │   │   │   │           ├── message_loc: (34,2)-(34,5) = "bar"
        │   │   │   │           ├── opening_loc: ∅
        │   │   │   │           ├── arguments: ∅
        │   │   │   │           ├── closing_loc: ∅
        │   │   │   │           └── block: ∅
        │   │   │   └── consequent: ∅
        │   │   ├── else_clause: ∅
        │   │   ├── ensure_clause:
        │   │   │   @ EnsureNode (location: (35,0)-(37,3))
        │   │   │   ├── ensure_keyword_loc: (35,0)-(35,6) = "ensure"
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (36,2)-(36,5))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ CallNode (location: (36,2)-(36,5))
        │   │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │   │           ├── receiver: ∅
        │   │   │   │           ├── call_operator_loc: ∅
        │   │   │   │           ├── name: :baz
        │   │   │   │           ├── message_loc: (36,2)-(36,5) = "baz"
        │   │   │   │           ├── opening_loc: ∅
        │   │   │   │           ├── arguments: ∅
        │   │   │   │           ├── closing_loc: ∅
        │   │   │   │           └── block: ∅
        │   │   │   └── end_keyword_loc: (37,0)-(37,3) = "end"
        │   │   └── end_keyword_loc: (37,0)-(37,3) = "end"
        │   ├── locals: []
        │   ├── def_keyword_loc: (31,0)-(31,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (37,0)-(37,3) = "end"
        ├── @ DefNode (location: (39,0)-(43,3))
        │   ├── name: :foo
        │   ├── name_loc: (39,4)-(39,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ BeginNode (location: (39,0)-(43,3))
        │   │   ├── begin_keyword_loc: ∅
        │   │   ├── statements:
        │   │   │   @ StatementsNode (location: (40,2)-(40,5))
        │   │   │   └── body: (length: 1)
        │   │   │       └── @ CallNode (location: (40,2)-(40,5))
        │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │           ├── receiver: ∅
        │   │   │           ├── call_operator_loc: ∅
        │   │   │           ├── name: :bar
        │   │   │           ├── message_loc: (40,2)-(40,5) = "bar"
        │   │   │           ├── opening_loc: ∅
        │   │   │           ├── arguments: ∅
        │   │   │           ├── closing_loc: ∅
        │   │   │           └── block: ∅
        │   │   ├── rescue_clause: ∅
        │   │   ├── else_clause: ∅
        │   │   ├── ensure_clause:
        │   │   │   @ EnsureNode (location: (41,0)-(43,3))
        │   │   │   ├── ensure_keyword_loc: (41,0)-(41,6) = "ensure"
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (42,2)-(42,5))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ CallNode (location: (42,2)-(42,5))
        │   │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │   │           ├── receiver: ∅
        │   │   │   │           ├── call_operator_loc: ∅
        │   │   │   │           ├── name: :baz
        │   │   │   │           ├── message_loc: (42,2)-(42,5) = "baz"
        │   │   │   │           ├── opening_loc: ∅
        │   │   │   │           ├── arguments: ∅
        │   │   │   │           ├── closing_loc: ∅
        │   │   │   │           └── block: ∅
        │   │   │   └── end_keyword_loc: (43,0)-(43,3) = "end"
        │   │   └── end_keyword_loc: (43,0)-(43,3) = "end"
        │   ├── locals: []
        │   ├── def_keyword_loc: (39,0)-(39,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (43,0)-(43,3) = "end"
        ├── @ DefNode (location: (45,0)-(49,3))
        │   ├── name: :foo
        │   ├── name_loc: (45,4)-(45,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ BeginNode (location: (45,0)-(49,3))
        │   │   ├── begin_keyword_loc: ∅
        │   │   ├── statements:
        │   │   │   @ StatementsNode (location: (46,2)-(46,5))
        │   │   │   └── body: (length: 1)
        │   │   │       └── @ CallNode (location: (46,2)-(46,5))
        │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │           ├── receiver: ∅
        │   │   │           ├── call_operator_loc: ∅
        │   │   │           ├── name: :bar
        │   │   │           ├── message_loc: (46,2)-(46,5) = "bar"
        │   │   │           ├── opening_loc: ∅
        │   │   │           ├── arguments: ∅
        │   │   │           ├── closing_loc: ∅
        │   │   │           └── block: ∅
        │   │   ├── rescue_clause:
        │   │   │   @ RescueNode (location: (47,0)-(48,5))
        │   │   │   ├── keyword_loc: (47,0)-(47,6) = "rescue"
        │   │   │   ├── exceptions: (length: 0)
        │   │   │   ├── operator_loc: ∅
        │   │   │   ├── reference: ∅
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (48,2)-(48,5))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ CallNode (location: (48,2)-(48,5))
        │   │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │   │           ├── receiver: ∅
        │   │   │   │           ├── call_operator_loc: ∅
        │   │   │   │           ├── name: :baz
        │   │   │   │           ├── message_loc: (48,2)-(48,5) = "baz"
        │   │   │   │           ├── opening_loc: ∅
        │   │   │   │           ├── arguments: ∅
        │   │   │   │           ├── closing_loc: ∅
        │   │   │   │           └── block: ∅
        │   │   │   └── consequent: ∅
        │   │   ├── else_clause: ∅
        │   │   ├── ensure_clause: ∅
        │   │   └── end_keyword_loc: (49,0)-(49,3) = "end"
        │   ├── locals: []
        │   ├── def_keyword_loc: (45,0)-(45,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (49,0)-(49,3) = "end"
        ├── @ DefNode (location: (51,0)-(53,3))
        │   ├── name: :foo
        │   ├── name_loc: (51,4)-(51,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (51,8)-(51,11))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ RequiredParameterNode (location: (51,8)-(51,11))
        │   │   │       ├── flags: ∅
        │   │   │       └── name: :bar
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (52,2)-(52,5))
        │   │   └── body: (length: 1)
        │   │       └── @ LocalVariableReadNode (location: (52,2)-(52,5))
        │   │           ├── name: :bar
        │   │           └── depth: 0
        │   ├── locals: [:bar]
        │   ├── def_keyword_loc: (51,0)-(51,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (51,7)-(51,8) = "("
        │   ├── rparen_loc: (51,11)-(51,12) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (53,0)-(53,3) = "end"
        ├── @ DefNode (location: (55,0)-(57,3))
        │   ├── name: :foo
        │   ├── name_loc: (55,4)-(55,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (55,8)-(55,16))
        │   │   ├── requireds: (length: 2)
        │   │   │   ├── @ RequiredParameterNode (location: (55,8)-(55,11))
        │   │   │   │   ├── flags: ∅
        │   │   │   │   └── name: :bar
        │   │   │   └── @ RequiredParameterNode (location: (55,13)-(55,16))
        │   │   │       ├── flags: ∅
        │   │   │       └── name: :baz
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (56,2)-(56,5))
        │   │   └── body: (length: 1)
        │   │       └── @ LocalVariableReadNode (location: (56,2)-(56,5))
        │   │           ├── name: :bar
        │   │           └── depth: 0
        │   ├── locals: [:bar, :baz]
        │   ├── def_keyword_loc: (55,0)-(55,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (55,7)-(55,8) = "("
        │   ├── rparen_loc: (55,16)-(55,17) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (57,0)-(57,3) = "end"
        ├── @ DefNode (location: (59,0)-(61,3))
        │   ├── name: :foo
        │   ├── name_loc: (59,4)-(59,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (59,8)-(59,16))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (59,8)-(59,16))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :bar
        │   │   │       ├── name_loc: (59,8)-(59,11) = "bar"
        │   │   │       ├── operator_loc: (59,12)-(59,13) = "="
        │   │   │       └── value:
        │   │   │           @ ParenthesesNode (location: (59,14)-(59,16))
        │   │   │           ├── body: ∅
        │   │   │           ├── opening_loc: (59,14)-(59,15) = "("
        │   │   │           └── closing_loc: (59,15)-(59,16) = ")"
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (60,2)-(60,5))
        │   │   └── body: (length: 1)
        │   │       └── @ LocalVariableReadNode (location: (60,2)-(60,5))
        │   │           ├── name: :bar
        │   │           └── depth: 0
        │   ├── locals: [:bar]
        │   ├── def_keyword_loc: (59,0)-(59,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (59,7)-(59,8) = "("
        │   ├── rparen_loc: (59,16)-(59,17) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (61,0)-(61,3) = "end"
        ├── @ DefNode (location: (63,0)-(64,3))
        │   ├── name: :foo
        │   ├── name_loc: (63,4)-(63,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (63,8)-(63,24))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (63,8)-(63,24))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :bar
        │   │   │       ├── name_loc: (63,8)-(63,11) = "bar"
        │   │   │       ├── operator_loc: (63,12)-(63,13) = "="
        │   │   │       └── value:
        │   │   │           @ ParenthesesNode (location: (63,14)-(63,24))
        │   │   │           ├── body:
        │   │   │           │   @ StatementsNode (location: (63,15)-(63,23))
        │   │   │           │   └── body: (length: 2)
        │   │   │           │       ├── @ CallNode (location: (63,15)-(63,18))
        │   │   │           │       │   ├── flags: variable_call, ignore_visibility
        │   │   │           │       │   ├── receiver: ∅
        │   │   │           │       │   ├── call_operator_loc: ∅
        │   │   │           │       │   ├── name: :baz
        │   │   │           │       │   ├── message_loc: (63,15)-(63,18) = "baz"
        │   │   │           │       │   ├── opening_loc: ∅
        │   │   │           │       │   ├── arguments: ∅
        │   │   │           │       │   ├── closing_loc: ∅
        │   │   │           │       │   └── block: ∅
        │   │   │           │       └── @ NilNode (location: (63,20)-(63,23))
        │   │   │           ├── opening_loc: (63,14)-(63,15) = "("
        │   │   │           └── closing_loc: (63,23)-(63,24) = ")"
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:bar]
        │   ├── def_keyword_loc: (63,0)-(63,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (63,7)-(63,8) = "("
        │   ├── rparen_loc: (63,24)-(63,25) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (64,0)-(64,3) = "end"
        ├── @ DefNode (location: (66,0)-(68,3))
        │   ├── name: :foo
        │   ├── name_loc: (66,4)-(66,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (66,8)-(66,18))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (66,8)-(66,18))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :bar
        │   │   │       ├── name_loc: (66,8)-(66,11) = "bar"
        │   │   │       ├── operator_loc: (66,12)-(66,13) = "="
        │   │   │       └── value:
        │   │   │           @ TrueNode (location: (66,14)-(66,18))
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (67,2)-(67,5))
        │   │   └── body: (length: 1)
        │   │       └── @ LocalVariableReadNode (location: (67,2)-(67,5))
        │   │           ├── name: :bar
        │   │           └── depth: 0
        │   ├── locals: [:bar]
        │   ├── def_keyword_loc: (66,0)-(66,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (66,7)-(66,8) = "("
        │   ├── rparen_loc: (66,18)-(66,19) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (68,0)-(68,3) = "end"
        ├── @ DefNode (location: (70,0)-(72,3))
        │   ├── name: :foo
        │   ├── name_loc: (70,4)-(70,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (70,8)-(70,23))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ RequiredParameterNode (location: (70,8)-(70,11))
        │   │   │       ├── flags: ∅
        │   │   │       └── name: :bar
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (70,13)-(70,23))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :baz
        │   │   │       ├── name_loc: (70,13)-(70,16) = "baz"
        │   │   │       ├── operator_loc: (70,17)-(70,18) = "="
        │   │   │       └── value:
        │   │   │           @ TrueNode (location: (70,19)-(70,23))
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (71,2)-(71,5))
        │   │   └── body: (length: 1)
        │   │       └── @ LocalVariableReadNode (location: (71,2)-(71,5))
        │   │           ├── name: :bar
        │   │           └── depth: 0
        │   ├── locals: [:bar, :baz]
        │   ├── def_keyword_loc: (70,0)-(70,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (70,7)-(70,8) = "("
        │   ├── rparen_loc: (70,23)-(70,24) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (72,0)-(72,3) = "end"
        ├── @ DefNode (location: (74,0)-(75,3))
        │   ├── name: :foo
        │   ├── name_loc: (74,4)-(74,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (74,8)-(74,14))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 1)
        │   │   │   └── @ OptionalKeywordParameterNode (location: (74,8)-(74,14))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :bar
        │   │   │       ├── name_loc: (74,8)-(74,12) = "bar:"
        │   │   │       └── value:
        │   │   │           @ IntegerNode (location: (74,13)-(74,14))
        │   │   │           ├── flags: decimal
        │   │   │           └── value: 1
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:bar]
        │   ├── def_keyword_loc: (74,0)-(74,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (74,7)-(74,8) = "("
        │   ├── rparen_loc: (74,14)-(74,15) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (75,0)-(75,3) = "end"
        ├── @ DefNode (location: (77,0)-(78,3))
        │   ├── name: :foo
        │   ├── name_loc: (77,4)-(77,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (77,8)-(77,16))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 1)
        │   │   │   └── @ OptionalKeywordParameterNode (location: (77,8)-(77,16))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :bar
        │   │   │       ├── name_loc: (77,8)-(77,12) = "bar:"
        │   │   │       └── value:
        │   │   │           @ CallNode (location: (77,13)-(77,16))
        │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │           ├── receiver: ∅
        │   │   │           ├── call_operator_loc: ∅
        │   │   │           ├── name: :baz
        │   │   │           ├── message_loc: (77,13)-(77,16) = "baz"
        │   │   │           ├── opening_loc: ∅
        │   │   │           ├── arguments: ∅
        │   │   │           ├── closing_loc: ∅
        │   │   │           └── block: ∅
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:bar]
        │   ├── def_keyword_loc: (77,0)-(77,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (77,7)-(77,8) = "("
        │   ├── rparen_loc: (77,16)-(77,17) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (78,0)-(78,3) = "end"
        ├── @ DefNode (location: (80,0)-(81,3))
        │   ├── name: :foo
        │   ├── name_loc: (80,4)-(80,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (80,8)-(80,18))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 1)
        │   │   │   └── @ OptionalKeywordParameterNode (location: (80,8)-(80,18))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :bar
        │   │   │       ├── name_loc: (80,8)-(80,12) = "bar:"
        │   │   │       └── value:
        │   │   │           @ CallNode (location: (80,13)-(80,18))
        │   │   │           ├── flags: ignore_visibility
        │   │   │           ├── receiver: ∅
        │   │   │           ├── call_operator_loc: ∅
        │   │   │           ├── name: :bar
        │   │   │           ├── message_loc: (80,13)-(80,16) = "bar"
        │   │   │           ├── opening_loc: (80,16)-(80,17) = "("
        │   │   │           ├── arguments: ∅
        │   │   │           ├── closing_loc: (80,17)-(80,18) = ")"
        │   │   │           └── block: ∅
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:bar]
        │   ├── def_keyword_loc: (80,0)-(80,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (80,7)-(80,8) = "("
        │   ├── rparen_loc: (80,18)-(80,19) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (81,0)-(81,3) = "end"
        ├── @ DefNode (location: (83,0)-(85,3))
        │   ├── name: :foo
        │   ├── name_loc: (83,4)-(83,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (83,8)-(83,9))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest:
        │   │   │   @ RestParameterNode (location: (83,8)-(83,9))
        │   │   │   ├── flags: ∅
        │   │   │   ├── name: ∅
        │   │   │   ├── name_loc: ∅
        │   │   │   └── operator_loc: (83,8)-(83,9) = "*"
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (84,2)-(84,5))
        │   │   └── body: (length: 1)
        │   │       └── @ CallNode (location: (84,2)-(84,5))
        │   │           ├── flags: variable_call, ignore_visibility
        │   │           ├── receiver: ∅
        │   │           ├── call_operator_loc: ∅
        │   │           ├── name: :bar
        │   │           ├── message_loc: (84,2)-(84,5) = "bar"
        │   │           ├── opening_loc: ∅
        │   │           ├── arguments: ∅
        │   │           ├── closing_loc: ∅
        │   │           └── block: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (83,0)-(83,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (83,7)-(83,8) = "("
        │   ├── rparen_loc: (83,9)-(83,10) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (85,0)-(85,3) = "end"
        ├── @ DefNode (location: (87,0)-(89,3))
        │   ├── name: :foo
        │   ├── name_loc: (87,4)-(87,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (87,8)-(87,12))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest:
        │   │   │   @ RestParameterNode (location: (87,8)-(87,12))
        │   │   │   ├── flags: ∅
        │   │   │   ├── name: :bar
        │   │   │   ├── name_loc: (87,9)-(87,12) = "bar"
        │   │   │   └── operator_loc: (87,8)-(87,9) = "*"
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (88,2)-(88,5))
        │   │   └── body: (length: 1)
        │   │       └── @ LocalVariableReadNode (location: (88,2)-(88,5))
        │   │           ├── name: :bar
        │   │           └── depth: 0
        │   ├── locals: [:bar]
        │   ├── def_keyword_loc: (87,0)-(87,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (87,7)-(87,8) = "("
        │   ├── rparen_loc: (87,12)-(87,13) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (89,0)-(89,3) = "end"
        ├── @ DefNode (location: (91,0)-(93,3))
        │   ├── name: :foo
        │   ├── name_loc: (91,4)-(91,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (91,8)-(91,17))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ RequiredParameterNode (location: (91,8)-(91,11))
        │   │   │       ├── flags: ∅
        │   │   │       └── name: :bar
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest:
        │   │   │   @ RestParameterNode (location: (91,13)-(91,17))
        │   │   │   ├── flags: ∅
        │   │   │   ├── name: :baz
        │   │   │   ├── name_loc: (91,14)-(91,17) = "baz"
        │   │   │   └── operator_loc: (91,13)-(91,14) = "*"
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (92,2)-(92,5))
        │   │   └── body: (length: 1)
        │   │       └── @ LocalVariableReadNode (location: (92,2)-(92,5))
        │   │           ├── name: :bar
        │   │           └── depth: 0
        │   ├── locals: [:bar, :baz]
        │   ├── def_keyword_loc: (91,0)-(91,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (91,7)-(91,8) = "("
        │   ├── rparen_loc: (91,17)-(91,18) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (93,0)-(93,3) = "end"
        ├── @ DefNode (location: (95,0)-(97,3))
        │   ├── name: :foo
        │   ├── name_loc: (95,4)-(95,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (95,8)-(95,24))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (95,8)-(95,18))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :baz
        │   │   │       ├── name_loc: (95,8)-(95,11) = "baz"
        │   │   │       ├── operator_loc: (95,12)-(95,13) = "="
        │   │   │       └── value:
        │   │   │           @ TrueNode (location: (95,14)-(95,18))
        │   │   ├── rest:
        │   │   │   @ RestParameterNode (location: (95,20)-(95,24))
        │   │   │   ├── flags: ∅
        │   │   │   ├── name: :bor
        │   │   │   ├── name_loc: (95,21)-(95,24) = "bor"
        │   │   │   └── operator_loc: (95,20)-(95,21) = "*"
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (96,2)-(96,5))
        │   │   └── body: (length: 1)
        │   │       └── @ CallNode (location: (96,2)-(96,5))
        │   │           ├── flags: variable_call, ignore_visibility
        │   │           ├── receiver: ∅
        │   │           ├── call_operator_loc: ∅
        │   │           ├── name: :bar
        │   │           ├── message_loc: (96,2)-(96,5) = "bar"
        │   │           ├── opening_loc: ∅
        │   │           ├── arguments: ∅
        │   │           ├── closing_loc: ∅
        │   │           └── block: ∅
        │   ├── locals: [:baz, :bor]
        │   ├── def_keyword_loc: (95,0)-(95,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (95,7)-(95,8) = "("
        │   ├── rparen_loc: (95,24)-(95,25) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (97,0)-(97,3) = "end"
        ├── @ DefNode (location: (99,0)-(101,3))
        │   ├── name: :foo
        │   ├── name_loc: (99,4)-(99,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (99,8)-(99,32))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (99,8)-(99,18))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :baz
        │   │   │       ├── name_loc: (99,8)-(99,11) = "baz"
        │   │   │       ├── operator_loc: (99,12)-(99,13) = "="
        │   │   │       └── value:
        │   │   │           @ TrueNode (location: (99,14)-(99,18))
        │   │   ├── rest:
        │   │   │   @ RestParameterNode (location: (99,20)-(99,24))
        │   │   │   ├── flags: ∅
        │   │   │   ├── name: :bor
        │   │   │   ├── name_loc: (99,21)-(99,24) = "bor"
        │   │   │   └── operator_loc: (99,20)-(99,21) = "*"
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block:
        │   │       @ BlockParameterNode (location: (99,26)-(99,32))
        │   │       ├── flags: ∅
        │   │       ├── name: :block
        │   │       ├── name_loc: (99,27)-(99,32) = "block"
        │   │       └── operator_loc: (99,26)-(99,27) = "&"
        │   ├── body:
        │   │   @ StatementsNode (location: (100,2)-(100,5))
        │   │   └── body: (length: 1)
        │   │       └── @ CallNode (location: (100,2)-(100,5))
        │   │           ├── flags: variable_call, ignore_visibility
        │   │           ├── receiver: ∅
        │   │           ├── call_operator_loc: ∅
        │   │           ├── name: :bar
        │   │           ├── message_loc: (100,2)-(100,5) = "bar"
        │   │           ├── opening_loc: ∅
        │   │           ├── arguments: ∅
        │   │           ├── closing_loc: ∅
        │   │           └── block: ∅
        │   ├── locals: [:baz, :bor, :block]
        │   ├── def_keyword_loc: (99,0)-(99,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (99,7)-(99,8) = "("
        │   ├── rparen_loc: (99,32)-(99,33) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (101,0)-(101,3) = "end"
        ├── @ DefNode (location: (103,0)-(105,3))
        │   ├── name: :foo
        │   ├── name_loc: (103,4)-(103,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (103,8)-(103,29))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ RequiredParameterNode (location: (103,8)-(103,11))
        │   │   │       ├── flags: ∅
        │   │   │       └── name: :bar
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (103,13)-(103,23))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :baz
        │   │   │       ├── name_loc: (103,13)-(103,16) = "baz"
        │   │   │       ├── operator_loc: (103,17)-(103,18) = "="
        │   │   │       └── value:
        │   │   │           @ TrueNode (location: (103,19)-(103,23))
        │   │   ├── rest:
        │   │   │   @ RestParameterNode (location: (103,25)-(103,29))
        │   │   │   ├── flags: ∅
        │   │   │   ├── name: :bor
        │   │   │   ├── name_loc: (103,26)-(103,29) = "bor"
        │   │   │   └── operator_loc: (103,25)-(103,26) = "*"
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (104,2)-(104,5))
        │   │   └── body: (length: 1)
        │   │       └── @ LocalVariableReadNode (location: (104,2)-(104,5))
        │   │           ├── name: :bar
        │   │           └── depth: 0
        │   ├── locals: [:bar, :baz, :bor]
        │   ├── def_keyword_loc: (103,0)-(103,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (103,7)-(103,8) = "("
        │   ├── rparen_loc: (103,29)-(103,30) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (105,0)-(105,3) = "end"
        ├── @ DefNode (location: (107,0)-(109,3))
        │   ├── name: :foo
        │   ├── name_loc: (107,4)-(107,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (107,8)-(107,14))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block:
        │   │       @ BlockParameterNode (location: (107,8)-(107,14))
        │   │       ├── flags: ∅
        │   │       ├── name: :block
        │   │       ├── name_loc: (107,9)-(107,14) = "block"
        │   │       └── operator_loc: (107,8)-(107,9) = "&"
        │   ├── body:
        │   │   @ StatementsNode (location: (108,2)-(108,5))
        │   │   └── body: (length: 1)
        │   │       └── @ CallNode (location: (108,2)-(108,5))
        │   │           ├── flags: variable_call, ignore_visibility
        │   │           ├── receiver: ∅
        │   │           ├── call_operator_loc: ∅
        │   │           ├── name: :bar
        │   │           ├── message_loc: (108,2)-(108,5) = "bar"
        │   │           ├── opening_loc: ∅
        │   │           ├── arguments: ∅
        │   │           ├── closing_loc: ∅
        │   │           └── block: ∅
        │   ├── locals: [:block]
        │   ├── def_keyword_loc: (107,0)-(107,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (107,7)-(107,8) = "("
        │   ├── rparen_loc: (107,14)-(107,15) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (109,0)-(109,3) = "end"
        ├── @ DefNode (location: (111,0)-(113,3))
        │   ├── name: :foo
        │   ├── name_loc: (111,4)-(111,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (111,8)-(111,19))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ RequiredParameterNode (location: (111,8)-(111,11))
        │   │   │       ├── flags: ∅
        │   │   │       └── name: :bar
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block:
        │   │       @ BlockParameterNode (location: (111,13)-(111,19))
        │   │       ├── flags: ∅
        │   │       ├── name: :block
        │   │       ├── name_loc: (111,14)-(111,19) = "block"
        │   │       └── operator_loc: (111,13)-(111,14) = "&"
        │   ├── body:
        │   │   @ StatementsNode (location: (112,2)-(112,5))
        │   │   └── body: (length: 1)
        │   │       └── @ LocalVariableReadNode (location: (112,2)-(112,5))
        │   │           ├── name: :bar
        │   │           └── depth: 0
        │   ├── locals: [:bar, :block]
        │   ├── def_keyword_loc: (111,0)-(111,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (111,7)-(111,8) = "("
        │   ├── rparen_loc: (111,19)-(111,20) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (113,0)-(113,3) = "end"
        ├── @ DefNode (location: (115,0)-(118,3))
        │   ├── name: :foo
        │   ├── name_loc: (115,4)-(115,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (116,2)-(117,5))
        │   │   └── body: (length: 2)
        │   │       ├── @ CallNode (location: (116,2)-(116,5))
        │   │       │   ├── flags: variable_call, ignore_visibility
        │   │       │   ├── receiver: ∅
        │   │       │   ├── call_operator_loc: ∅
        │   │       │   ├── name: :bar
        │   │       │   ├── message_loc: (116,2)-(116,5) = "bar"
        │   │       │   ├── opening_loc: ∅
        │   │       │   ├── arguments: ∅
        │   │       │   ├── closing_loc: ∅
        │   │       │   └── block: ∅
        │   │       └── @ CallNode (location: (117,2)-(117,5))
        │   │           ├── flags: variable_call, ignore_visibility
        │   │           ├── receiver: ∅
        │   │           ├── call_operator_loc: ∅
        │   │           ├── name: :baz
        │   │           ├── message_loc: (117,2)-(117,5) = "baz"
        │   │           ├── opening_loc: ∅
        │   │           ├── arguments: ∅
        │   │           ├── closing_loc: ∅
        │   │           └── block: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (115,0)-(115,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (118,0)-(118,3) = "end"
        ├── @ DefNode (location: (120,0)-(121,3))
        │   ├── name: :f
        │   ├── name_loc: (120,4)-(120,5) = "f"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (120,6)-(120,11))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ MultiTargetNode (location: (120,6)-(120,11))
        │   │   │       ├── lefts: (length: 1)
        │   │   │       │   └── @ MultiTargetNode (location: (120,7)-(120,10))
        │   │   │       │       ├── lefts: (length: 1)
        │   │   │       │       │   └── @ RequiredParameterNode (location: (120,8)-(120,9))
        │   │   │       │       │       ├── flags: ∅
        │   │   │       │       │       └── name: :a
        │   │   │       │       ├── rest: ∅
        │   │   │       │       ├── rights: (length: 0)
        │   │   │       │       ├── lparen_loc: (120,7)-(120,8) = "("
        │   │   │       │       └── rparen_loc: (120,9)-(120,10) = ")"
        │   │   │       ├── rest: ∅
        │   │   │       ├── rights: (length: 0)
        │   │   │       ├── lparen_loc: (120,6)-(120,7) = "("
        │   │   │       └── rparen_loc: (120,10)-(120,11) = ")"
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:a]
        │   ├── def_keyword_loc: (120,0)-(120,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (120,5)-(120,6) = "("
        │   ├── rparen_loc: (120,11)-(120,12) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (121,0)-(121,3) = "end"
        ├── @ DefNode (location: (123,0)-(124,3))
        │   ├── name: :foo
        │   ├── name_loc: (123,4)-(123,7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (123,8)-(123,26))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── posts: (length: 0)
        │   │   ├── keywords: (length: 2)
        │   │   │   ├── @ RequiredKeywordParameterNode (location: (123,8)-(123,12))
        │   │   │   │   ├── flags: ∅
        │   │   │   │   ├── name: :bar
        │   │   │   │   └── name_loc: (123,8)-(123,12) = "bar:"
        │   │   │   └── @ OptionalKeywordParameterNode (location: (123,14)-(123,26))
        │   │   │       ├── flags: ∅
        │   │   │       ├── name: :baz
        │   │   │       ├── name_loc: (123,14)-(123,18) = "baz:"
        │   │   │       └── value:
        │   │   │           @ StringNode (location: (123,19)-(123,26))
        │   │   │           ├── flags: ∅
        │   │   │           ├── opening_loc: (123,19)-(123,20) = "\""
        │   │   │           ├── content_loc: (123,20)-(123,25) = "value"
        │   │   │           ├── closing_loc: (123,25)-(123,26) = "\""
        │   │   │           └── unescaped: "value"
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:bar, :baz]
        │   ├── def_keyword_loc: (123,0)-(123,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (123,7)-(123,8) = "("
        │   ├── rparen_loc: (123,26)-(123,27) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (124,0)-(124,3) = "end"
        ├── @ DefNode (location: (126,0)-(130,3))
        │   ├── name: :f
        │   ├── name_loc: (126,4)-(126,5) = "f"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (127,2)-(127,12))
        │   │   └── body: (length: 1)
        │   │       └── @ InterpolatedStringNode (location: (127,2)-(127,12))
        │   │           ├── flags: ∅
        │   │           ├── opening_loc: (127,2)-(127,12) = "<<-HEREDOC"
        │   │           ├── parts: (length: 3)
        │   │           │   ├── @ StringNode (location: (128,0)-(128,4))
        │   │           │   │   ├── flags: frozen
        │   │           │   │   ├── opening_loc: ∅
        │   │           │   │   ├── content_loc: (128,0)-(128,4) = "    "
        │   │           │   │   ├── closing_loc: ∅
        │   │           │   │   └── unescaped: "    "
        │   │           │   ├── @ EmbeddedStatementsNode (location: (128,4)-(128,7))
        │   │           │   │   ├── opening_loc: (128,4)-(128,6) = "\#{"
        │   │           │   │   ├── statements: ∅
        │   │           │   │   └── closing_loc: (128,6)-(128,7) = "}"
        │   │           │   └── @ StringNode (location: (128,7)-(129,0))
        │   │           │       ├── flags: frozen
        │   │           │       ├── opening_loc: ∅
        │   │           │       ├── content_loc: (128,7)-(129,0) = "\n"
        │   │           │       ├── closing_loc: ∅
        │   │           │       └── unescaped: "\n"
        │   │           └── closing_loc: (129,0)-(130,0) = "  HEREDOC\n"
        │   ├── locals: []
        │   ├── def_keyword_loc: (126,0)-(126,3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (130,0)-(130,3) = "end"
        └── @ DefNode (location: (132,0)-(134,3))
            ├── name: :f
            ├── name_loc: (132,4)-(132,5) = "f"
            ├── receiver: ∅
            ├── parameters: ∅
            ├── body:
            │   @ StatementsNode (location: (133,2)-(133,5))
            │   └── body: (length: 1)
            │       └── @ StringNode (location: (133,2)-(133,5))
            │           ├── flags: ∅
            │           ├── opening_loc: (133,2)-(133,4) = "%("
            │           ├── content_loc: (133,4)-(133,4) = ""
            │           ├── closing_loc: (133,4)-(133,5) = ")"
            │           └── unescaped: ""
            ├── locals: []
            ├── def_keyword_loc: (132,0)-(132,3) = "def"
            ├── operator_loc: ∅
            ├── lparen_loc: ∅
            ├── rparen_loc: ∅
            ├── equal_loc: ∅
            └── end_keyword_loc: (134,0)-(134,3) = "end"