aboutsummaryrefslogtreecommitdiffstats
path: root/test/yarp/snapshots/methods.txt
blob: 4f35e292785d778d30c370890f6da94fc8ee97e0 (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
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
@ ProgramNode (location: (0...1194))
├── locals: [:a, :c]
└── statements:
    @ StatementsNode (location: (0...1194))
    └── body: (length: 60)
        ├── @ DefNode (location: (0...23))
        │   ├── name: :foo
        │   ├── name_loc: (4...7) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (8...18))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ RequiredDestructuredParameterNode (location: (8...18))
        │   │   │       ├── parameters: (length: 2)
        │   │   │       │   ├── @ RequiredParameterNode (location: (9...12))
        │   │   │       │   │   └── name: :bar
        │   │   │       │   └── @ RequiredParameterNode (location: (14...17))
        │   │   │       │       └── name: :baz
        │   │   │       ├── opening_loc: (8...9) = "("
        │   │   │       └── closing_loc: (17...18) = ")"
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:bar, :baz]
        │   ├── def_keyword_loc: (0...3) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (7...8) = "("
        │   ├── rparen_loc: (18...19) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (20...23) = "end"
        ├── @ DefNode (location: (25...74))
        │   ├── name: :foo
        │   ├── name_loc: (29...32) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (33...69))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ RequiredDestructuredParameterNode (location: (33...43))
        │   │   │       ├── parameters: (length: 2)
        │   │   │       │   ├── @ RequiredParameterNode (location: (34...37))
        │   │   │       │   │   └── name: :bar
        │   │   │       │   └── @ RequiredParameterNode (location: (39...42))
        │   │   │       │       └── name: :baz
        │   │   │       ├── opening_loc: (33...34) = "("
        │   │   │       └── closing_loc: (42...43) = ")"
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (45...57))
        │   │   │       ├── name: :optional
        │   │   │       ├── name_loc: (45...53) = "optional"
        │   │   │       ├── operator_loc: (54...55) = "="
        │   │   │       └── value:
        │   │   │           @ IntegerNode (location: (56...57))
        │   │   │           └── flags: decimal
        │   │   ├── posts: (length: 1)
        │   │   │   └── @ RequiredDestructuredParameterNode (location: (59...69))
        │   │   │       ├── parameters: (length: 2)
        │   │   │       │   ├── @ RequiredParameterNode (location: (60...63))
        │   │   │       │   │   └── name: :bin
        │   │   │       │   └── @ RequiredParameterNode (location: (65...68))
        │   │   │       │       └── name: :bag
        │   │   │       ├── opening_loc: (59...60) = "("
        │   │   │       └── closing_loc: (68...69) = ")"
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:bar, :baz, :optional, :bin, :bag]
        │   ├── def_keyword_loc: (25...28) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (32...33) = "("
        │   ├── rparen_loc: (69...70) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (71...74) = "end"
        ├── @ DefNode (location: (77...95))
        │   ├── name: :a
        │   ├── name_loc: (81...82) = "a"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ BeginNode (location: (84...95))
        │   │   ├── begin_keyword_loc: ∅
        │   │   ├── statements: ∅
        │   │   ├── rescue_clause: ∅
        │   │   ├── else_clause: ∅
        │   │   ├── ensure_clause:
        │   │   │   @ EnsureNode (location: (84...95))
        │   │   │   ├── ensure_keyword_loc: (84...90) = "ensure"
        │   │   │   ├── statements: ∅
        │   │   │   └── end_keyword_loc: (92...95) = "end"
        │   │   └── end_keyword_loc: (92...95) = "end"
        │   ├── locals: []
        │   ├── def_keyword_loc: (77...80) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (92...95) = "end"
        ├── @ DefNode (location: (97...110))
        │   ├── name: :a
        │   ├── name_loc: (105...106) = "a"
        │   ├── receiver:
        │   │   @ ParenthesesNode (location: (101...104))
        │   │   ├── body:
        │   │   │   @ CallNode (location: (102...103))
        │   │   │   ├── receiver: ∅
        │   │   │   ├── call_operator_loc: ∅
        │   │   │   ├── message_loc: (102...103) = "b"
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── arguments: ∅
        │   │   │   ├── closing_loc: ∅
        │   │   │   ├── block: ∅
        │   │   │   ├── flags: variable_call
        │   │   │   └── name: "b"
        │   │   ├── opening_loc: (101...102) = "("
        │   │   └── closing_loc: (103...104) = ")"
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (97...100) = "def"
        │   ├── operator_loc: (104...105) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (107...110) = "end"
        ├── @ DefNode (location: (112...126))
        │   ├── name: :b
        │   ├── name_loc: (121...122) = "b"
        │   ├── receiver:
        │   │   @ ParenthesesNode (location: (116...119))
        │   │   ├── body:
        │   │   │   @ CallNode (location: (117...118))
        │   │   │   ├── receiver: ∅
        │   │   │   ├── call_operator_loc: ∅
        │   │   │   ├── message_loc: (117...118) = "a"
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── arguments: ∅
        │   │   │   ├── closing_loc: ∅
        │   │   │   ├── block: ∅
        │   │   │   ├── flags: variable_call
        │   │   │   └── name: "a"
        │   │   ├── opening_loc: (116...117) = "("
        │   │   └── closing_loc: (118...119) = ")"
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (112...115) = "def"
        │   ├── operator_loc: (119...121) = "::"
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (123...126) = "end"
        ├── @ DefNode (location: (128...143))
        │   ├── name: :a
        │   ├── name_loc: (138...139) = "a"
        │   ├── receiver:
        │   │   @ FalseNode (location: (132...137))
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (128...131) = "def"
        │   ├── operator_loc: (137...138) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (140...143) = "end"
        ├── @ DefNode (location: (145...159))
        │   ├── name: :a
        │   ├── name_loc: (149...150) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (151...154))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest:
        │   │   │   @ ForwardingParameterNode (location: (151...154))
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:"..."]
        │   ├── def_keyword_loc: (145...148) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (150...151) = "("
        │   ├── rparen_loc: (154...155) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (156...159) = "end"
        ├── @ DefNode (location: (161...175))
        │   ├── name: :a
        │   ├── name_loc: (170...171) = "a"
        │   ├── receiver:
        │   │   @ GlobalVariableReadNode (location: (165...169))
        │   │   └── name: :$var
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (161...164) = "def"
        │   ├── operator_loc: (169...170) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (172...175) = "end"
        ├── @ DefNode (location: (177...188))
        │   ├── name: :b
        │   ├── name_loc: (183...184) = "b"
        │   ├── receiver:
        │   │   @ CallNode (location: (181...182))
        │   │   ├── receiver: ∅
        │   │   ├── call_operator_loc: ∅
        │   │   ├── message_loc: (181...182) = "a"
        │   │   ├── opening_loc: ∅
        │   │   ├── arguments: ∅
        │   │   ├── closing_loc: ∅
        │   │   ├── block: ∅
        │   │   ├── flags: variable_call
        │   │   └── name: "a"
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (177...180) = "def"
        │   ├── operator_loc: (182...183) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (185...188) = "end"
        ├── @ DefNode (location: (190...204))
        │   ├── name: :a
        │   ├── name_loc: (199...200) = "a"
        │   ├── receiver:
        │   │   @ InstanceVariableReadNode (location: (194...198))
        │   │   └── name: :@var
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (190...193) = "def"
        │   ├── operator_loc: (198...199) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (201...204) = "end"
        ├── @ DefNode (location: (206...219))
        │   ├── name: :a
        │   ├── name_loc: (210...211) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (212...214))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 1)
        │   │   │   └── @ KeywordParameterNode (location: (212...214))
        │   │   │       ├── name: :b
        │   │   │       ├── name_loc: (212...214) = "b:"
        │   │   │       └── value: ∅
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:b]
        │   ├── def_keyword_loc: (206...209) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (216...219) = "end"
        ├── @ StringNode (location: (221...227))
        │   ├── opening_loc: (221...223) = "%,"
        │   ├── content_loc: (223...226) = "abc"
        │   ├── closing_loc: (226...227) = ","
        │   └── unescaped: "abc"
        ├── @ DefNode (location: (229...242))
        │   ├── name: :a
        │   ├── name_loc: (233...234) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (235...237))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 1)
        │   │   │   └── @ KeywordParameterNode (location: (235...237))
        │   │   │       ├── name: :b
        │   │   │       ├── name_loc: (235...237) = "b:"
        │   │   │       └── value: ∅
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:b]
        │   ├── def_keyword_loc: (229...232) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (234...235) = "("
        │   ├── rparen_loc: (237...238) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (239...242) = "end"
        ├── @ DefNode (location: (244...258))
        │   ├── name: :a
        │   ├── name_loc: (248...249) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (250...253))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest:
        │   │   │   @ KeywordRestParameterNode (location: (250...253))
        │   │   │   ├── name: :b
        │   │   │   ├── name_loc: (252...253) = "b"
        │   │   │   └── operator_loc: (250...252) = "**"
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:b]
        │   ├── def_keyword_loc: (244...247) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (249...250) = "("
        │   ├── rparen_loc: (253...254) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (255...258) = "end"
        ├── @ DefNode (location: (260...273))
        │   ├── name: :a
        │   ├── name_loc: (264...265) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (266...268))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest:
        │   │   │   @ KeywordRestParameterNode (location: (266...268))
        │   │   │   ├── name: nil
        │   │   │   ├── name_loc: ∅
        │   │   │   └── operator_loc: (266...268) = "**"
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:**]
        │   ├── def_keyword_loc: (260...263) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (265...266) = "("
        │   ├── rparen_loc: (268...269) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (270...273) = "end"
        ├── @ LocalVariableWriteNode (location: (275...280))
        │   ├── name: :a
        │   ├── depth: 0
        │   ├── name_loc: (275...276) = "a"
        │   ├── value:
        │   │   @ IntegerNode (location: (279...280))
        │   │   └── flags: decimal
        │   └── operator_loc: (277...278) = "="
        ├── @ DefNode (location: (282...291))
        │   ├── name: :a
        │   ├── name_loc: (286...287) = "a"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (282...285) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (288...291) = "end"
        ├── @ DefNode (location: (293...310))
        │   ├── name: :a
        │   ├── name_loc: (297...298) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (299...306))
        │   │   ├── requireds: (length: 3)
        │   │   │   ├── @ RequiredParameterNode (location: (299...300))
        │   │   │   │   └── name: :b
        │   │   │   ├── @ RequiredParameterNode (location: (302...303))
        │   │   │   │   └── name: :c
        │   │   │   └── @ RequiredParameterNode (location: (305...306))
        │   │   │       └── name: :d
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:b, :c, :d]
        │   ├── def_keyword_loc: (293...296) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (307...310) = "end"
        ├── @ DefNode (location: (312...325))
        │   ├── name: :a
        │   ├── name_loc: (320...321) = "a"
        │   ├── receiver:
        │   │   @ NilNode (location: (316...319))
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (312...315) = "def"
        │   ├── operator_loc: (319...320) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (322...325) = "end"
        ├── @ DefNode (location: (327...345))
        │   ├── name: :a
        │   ├── name_loc: (331...332) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (333...341))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 2)
        │   │   │   ├── @ KeywordParameterNode (location: (333...335))
        │   │   │   │   ├── name: :b
        │   │   │   │   ├── name_loc: (333...335) = "b:"
        │   │   │   │   └── value: ∅
        │   │   │   └── @ KeywordParameterNode (location: (337...341))
        │   │   │       ├── name: :c
        │   │   │       ├── name_loc: (337...339) = "c:"
        │   │   │       └── value:
        │   │   │           @ IntegerNode (location: (340...341))
        │   │   │           └── flags: decimal
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:b, :c]
        │   ├── def_keyword_loc: (327...330) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (342...345) = "end"
        ├── @ DefNode (location: (347...366))
        │   ├── name: :a
        │   ├── name_loc: (351...352) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (353...361))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 2)
        │   │   │   ├── @ KeywordParameterNode (location: (353...355))
        │   │   │   │   ├── name: :b
        │   │   │   │   ├── name_loc: (353...355) = "b:"
        │   │   │   │   └── value: ∅
        │   │   │   └── @ KeywordParameterNode (location: (357...361))
        │   │   │       ├── name: :c
        │   │   │       ├── name_loc: (357...359) = "c:"
        │   │   │       └── value:
        │   │   │           @ IntegerNode (location: (360...361))
        │   │   │           └── flags: decimal
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:b, :c]
        │   ├── def_keyword_loc: (347...350) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (352...353) = "("
        │   ├── rparen_loc: (361...362) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (363...366) = "end"
        ├── @ DefNode (location: (368...389))
        │   ├── name: :a
        │   ├── name_loc: (372...373) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (374...384))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 2)
        │   │   │   ├── @ KeywordParameterNode (location: (374...380))
        │   │   │   │   ├── name: :b
        │   │   │   │   ├── name_loc: (374...376) = "b:"
        │   │   │   │   └── value:
        │   │   │   │       @ IntegerNode (location: (379...380))
        │   │   │   │       └── flags: decimal
        │   │   │   └── @ KeywordParameterNode (location: (382...384))
        │   │   │       ├── name: :c
        │   │   │       ├── name_loc: (382...384) = "c:"
        │   │   │       └── value: ∅
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:b, :c]
        │   ├── def_keyword_loc: (368...371) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (373...374) = "("
        │   ├── rparen_loc: (384...385) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (386...389) = "end"
        ├── @ StringNode (location: (391...397))
        │   ├── opening_loc: (391...393) = "%."
        │   ├── content_loc: (393...396) = "abc"
        │   ├── closing_loc: (396...397) = "."
        │   └── unescaped: "abc"
        ├── @ DefNode (location: (399...421))
        │   ├── name: :a
        │   ├── name_loc: (403...404) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (405...417))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 2)
        │   │   │   ├── @ OptionalParameterNode (location: (405...410))
        │   │   │   │   ├── name: :b
        │   │   │   │   ├── name_loc: (405...406) = "b"
        │   │   │   │   ├── operator_loc: (407...408) = "="
        │   │   │   │   └── value:
        │   │   │   │       @ IntegerNode (location: (409...410))
        │   │   │   │       └── flags: decimal
        │   │   │   └── @ OptionalParameterNode (location: (412...417))
        │   │   │       ├── name: :c
        │   │   │       ├── name_loc: (412...413) = "c"
        │   │   │       ├── operator_loc: (414...415) = "="
        │   │   │       └── value:
        │   │   │           @ IntegerNode (location: (416...417))
        │   │   │           └── flags: decimal
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:b, :c]
        │   ├── def_keyword_loc: (399...402) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (418...421) = "end"
        ├── @ DefNode (location: (423...434))
        │   ├── name: :a
        │   ├── name_loc: (427...428) = "a"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (423...426) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (428...429) = "("
        │   ├── rparen_loc: (429...430) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (431...434) = "end"
        ├── @ DefNode (location: (436...454))
        │   ├── name: :a
        │   ├── name_loc: (440...441) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (442...450))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ RequiredParameterNode (location: (442...443))
        │   │   │       └── name: :b
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (445...450))
        │   │   │       ├── name: :c
        │   │   │       ├── name_loc: (445...446) = "c"
        │   │   │       ├── operator_loc: (447...448) = "="
        │   │   │       └── value:
        │   │   │           @ IntegerNode (location: (449...450))
        │   │   │           └── flags: decimal
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:b, :c]
        │   ├── def_keyword_loc: (436...439) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (451...454) = "end"
        ├── @ DefNode (location: (456...467))
        │   ├── name: :a
        │   ├── name_loc: (460...461) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (462...463))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ RequiredParameterNode (location: (462...463))
        │   │   │       └── name: :b
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:b]
        │   ├── def_keyword_loc: (456...459) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (464...467) = "end"
        ├── @ DefNode (location: (469...501))
        │   ├── name: :a
        │   ├── name_loc: (473...474) = "a"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ BeginNode (location: (476...501))
        │   │   ├── begin_keyword_loc: ∅
        │   │   ├── statements: ∅
        │   │   ├── rescue_clause:
        │   │   │   @ RescueNode (location: (476...482))
        │   │   │   ├── keyword_loc: (476...482) = "rescue"
        │   │   │   ├── exceptions: (length: 0)
        │   │   │   ├── operator_loc: ∅
        │   │   │   ├── reference: ∅
        │   │   │   ├── statements: ∅
        │   │   │   └── consequent: ∅
        │   │   ├── else_clause:
        │   │   │   @ ElseNode (location: (484...496))
        │   │   │   ├── else_keyword_loc: (484...488) = "else"
        │   │   │   ├── statements: ∅
        │   │   │   └── end_keyword_loc: (490...496) = "ensure"
        │   │   ├── ensure_clause:
        │   │   │   @ EnsureNode (location: (490...501))
        │   │   │   ├── ensure_keyword_loc: (490...496) = "ensure"
        │   │   │   ├── statements: ∅
        │   │   │   └── end_keyword_loc: (498...501) = "end"
        │   │   └── end_keyword_loc: (498...501) = "end"
        │   ├── locals: []
        │   ├── def_keyword_loc: (469...472) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (498...501) = "end"
        ├── @ DefNode (location: (503...515))
        │   ├── name: :a
        │   ├── name_loc: (507...508) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (509...511))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest:
        │   │   │   @ RestParameterNode (location: (509...511))
        │   │   │   ├── name: :b
        │   │   │   ├── name_loc: (510...511) = "b"
        │   │   │   └── operator_loc: (509...510) = "*"
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:b]
        │   ├── def_keyword_loc: (503...506) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (512...515) = "end"
        ├── @ DefNode (location: (517...529))
        │   ├── name: :a
        │   ├── name_loc: (521...522) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (523...524))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest:
        │   │   │   @ RestParameterNode (location: (523...524))
        │   │   │   ├── name: nil
        │   │   │   ├── name_loc: ∅
        │   │   │   └── operator_loc: (523...524) = "*"
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:*]
        │   ├── def_keyword_loc: (517...520) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (522...523) = "("
        │   ├── rparen_loc: (524...525) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (526...529) = "end"
        ├── @ DefNode (location: (531...546))
        │   ├── name: :a
        │   ├── name_loc: (535...536) = "a"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (537...542))
        │   │   └── body: (length: 1)
        │   │       └── @ LocalVariableWriteNode (location: (537...542))
        │   │           ├── name: :b
        │   │           ├── depth: 0
        │   │           ├── name_loc: (537...538) = "b"
        │   │           ├── value:
        │   │           │   @ IntegerNode (location: (541...542))
        │   │           │   └── flags: decimal
        │   │           └── operator_loc: (539...540) = "="
        │   ├── locals: [:b]
        │   ├── def_keyword_loc: (531...534) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (543...546) = "end"
        ├── @ DefNode (location: (548...562))
        │   ├── name: :a
        │   ├── name_loc: (557...558) = "a"
        │   ├── receiver:
        │   │   @ SelfNode (location: (552...556))
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (548...551) = "def"
        │   ├── operator_loc: (556...557) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (559...562) = "end"
        ├── @ DefNode (location: (564...578))
        │   ├── name: :a
        │   ├── name_loc: (573...574) = "a"
        │   ├── receiver:
        │   │   @ TrueNode (location: (568...572))
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (564...567) = "def"
        │   ├── operator_loc: (572...573) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (575...578) = "end"
        ├── @ DefNode (location: (580...589))
        │   ├── name: :a
        │   ├── name_loc: (584...585) = "a"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (580...583) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (586...589) = "end"
        ├── @ DefNode (location: (591...625))
        │   ├── name: :hi
        │   ├── name_loc: (595...597) = "hi"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (598...621))
        │   │   └── body: (length: 2)
        │   │       ├── @ IfNode (location: (598...616))
        │   │       │   ├── if_keyword_loc: (609...611) = "if"
        │   │       │   ├── predicate:
        │   │       │   │   @ TrueNode (location: (612...616))
        │   │       │   ├── statements:
        │   │       │   │   @ StatementsNode (location: (598...608))
        │   │       │   │   └── body: (length: 1)
        │   │       │   │       └── @ ReturnNode (location: (598...608))
        │   │       │   │           ├── keyword_loc: (598...604) = "return"
        │   │       │   │           └── arguments:
        │   │       │   │               @ ArgumentsNode (location: (605...608))
        │   │       │   │               └── arguments: (length: 1)
        │   │       │   │                   └── @ SymbolNode (location: (605...608))
        │   │       │   │                       ├── opening_loc: (605...606) = ":"
        │   │       │   │                       ├── value_loc: (606...608) = "hi"
        │   │       │   │                       ├── closing_loc: ∅
        │   │       │   │                       └── unescaped: "hi"
        │   │       │   ├── consequent: ∅
        │   │       │   └── end_keyword_loc: ∅
        │   │       └── @ SymbolNode (location: (617...621))
        │   │           ├── opening_loc: (617...618) = ":"
        │   │           ├── value_loc: (618...621) = "bye"
        │   │           ├── closing_loc: ∅
        │   │           └── unescaped: "bye"
        │   ├── locals: []
        │   ├── def_keyword_loc: (591...594) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (622...625) = "end"
        ├── @ DefNode (location: (627...638))
        │   ├── name: :foo
        │   ├── name_loc: (631...634) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (637...638))
        │   │   └── body: (length: 1)
        │   │       └── @ IntegerNode (location: (637...638))
        │   │           └── flags: decimal
        │   ├── locals: []
        │   ├── def_keyword_loc: (627...630) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: (635...636) = "="
        │   └── end_keyword_loc: ∅
        ├── @ DefNode (location: (639...650))
        │   ├── name: :bar
        │   ├── name_loc: (643...646) = "bar"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (649...650))
        │   │   └── body: (length: 1)
        │   │       └── @ IntegerNode (location: (649...650))
        │   │           └── flags: decimal
        │   ├── locals: []
        │   ├── def_keyword_loc: (639...642) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: (647...648) = "="
        │   └── end_keyword_loc: ∅
        ├── @ DefNode (location: (652...670))
        │   ├── name: :foo
        │   ├── name_loc: (656...659) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (660...663))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ RequiredParameterNode (location: (660...663))
        │   │   │       └── name: :bar
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (667...670))
        │   │   └── body: (length: 1)
        │   │       └── @ IntegerNode (location: (667...670))
        │   │           └── flags: decimal
        │   ├── locals: [:bar]
        │   ├── def_keyword_loc: (652...655) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (659...660) = "("
        │   ├── rparen_loc: (663...664) = ")"
        │   ├── equal_loc: (665...666) = "="
        │   └── end_keyword_loc: ∅
        ├── @ DefNode (location: (672...685))
        │   ├── name: :foo
        │   ├── name_loc: (676...679) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (682...685))
        │   │   └── body: (length: 1)
        │   │       └── @ IntegerNode (location: (682...685))
        │   │           └── flags: decimal
        │   ├── locals: []
        │   ├── def_keyword_loc: (672...675) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: (680...681) = "="
        │   └── end_keyword_loc: ∅
        ├── @ DefNode (location: (687...706))
        │   ├── name: :a
        │   ├── name_loc: (691...692) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (693...694))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest:
        │   │   │   @ RestParameterNode (location: (693...694))
        │   │   │   ├── name: nil
        │   │   │   ├── name_loc: ∅
        │   │   │   └── operator_loc: (693...694) = "*"
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (697...701))
        │   │   └── body: (length: 1)
        │   │       └── @ CallNode (location: (697...701))
        │   │           ├── receiver: ∅
        │   │           ├── call_operator_loc: ∅
        │   │           ├── message_loc: (697...698) = "b"
        │   │           ├── opening_loc: (698...699) = "("
        │   │           ├── arguments:
        │   │           │   @ ArgumentsNode (location: (699...700))
        │   │           │   └── arguments: (length: 1)
        │   │           │       └── @ SplatNode (location: (699...700))
        │   │           │           ├── operator_loc: (699...700) = "*"
        │   │           │           └── expression: ∅
        │   │           ├── closing_loc: (700...701) = ")"
        │   │           ├── block: ∅
        │   │           ├── flags: 
        │   │           └── name: "b"
        │   ├── locals: [:*]
        │   ├── def_keyword_loc: (687...690) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (692...693) = "("
        │   ├── rparen_loc: (694...695) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (703...706) = "end"
        ├── @ DefNode (location: (708...731))
        │   ├── name: :a
        │   ├── name_loc: (712...713) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (714...717))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest:
        │   │   │   @ ForwardingParameterNode (location: (714...717))
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (720...726))
        │   │   └── body: (length: 1)
        │   │       └── @ CallNode (location: (720...726))
        │   │           ├── receiver: ∅
        │   │           ├── call_operator_loc: ∅
        │   │           ├── message_loc: (720...721) = "b"
        │   │           ├── opening_loc: (721...722) = "("
        │   │           ├── arguments:
        │   │           │   @ ArgumentsNode (location: (722...725))
        │   │           │   └── arguments: (length: 1)
        │   │           │       └── @ ForwardingArgumentsNode (location: (722...725))
        │   │           ├── closing_loc: (725...726) = ")"
        │   │           ├── block: ∅
        │   │           ├── flags: 
        │   │           └── name: "b"
        │   ├── locals: [:"..."]
        │   ├── def_keyword_loc: (708...711) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (713...714) = "("
        │   ├── rparen_loc: (717...718) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (728...731) = "end"
        ├── @ DefNode (location: (733...762))
        │   ├── name: :a
        │   ├── name_loc: (737...738) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (739...742))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest:
        │   │   │   @ ForwardingParameterNode (location: (739...742))
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (745...757))
        │   │   └── body: (length: 1)
        │   │       └── @ CallNode (location: (745...757))
        │   │           ├── receiver: ∅
        │   │           ├── call_operator_loc: ∅
        │   │           ├── message_loc: (745...746) = "b"
        │   │           ├── opening_loc: (746...747) = "("
        │   │           ├── arguments:
        │   │           │   @ ArgumentsNode (location: (747...756))
        │   │           │   └── arguments: (length: 3)
        │   │           │       ├── @ IntegerNode (location: (747...748))
        │   │           │       │   └── flags: decimal
        │   │           │       ├── @ IntegerNode (location: (750...751))
        │   │           │       │   └── flags: decimal
        │   │           │       └── @ ForwardingArgumentsNode (location: (753...756))
        │   │           ├── closing_loc: (756...757) = ")"
        │   │           ├── block: ∅
        │   │           ├── flags: 
        │   │           └── name: "b"
        │   ├── locals: [:"..."]
        │   ├── def_keyword_loc: (733...736) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (738...739) = "("
        │   ├── rparen_loc: (742...743) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (759...762) = "end"
        ├── @ DefNode (location: (764...781))
        │   ├── name: :a
        │   ├── name_loc: (776...777) = "a"
        │   ├── receiver:
        │   │   @ ParenthesesNode (location: (768...775))
        │   │   ├── body:
        │   │   │   @ LocalVariableWriteNode (location: (769...774))
        │   │   │   ├── name: :c
        │   │   │   ├── depth: 0
        │   │   │   ├── name_loc: (769...770) = "c"
        │   │   │   ├── value:
        │   │   │   │   @ CallNode (location: (773...774))
        │   │   │   │   ├── receiver: ∅
        │   │   │   │   ├── call_operator_loc: ∅
        │   │   │   │   ├── message_loc: (773...774) = "b"
        │   │   │   │   ├── opening_loc: ∅
        │   │   │   │   ├── arguments: ∅
        │   │   │   │   ├── closing_loc: ∅
        │   │   │   │   ├── block: ∅
        │   │   │   │   ├── flags: variable_call
        │   │   │   │   └── name: "b"
        │   │   │   └── operator_loc: (771...772) = "="
        │   │   ├── opening_loc: (768...769) = "("
        │   │   └── closing_loc: (774...775) = ")"
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (764...767) = "def"
        │   ├── operator_loc: (775...776) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (778...781) = "end"
        ├── @ DefNode (location: (783...795))
        │   ├── name: :a
        │   ├── name_loc: (787...788) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (789...791))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block:
        │   │       @ BlockParameterNode (location: (789...791))
        │   │       ├── name: :b
        │   │       ├── name_loc: (790...791) = "b"
        │   │       └── operator_loc: (789...790) = "&"
        │   ├── body: ∅
        │   ├── locals: [:b]
        │   ├── def_keyword_loc: (783...786) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (792...795) = "end"
        ├── @ DefNode (location: (797...809))
        │   ├── name: :a
        │   ├── name_loc: (801...802) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (803...804))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block:
        │   │       @ BlockParameterNode (location: (803...804))
        │   │       ├── name: nil
        │   │       ├── name_loc: ∅
        │   │       └── operator_loc: (803...804) = "&"
        │   ├── body: ∅
        │   ├── locals: [:&]
        │   ├── def_keyword_loc: (797...800) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (802...803) = "("
        │   ├── rparen_loc: (804...805) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (806...809) = "end"
        ├── @ DefNode (location: (811...826))
        │   ├── name: :a
        │   ├── name_loc: (821...822) = "a"
        │   ├── receiver:
        │   │   @ ClassVariableReadNode (location: (815...820))
        │   │   └── name: :@@var
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (811...814) = "def"
        │   ├── operator_loc: (820...821) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (823...826) = "end"
        ├── @ DefNode (location: (828...845))
        │   ├── name: :C
        │   ├── name_loc: (840...841) = "C"
        │   ├── receiver:
        │   │   @ ParenthesesNode (location: (832...839))
        │   │   ├── body:
        │   │   │   @ LocalVariableWriteNode (location: (833...838))
        │   │   │   ├── name: :a
        │   │   │   ├── depth: 0
        │   │   │   ├── name_loc: (833...834) = "a"
        │   │   │   ├── value:
        │   │   │   │   @ CallNode (location: (837...838))
        │   │   │   │   ├── receiver: ∅
        │   │   │   │   ├── call_operator_loc: ∅
        │   │   │   │   ├── message_loc: (837...838) = "b"
        │   │   │   │   ├── opening_loc: ∅
        │   │   │   │   ├── arguments: ∅
        │   │   │   │   ├── closing_loc: ∅
        │   │   │   │   ├── block: ∅
        │   │   │   │   ├── flags: variable_call
        │   │   │   │   └── name: "b"
        │   │   │   └── operator_loc: (835...836) = "="
        │   │   ├── opening_loc: (832...833) = "("
        │   │   └── closing_loc: (838...839) = ")"
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (828...831) = "def"
        │   ├── operator_loc: (839...840) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (842...845) = "end"
        ├── @ DefNode (location: (847...875))
        │   ├── name: :Array_function
        │   ├── name_loc: (856...870) = "Array_function"
        │   ├── receiver:
        │   │   @ SelfNode (location: (851...855))
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (847...850) = "def"
        │   ├── operator_loc: (855...856) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (872...875) = "end"
        ├── @ ConstantWriteNode (location: (877...886))
        │   ├── name: :Const
        │   ├── name_loc: (877...882) = "Const"
        │   ├── value:
        │   │   @ IntegerNode (location: (885...886))
        │   │   └── flags: decimal
        │   └── operator_loc: (883...884) = "="
        ├── @ DefNode (location: (888...903))
        │   ├── name: :a
        │   ├── name_loc: (898...899) = "a"
        │   ├── receiver:
        │   │   @ ConstantReadNode (location: (892...897))
        │   │   └── name: :Const
        │   ├── parameters: ∅
        │   ├── body: ∅
        │   ├── locals: []
        │   ├── def_keyword_loc: (888...891) = "def"
        │   ├── operator_loc: (897...898) = "."
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (900...903) = "end"
        ├── @ DefNode (location: (905...936))
        │   ├── name: :a
        │   ├── name_loc: (909...910) = "a"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (911...914))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest:
        │   │   │   @ ForwardingParameterNode (location: (911...914))
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (917...931))
        │   │   └── body: (length: 1)
        │   │       └── @ InterpolatedStringNode (location: (917...931))
        │   │           ├── opening_loc: (917...918) = "\""
        │   │           ├── parts: (length: 2)
        │   │           │   ├── @ StringNode (location: (918...921))
        │   │           │   │   ├── opening_loc: ∅
        │   │           │   │   ├── content_loc: (918...921) = "foo"
        │   │           │   │   ├── closing_loc: ∅
        │   │           │   │   └── unescaped: "foo"
        │   │           │   └── @ EmbeddedStatementsNode (location: (921...930))
        │   │           │       ├── opening_loc: (921...923) = "\#{"
        │   │           │       ├── statements:
        │   │           │       │   @ StatementsNode (location: (923...929))
        │   │           │       │   └── body: (length: 1)
        │   │           │       │       └── @ CallNode (location: (923...929))
        │   │           │       │           ├── receiver: ∅
        │   │           │       │           ├── call_operator_loc: ∅
        │   │           │       │           ├── message_loc: (923...924) = "b"
        │   │           │       │           ├── opening_loc: (924...925) = "("
        │   │           │       │           ├── arguments:
        │   │           │       │           │   @ ArgumentsNode (location: (925...928))
        │   │           │       │           │   └── arguments: (length: 1)
        │   │           │       │           │       └── @ ForwardingArgumentsNode (location: (925...928))
        │   │           │       │           ├── closing_loc: (928...929) = ")"
        │   │           │       │           ├── block: ∅
        │   │           │       │           ├── flags: 
        │   │           │       │           └── name: "b"
        │   │           │       └── closing_loc: (929...930) = "}"
        │   │           └── closing_loc: (930...931) = "\""
        │   ├── locals: [:"..."]
        │   ├── def_keyword_loc: (905...908) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (910...911) = "("
        │   ├── rparen_loc: (914...915) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (933...936) = "end"
        ├── @ DefNode (location: (938...980))
        │   ├── name: :foo
        │   ├── name_loc: (942...945) = "foo"
        │   ├── receiver: ∅
        │   ├── parameters: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (948...976))
        │   │   └── body: (length: 1)
        │   │       └── @ CallNode (location: (948...976))
        │   │           ├── receiver:
        │   │           │   @ HashNode (location: (948...950))
        │   │           │   ├── opening_loc: (948...949) = "{"
        │   │           │   ├── elements: (length: 0)
        │   │           │   └── closing_loc: (949...950) = "}"
        │   │           ├── call_operator_loc: (950...951) = "."
        │   │           ├── message_loc: (951...956) = "merge"
        │   │           ├── opening_loc: ∅
        │   │           ├── arguments:
        │   │           │   @ ArgumentsNode (location: (957...976))
        │   │           │   └── arguments: (length: 1)
        │   │           │       └── @ KeywordHashNode (location: (957...976))
        │   │           │           └── elements: (length: 3)
        │   │           │               ├── @ AssocSplatNode (location: (957...962))
        │   │           │               │   ├── value:
        │   │           │               │   │   @ CallNode (location: (959...962))
        │   │           │               │   │   ├── receiver: ∅
        │   │           │               │   │   ├── call_operator_loc: ∅
        │   │           │               │   │   ├── message_loc: (959...962) = "bar"
        │   │           │               │   │   ├── opening_loc: ∅
        │   │           │               │   │   ├── arguments: ∅
        │   │           │               │   │   ├── closing_loc: ∅
        │   │           │               │   │   ├── block: ∅
        │   │           │               │   │   ├── flags: variable_call
        │   │           │               │   │   └── name: "bar"
        │   │           │               │   └── operator_loc: (957...959) = "**"
        │   │           │               ├── @ AssocSplatNode (location: (964...969))
        │   │           │               │   ├── value:
        │   │           │               │   │   @ CallNode (location: (966...969))
        │   │           │               │   │   ├── receiver: ∅
        │   │           │               │   │   ├── call_operator_loc: ∅
        │   │           │               │   │   ├── message_loc: (966...969) = "baz"
        │   │           │               │   │   ├── opening_loc: ∅
        │   │           │               │   │   ├── arguments: ∅
        │   │           │               │   │   ├── closing_loc: ∅
        │   │           │               │   │   ├── block: ∅
        │   │           │               │   │   ├── flags: variable_call
        │   │           │               │   │   └── name: "baz"
        │   │           │               │   └── operator_loc: (964...966) = "**"
        │   │           │               └── @ AssocSplatNode (location: (971...976))
        │   │           │                   ├── value:
        │   │           │                   │   @ CallNode (location: (973...976))
        │   │           │                   │   ├── receiver: ∅
        │   │           │                   │   ├── call_operator_loc: ∅
        │   │           │                   │   ├── message_loc: (973...976) = "qux"
        │   │           │                   │   ├── opening_loc: ∅
        │   │           │                   │   ├── arguments: ∅
        │   │           │                   │   ├── closing_loc: ∅
        │   │           │                   │   ├── block: ∅
        │   │           │                   │   ├── flags: variable_call
        │   │           │                   │   └── name: "qux"
        │   │           │                   └── operator_loc: (971...973) = "**"
        │   │           ├── closing_loc: ∅
        │   │           ├── block: ∅
        │   │           ├── flags: 
        │   │           └── name: "merge"
        │   ├── locals: []
        │   ├── def_keyword_loc: (938...941) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: ∅
        │   ├── rparen_loc: ∅
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (977...980) = "end"
        ├── @ DefNode (location: (982...1006))
        │   ├── name: :bar
        │   ├── name_loc: (986...989) = "bar"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (990...1001))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 1)
        │   │   │   └── @ KeywordParameterNode (location: (990...1001))
        │   │   │       ├── name: :a
        │   │   │       ├── name_loc: (990...992) = "a:"
        │   │   │       └── value:
        │   │   │           @ ParenthesesNode (location: (993...1001))
        │   │   │           ├── body:
        │   │   │           │   @ StatementsNode (location: (994...1000))
        │   │   │           │   └── body: (length: 1)
        │   │   │           │       └── @ RangeNode (location: (994...1000))
        │   │   │           │           ├── left:
        │   │   │           │           │   @ IntegerNode (location: (994...995))
        │   │   │           │           │   └── flags: decimal
        │   │   │           │           ├── right:
        │   │   │           │           │   @ IntegerNode (location: (998...1000))
        │   │   │           │           │   └── flags: decimal
        │   │   │           │           ├── operator_loc: (995...998) = "..."
        │   │   │           │           └── flags: exclude_end
        │   │   │           ├── opening_loc: (993...994) = "("
        │   │   │           └── closing_loc: (1000...1001) = ")"
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:a]
        │   ├── def_keyword_loc: (982...985) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (989...990) = "("
        │   ├── rparen_loc: (1001...1002) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (1003...1006) = "end"
        ├── @ DefNode (location: (1008...1031))
        │   ├── name: :bar
        │   ├── name_loc: (1012...1015) = "bar"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (1016...1026))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 1)
        │   │   │   └── @ KeywordParameterNode (location: (1016...1026))
        │   │   │       ├── name: :a
        │   │   │       ├── name_loc: (1016...1018) = "a:"
        │   │   │       └── value:
        │   │   │           @ ParenthesesNode (location: (1019...1026))
        │   │   │           ├── body:
        │   │   │           │   @ StatementsNode (location: (1020...1025))
        │   │   │           │   └── body: (length: 1)
        │   │   │           │       └── @ RangeNode (location: (1020...1025))
        │   │   │           │           ├── left: ∅
        │   │   │           │           ├── right:
        │   │   │           │           │   @ IntegerNode (location: (1023...1025))
        │   │   │           │           │   └── flags: decimal
        │   │   │           │           ├── operator_loc: (1020...1023) = "..."
        │   │   │           │           └── flags: exclude_end
        │   │   │           ├── opening_loc: (1019...1020) = "("
        │   │   │           └── closing_loc: (1025...1026) = ")"
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:a]
        │   ├── def_keyword_loc: (1008...1011) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (1015...1016) = "("
        │   ├── rparen_loc: (1026...1027) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (1028...1031) = "end"
        ├── @ DefNode (location: (1033...1055))
        │   ├── name: :bar
        │   ├── name_loc: (1037...1040) = "bar"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (1041...1050))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 1)
        │   │   │   └── @ KeywordParameterNode (location: (1041...1050))
        │   │   │       ├── name: :a
        │   │   │       ├── name_loc: (1041...1043) = "a:"
        │   │   │       └── value:
        │   │   │           @ ParenthesesNode (location: (1044...1050))
        │   │   │           ├── body:
        │   │   │           │   @ StatementsNode (location: (1045...1049))
        │   │   │           │   └── body: (length: 1)
        │   │   │           │       └── @ RangeNode (location: (1045...1049))
        │   │   │           │           ├── left:
        │   │   │           │           │   @ IntegerNode (location: (1045...1046))
        │   │   │           │           │   └── flags: decimal
        │   │   │           │           ├── right: ∅
        │   │   │           │           ├── operator_loc: (1046...1049) = "..."
        │   │   │           │           └── flags: exclude_end
        │   │   │           ├── opening_loc: (1044...1045) = "("
        │   │   │           └── closing_loc: (1049...1050) = ")"
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:a]
        │   ├── def_keyword_loc: (1033...1036) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (1040...1041) = "("
        │   ├── rparen_loc: (1050...1051) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (1052...1055) = "end"
        ├── @ DefNode (location: (1057...1082))
        │   ├── name: :bar
        │   ├── name_loc: (1061...1064) = "bar"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (1065...1077))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (1065...1077))
        │   │   │       ├── name: :a
        │   │   │       ├── name_loc: (1065...1066) = "a"
        │   │   │       ├── operator_loc: (1067...1068) = "="
        │   │   │       └── value:
        │   │   │           @ ParenthesesNode (location: (1069...1077))
        │   │   │           ├── body:
        │   │   │           │   @ StatementsNode (location: (1070...1076))
        │   │   │           │   └── body: (length: 1)
        │   │   │           │       └── @ RangeNode (location: (1070...1076))
        │   │   │           │           ├── left:
        │   │   │           │           │   @ IntegerNode (location: (1070...1071))
        │   │   │           │           │   └── flags: decimal
        │   │   │           │           ├── right:
        │   │   │           │           │   @ IntegerNode (location: (1074...1076))
        │   │   │           │           │   └── flags: decimal
        │   │   │           │           ├── operator_loc: (1071...1074) = "..."
        │   │   │           │           └── flags: exclude_end
        │   │   │           ├── opening_loc: (1069...1070) = "("
        │   │   │           └── closing_loc: (1076...1077) = ")"
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:a]
        │   ├── def_keyword_loc: (1057...1060) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (1064...1065) = "("
        │   ├── rparen_loc: (1077...1078) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (1079...1082) = "end"
        ├── @ DefNode (location: (1084...1108))
        │   ├── name: :bar
        │   ├── name_loc: (1088...1091) = "bar"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (1092...1103))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (1092...1103))
        │   │   │       ├── name: :a
        │   │   │       ├── name_loc: (1092...1093) = "a"
        │   │   │       ├── operator_loc: (1094...1095) = "="
        │   │   │       └── value:
        │   │   │           @ ParenthesesNode (location: (1096...1103))
        │   │   │           ├── body:
        │   │   │           │   @ StatementsNode (location: (1097...1102))
        │   │   │           │   └── body: (length: 1)
        │   │   │           │       └── @ RangeNode (location: (1097...1102))
        │   │   │           │           ├── left: ∅
        │   │   │           │           ├── right:
        │   │   │           │           │   @ IntegerNode (location: (1100...1102))
        │   │   │           │           │   └── flags: decimal
        │   │   │           │           ├── operator_loc: (1097...1100) = "..."
        │   │   │           │           └── flags: exclude_end
        │   │   │           ├── opening_loc: (1096...1097) = "("
        │   │   │           └── closing_loc: (1102...1103) = ")"
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:a]
        │   ├── def_keyword_loc: (1084...1087) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (1091...1092) = "("
        │   ├── rparen_loc: (1103...1104) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (1105...1108) = "end"
        ├── @ DefNode (location: (1110...1133))
        │   ├── name: :bar
        │   ├── name_loc: (1114...1117) = "bar"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (1118...1128))
        │   │   ├── requireds: (length: 0)
        │   │   ├── optionals: (length: 1)
        │   │   │   └── @ OptionalParameterNode (location: (1118...1128))
        │   │   │       ├── name: :a
        │   │   │       ├── name_loc: (1118...1119) = "a"
        │   │   │       ├── operator_loc: (1120...1121) = "="
        │   │   │       └── value:
        │   │   │           @ ParenthesesNode (location: (1122...1128))
        │   │   │           ├── body:
        │   │   │           │   @ StatementsNode (location: (1123...1127))
        │   │   │           │   └── body: (length: 1)
        │   │   │           │       └── @ RangeNode (location: (1123...1127))
        │   │   │           │           ├── left:
        │   │   │           │           │   @ IntegerNode (location: (1123...1124))
        │   │   │           │           │   └── flags: decimal
        │   │   │           │           ├── right: ∅
        │   │   │           │           ├── operator_loc: (1124...1127) = "..."
        │   │   │           │           └── flags: exclude_end
        │   │   │           ├── opening_loc: (1122...1123) = "("
        │   │   │           └── closing_loc: (1127...1128) = ")"
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body: ∅
        │   ├── locals: [:a]
        │   ├── def_keyword_loc: (1110...1113) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (1117...1118) = "("
        │   ├── rparen_loc: (1128...1129) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (1130...1133) = "end"
        ├── @ DefNode (location: (1135...1167))
        │   ├── name: :method
        │   ├── name_loc: (1139...1145) = "method"
        │   ├── receiver: ∅
        │   ├── parameters:
        │   │   @ ParametersNode (location: (1146...1147))
        │   │   ├── requireds: (length: 1)
        │   │   │   └── @ RequiredParameterNode (location: (1146...1147))
        │   │   │       └── name: :a
        │   │   ├── optionals: (length: 0)
        │   │   ├── posts: (length: 0)
        │   │   ├── rest: ∅
        │   │   ├── keywords: (length: 0)
        │   │   ├── keyword_rest: ∅
        │   │   └── block: ∅
        │   ├── body:
        │   │   @ StatementsNode (location: (1151...1163))
        │   │   └── body: (length: 1)
        │   │       └── @ CallNode (location: (1151...1163))
        │   │           ├── receiver:
        │   │           │   @ CallNode (location: (1151...1155))
        │   │           │   ├── receiver: ∅
        │   │           │   ├── call_operator_loc: ∅
        │   │           │   ├── message_loc: (1151...1155) = "item"
        │   │           │   ├── opening_loc: ∅
        │   │           │   ├── arguments: ∅
        │   │           │   ├── closing_loc: ∅
        │   │           │   ├── block: ∅
        │   │           │   ├── flags: variable_call
        │   │           │   └── name: "item"
        │   │           ├── call_operator_loc: ∅
        │   │           ├── message_loc: (1156...1158) = ">>"
        │   │           ├── opening_loc: ∅
        │   │           ├── arguments:
        │   │           │   @ ArgumentsNode (location: (1159...1163))
        │   │           │   └── arguments: (length: 1)
        │   │           │       └── @ CallNode (location: (1159...1163))
        │   │           │           ├── receiver: ∅
        │   │           │           ├── call_operator_loc: ∅
        │   │           │           ├── message_loc: (1159...1160) = "a"
        │   │           │           ├── opening_loc: ∅
        │   │           │           ├── arguments: ∅
        │   │           │           ├── closing_loc: ∅
        │   │           │           ├── block:
        │   │           │           │   @ BlockNode (location: (1161...1163))
        │   │           │           │   ├── locals: []
        │   │           │           │   ├── parameters: ∅
        │   │           │           │   ├── body: ∅
        │   │           │           │   ├── opening_loc: (1161...1162) = "{"
        │   │           │           │   └── closing_loc: (1162...1163) = "}"
        │   │           │           ├── flags: 
        │   │           │           └── name: "a"
        │   │           ├── closing_loc: ∅
        │   │           ├── block: ∅
        │   │           ├── flags: 
        │   │           └── name: ">>"
        │   ├── locals: [:a]
        │   ├── def_keyword_loc: (1135...1138) = "def"
        │   ├── operator_loc: ∅
        │   ├── lparen_loc: (1145...1146) = "("
        │   ├── rparen_loc: (1147...1148) = ")"
        │   ├── equal_loc: ∅
        │   └── end_keyword_loc: (1164...1167) = "end"
        └── @ DefNode (location: (1169...1194))
            ├── name: :foo
            ├── name_loc: (1173...1176) = "foo"
            ├── receiver: ∅
            ├── parameters:
            │   @ ParametersNode (location: (1177...1189))
            │   ├── requireds: (length: 4)
            │   │   ├── @ RequiredParameterNode (location: (1177...1179))
            │   │   │   └── name: :_a
            │   │   ├── @ RequiredParameterNode (location: (1181...1183))
            │   │   │   └── name: :_a
            │   │   ├── @ RequiredParameterNode (location: (1185...1186))
            │   │   │   └── name: :b
            │   │   └── @ RequiredParameterNode (location: (1188...1189))
            │   │       └── name: :c
            │   ├── optionals: (length: 0)
            │   ├── posts: (length: 0)
            │   ├── rest: ∅
            │   ├── keywords: (length: 0)
            │   ├── keyword_rest: ∅
            │   └── block: ∅
            ├── body: ∅
            ├── locals: [:_a, :b, :c]
            ├── def_keyword_loc: (1169...1172) = "def"
            ├── operator_loc: ∅
            ├── lparen_loc: (1176...1177) = "("
            ├── rparen_loc: (1189...1190) = ")"
            ├── equal_loc: ∅
            └── end_keyword_loc: (1191...1194) = "end"