summaryrefslogtreecommitdiff
path: root/test/prism/snapshots/unparser/corpus/literal/literal.txt
blob: dcf00bf4e09ae318294c1fc0c22e9f29aa585c23 (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
@ ProgramNode (location: (1,0)-(91,2))
├── locals: []
└── statements:
    @ StatementsNode (location: (1,0)-(91,2))
    └── body: (length: 78)
        ├── @ HashNode (location: (1,0)-(1,38))
        │   ├── opening_loc: (1,0)-(1,1) = "{"
        │   ├── elements: (length: 2)
        │   │   ├── @ AssocNode (location: (1,2)-(1,21))
        │   │   │   ├── key:
        │   │   │   │   @ StringNode (location: (1,2)-(1,7))
        │   │   │   │   ├── flags: frozen
        │   │   │   │   ├── opening_loc: (1,2)-(1,3) = "\""
        │   │   │   │   ├── content_loc: (1,3)-(1,6) = "foo"
        │   │   │   │   ├── closing_loc: (1,6)-(1,7) = "\""
        │   │   │   │   └── unescaped: "foo"
        │   │   │   ├── value:
        │   │   │   │   @ InterpolatedStringNode (location: (1,11)-(1,21))
        │   │   │   │   ├── flags: ∅
        │   │   │   │   ├── opening_loc: (1,11)-(1,21) = "<<-HEREDOC"
        │   │   │   │   ├── parts: (length: 3)
        │   │   │   │   │   ├── @ StringNode (location: (2,0)-(2,2))
        │   │   │   │   │   │   ├── flags: frozen
        │   │   │   │   │   │   ├── opening_loc: ∅
        │   │   │   │   │   │   ├── content_loc: (2,0)-(2,2) = "  "
        │   │   │   │   │   │   ├── closing_loc: ∅
        │   │   │   │   │   │   └── unescaped: "  "
        │   │   │   │   │   ├── @ EmbeddedStatementsNode (location: (2,2)-(2,5))
        │   │   │   │   │   │   ├── opening_loc: (2,2)-(2,4) = "\#{"
        │   │   │   │   │   │   ├── statements: ∅
        │   │   │   │   │   │   └── closing_loc: (2,4)-(2,5) = "}"
        │   │   │   │   │   └── @ StringNode (location: (2,5)-(3,0))
        │   │   │   │   │       ├── flags: frozen
        │   │   │   │   │       ├── opening_loc: ∅
        │   │   │   │   │       ├── content_loc: (2,5)-(3,0) = "\n"
        │   │   │   │   │       ├── closing_loc: ∅
        │   │   │   │   │       └── unescaped: "\n"
        │   │   │   │   └── closing_loc: (3,0)-(4,0) = "HEREDOC\n"
        │   │   │   └── operator_loc: (1,8)-(1,10) = "=>"
        │   │   └── @ AssocNode (location: (1,23)-(1,36))
        │   │       ├── key:
        │   │       │   @ StringNode (location: (1,23)-(1,28))
        │   │       │   ├── flags: frozen
        │   │       │   ├── opening_loc: (1,23)-(1,24) = "\""
        │   │       │   ├── content_loc: (1,24)-(1,27) = "bar"
        │   │       │   ├── closing_loc: (1,27)-(1,28) = "\""
        │   │       │   └── unescaped: "bar"
        │   │       ├── value:
        │   │       │   @ SymbolNode (location: (1,32)-(1,36))
        │   │       │   ├── flags: forced_us_ascii_encoding
        │   │       │   ├── opening_loc: (1,32)-(1,33) = ":"
        │   │       │   ├── value_loc: (1,33)-(1,36) = "baz"
        │   │       │   ├── closing_loc: ∅
        │   │       │   └── unescaped: "baz"
        │   │       └── operator_loc: (1,29)-(1,31) = "=>"
        │   └── closing_loc: (1,37)-(1,38) = "}"
        ├── @ HashNode (location: (4,0)-(4,31))
        │   ├── opening_loc: (4,0)-(4,1) = "{"
        │   ├── elements: (length: 2)
        │   │   ├── @ AssocNode (location: (4,2)-(4,14))
        │   │   │   ├── key:
        │   │   │   │   @ StringNode (location: (4,2)-(4,7))
        │   │   │   │   ├── flags: frozen
        │   │   │   │   ├── opening_loc: (4,2)-(4,3) = "\""
        │   │   │   │   ├── content_loc: (4,3)-(4,6) = "foo"
        │   │   │   │   ├── closing_loc: (4,6)-(4,7) = "\""
        │   │   │   │   └── unescaped: "foo"
        │   │   │   ├── value:
        │   │   │   │   @ StringNode (location: (4,11)-(4,14))
        │   │   │   │   ├── flags: ∅
        │   │   │   │   ├── opening_loc: (4,11)-(4,13) = "%("
        │   │   │   │   ├── content_loc: (4,13)-(4,13) = ""
        │   │   │   │   ├── closing_loc: (4,13)-(4,14) = ")"
        │   │   │   │   └── unescaped: ""
        │   │   │   └── operator_loc: (4,8)-(4,10) = "=>"
        │   │   └── @ AssocNode (location: (4,16)-(4,29))
        │   │       ├── key:
        │   │       │   @ StringNode (location: (4,16)-(4,21))
        │   │       │   ├── flags: frozen
        │   │       │   ├── opening_loc: (4,16)-(4,17) = "\""
        │   │       │   ├── content_loc: (4,17)-(4,20) = "bar"
        │   │       │   ├── closing_loc: (4,20)-(4,21) = "\""
        │   │       │   └── unescaped: "bar"
        │   │       ├── value:
        │   │       │   @ SymbolNode (location: (4,25)-(4,29))
        │   │       │   ├── flags: forced_us_ascii_encoding
        │   │       │   ├── opening_loc: (4,25)-(4,26) = ":"
        │   │       │   ├── value_loc: (4,26)-(4,29) = "baz"
        │   │       │   ├── closing_loc: ∅
        │   │       │   └── unescaped: "baz"
        │   │       └── operator_loc: (4,22)-(4,24) = "=>"
        │   └── closing_loc: (4,30)-(4,31) = "}"
        ├── @ ArrayNode (location: (5,0)-(5,12))
        │   ├── flags: ∅
        │   ├── elements: (length: 2)
        │   │   ├── @ StringNode (location: (5,1)-(5,6))
        │   │   │   ├── flags: ∅
        │   │   │   ├── opening_loc: (5,1)-(5,2) = "\""
        │   │   │   ├── content_loc: (5,2)-(5,5) = "foo"
        │   │   │   ├── closing_loc: (5,5)-(5,6) = "\""
        │   │   │   └── unescaped: "foo"
        │   │   └── @ StringNode (location: (5,8)-(5,11))
        │   │       ├── flags: ∅
        │   │       ├── opening_loc: (5,8)-(5,10) = "%("
        │   │       ├── content_loc: (5,10)-(5,10) = ""
        │   │       ├── closing_loc: (5,10)-(5,11) = ")"
        │   │       └── unescaped: ""
        │   ├── opening_loc: (5,0)-(5,1) = "["
        │   └── closing_loc: (5,11)-(5,12) = "]"
        ├── @ CallNode (location: (6,0)-(6,15))
        │   ├── flags: ∅
        │   ├── receiver:
        │   │   @ CallNode (location: (6,0)-(6,13))
        │   │   ├── flags: ignore_visibility
        │   │   ├── receiver: ∅
        │   │   ├── call_operator_loc: ∅
        │   │   ├── name: :a
        │   │   ├── message_loc: (6,0)-(6,1) = "a"
        │   │   ├── opening_loc: (6,1)-(6,2) = "("
        │   │   ├── arguments:
        │   │   │   @ ArgumentsNode (location: (6,2)-(6,12))
        │   │   │   ├── flags: ∅
        │   │   │   └── arguments: (length: 1)
        │   │   │       └── @ InterpolatedStringNode (location: (6,2)-(6,12))
        │   │   │           ├── flags: ∅
        │   │   │           ├── opening_loc: (6,2)-(6,12) = "<<-HEREDOC"
        │   │   │           ├── parts: (length: 3)
        │   │   │           │   ├── @ StringNode (location: (7,0)-(7,2))
        │   │   │           │   │   ├── flags: frozen
        │   │   │           │   │   ├── opening_loc: ∅
        │   │   │           │   │   ├── content_loc: (7,0)-(7,2) = "  "
        │   │   │           │   │   ├── closing_loc: ∅
        │   │   │           │   │   └── unescaped: "  "
        │   │   │           │   ├── @ EmbeddedStatementsNode (location: (7,2)-(7,5))
        │   │   │           │   │   ├── opening_loc: (7,2)-(7,4) = "\#{"
        │   │   │           │   │   ├── statements: ∅
        │   │   │           │   │   └── closing_loc: (7,4)-(7,5) = "}"
        │   │   │           │   └── @ StringNode (location: (7,5)-(8,0))
        │   │   │           │       ├── flags: frozen
        │   │   │           │       ├── opening_loc: ∅
        │   │   │           │       ├── content_loc: (7,5)-(8,0) = "\n"
        │   │   │           │       ├── closing_loc: ∅
        │   │   │           │       └── unescaped: "\n"
        │   │   │           └── closing_loc: (8,0)-(9,0) = "HEREDOC\n"
        │   │   ├── closing_loc: (6,12)-(6,13) = ")"
        │   │   └── block: ∅
        │   ├── call_operator_loc: (6,13)-(6,14) = "."
        │   ├── name: :a
        │   ├── message_loc: (6,14)-(6,15) = "a"
        │   ├── opening_loc: ∅
        │   ├── arguments: ∅
        │   ├── closing_loc: ∅
        │   └── block: ∅
        ├── @ CallNode (location: (9,0)-(9,8))
        │   ├── flags: ∅
        │   ├── receiver:
        │   │   @ CallNode (location: (9,0)-(9,6))
        │   │   ├── flags: ignore_visibility
        │   │   ├── receiver: ∅
        │   │   ├── call_operator_loc: ∅
        │   │   ├── name: :a
        │   │   ├── message_loc: (9,0)-(9,1) = "a"
        │   │   ├── opening_loc: (9,1)-(9,2) = "("
        │   │   ├── arguments:
        │   │   │   @ ArgumentsNode (location: (9,2)-(9,5))
        │   │   │   ├── flags: ∅
        │   │   │   └── arguments: (length: 1)
        │   │   │       └── @ StringNode (location: (9,2)-(9,5))
        │   │   │           ├── flags: ∅
        │   │   │           ├── opening_loc: (9,2)-(9,4) = "%("
        │   │   │           ├── content_loc: (9,4)-(9,4) = ""
        │   │   │           ├── closing_loc: (9,4)-(9,5) = ")"
        │   │   │           └── unescaped: ""
        │   │   ├── closing_loc: (9,5)-(9,6) = ")"
        │   │   └── block: ∅
        │   ├── call_operator_loc: (9,6)-(9,7) = "."
        │   ├── name: :a
        │   ├── message_loc: (9,7)-(9,8) = "a"
        │   ├── opening_loc: ∅
        │   ├── arguments: ∅
        │   ├── closing_loc: ∅
        │   └── block: ∅
        ├── @ HashNode (location: (10,0)-(10,30))
        │   ├── opening_loc: (10,0)-(10,1) = "{"
        │   ├── elements: (length: 2)
        │   │   ├── @ AssocNode (location: (10,2)-(10,21))
        │   │   │   ├── key:
        │   │   │   │   @ StringNode (location: (10,2)-(10,7))
        │   │   │   │   ├── flags: frozen
        │   │   │   │   ├── opening_loc: (10,2)-(10,3) = "\""
        │   │   │   │   ├── content_loc: (10,3)-(10,6) = "foo"
        │   │   │   │   ├── closing_loc: (10,6)-(10,7) = "\""
        │   │   │   │   └── unescaped: "foo"
        │   │   │   ├── value:
        │   │   │   │   @ InterpolatedStringNode (location: (10,11)-(10,21))
        │   │   │   │   ├── flags: ∅
        │   │   │   │   ├── opening_loc: (10,11)-(10,21) = "<<-HEREDOC"
        │   │   │   │   ├── parts: (length: 3)
        │   │   │   │   │   ├── @ StringNode (location: (11,0)-(11,2))
        │   │   │   │   │   │   ├── flags: frozen
        │   │   │   │   │   │   ├── opening_loc: ∅
        │   │   │   │   │   │   ├── content_loc: (11,0)-(11,2) = "  "
        │   │   │   │   │   │   ├── closing_loc: ∅
        │   │   │   │   │   │   └── unescaped: "  "
        │   │   │   │   │   ├── @ EmbeddedStatementsNode (location: (11,2)-(11,5))
        │   │   │   │   │   │   ├── opening_loc: (11,2)-(11,4) = "\#{"
        │   │   │   │   │   │   ├── statements: ∅
        │   │   │   │   │   │   └── closing_loc: (11,4)-(11,5) = "}"
        │   │   │   │   │   └── @ StringNode (location: (11,5)-(12,0))
        │   │   │   │   │       ├── flags: frozen
        │   │   │   │   │       ├── opening_loc: ∅
        │   │   │   │   │       ├── content_loc: (11,5)-(12,0) = "\n"
        │   │   │   │   │       ├── closing_loc: ∅
        │   │   │   │   │       └── unescaped: "\n"
        │   │   │   │   └── closing_loc: (12,0)-(13,0) = "HEREDOC\n"
        │   │   │   └── operator_loc: (10,8)-(10,10) = "=>"
        │   │   └── @ AssocSplatNode (location: (10,23)-(10,28))
        │   │       ├── value:
        │   │       │   @ CallNode (location: (10,25)-(10,28))
        │   │       │   ├── flags: variable_call, ignore_visibility
        │   │       │   ├── receiver: ∅
        │   │       │   ├── call_operator_loc: ∅
        │   │       │   ├── name: :baz
        │   │       │   ├── message_loc: (10,25)-(10,28) = "baz"
        │   │       │   ├── opening_loc: ∅
        │   │       │   ├── arguments: ∅
        │   │       │   ├── closing_loc: ∅
        │   │       │   └── block: ∅
        │   │       └── operator_loc: (10,23)-(10,25) = "**"
        │   └── closing_loc: (10,29)-(10,30) = "}"
        ├── @ HashNode (location: (13,0)-(13,23))
        │   ├── opening_loc: (13,0)-(13,1) = "{"
        │   ├── elements: (length: 2)
        │   │   ├── @ AssocNode (location: (13,2)-(13,14))
        │   │   │   ├── key:
        │   │   │   │   @ StringNode (location: (13,2)-(13,7))
        │   │   │   │   ├── flags: frozen
        │   │   │   │   ├── opening_loc: (13,2)-(13,3) = "\""
        │   │   │   │   ├── content_loc: (13,3)-(13,6) = "foo"
        │   │   │   │   ├── closing_loc: (13,6)-(13,7) = "\""
        │   │   │   │   └── unescaped: "foo"
        │   │   │   ├── value:
        │   │   │   │   @ StringNode (location: (13,11)-(13,14))
        │   │   │   │   ├── flags: ∅
        │   │   │   │   ├── opening_loc: (13,11)-(13,13) = "%("
        │   │   │   │   ├── content_loc: (13,13)-(13,13) = ""
        │   │   │   │   ├── closing_loc: (13,13)-(13,14) = ")"
        │   │   │   │   └── unescaped: ""
        │   │   │   └── operator_loc: (13,8)-(13,10) = "=>"
        │   │   └── @ AssocSplatNode (location: (13,16)-(13,21))
        │   │       ├── value:
        │   │       │   @ CallNode (location: (13,18)-(13,21))
        │   │       │   ├── flags: variable_call, ignore_visibility
        │   │       │   ├── receiver: ∅
        │   │       │   ├── call_operator_loc: ∅
        │   │       │   ├── name: :baz
        │   │       │   ├── message_loc: (13,18)-(13,21) = "baz"
        │   │       │   ├── opening_loc: ∅
        │   │       │   ├── arguments: ∅
        │   │       │   ├── closing_loc: ∅
        │   │       │   └── block: ∅
        │   │       └── operator_loc: (13,16)-(13,18) = "**"
        │   └── closing_loc: (13,22)-(13,23) = "}"
        ├── @ InterpolatedStringNode (location: (14,0)-(14,14))
        │   ├── flags: ∅
        │   ├── opening_loc: (14,0)-(14,1) = "\""
        │   ├── parts: (length: 5)
        │   │   ├── @ EmbeddedVariableNode (location: (14,1)-(14,4))
        │   │   │   ├── operator_loc: (14,1)-(14,2) = "#"
        │   │   │   └── variable:
        │   │   │       @ InstanceVariableReadNode (location: (14,2)-(14,4))
        │   │   │       └── name: :@a
        │   │   ├── @ StringNode (location: (14,4)-(14,5))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── content_loc: (14,4)-(14,5) = " "
        │   │   │   ├── closing_loc: ∅
        │   │   │   └── unescaped: " "
        │   │   ├── @ EmbeddedVariableNode (location: (14,5)-(14,9))
        │   │   │   ├── operator_loc: (14,5)-(14,6) = "#"
        │   │   │   └── variable:
        │   │   │       @ ClassVariableReadNode (location: (14,6)-(14,9))
        │   │   │       └── name: :@@a
        │   │   ├── @ StringNode (location: (14,9)-(14,10))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── content_loc: (14,9)-(14,10) = " "
        │   │   │   ├── closing_loc: ∅
        │   │   │   └── unescaped: " "
        │   │   └── @ EmbeddedVariableNode (location: (14,10)-(14,13))
        │   │       ├── operator_loc: (14,10)-(14,11) = "#"
        │   │       └── variable:
        │   │           @ GlobalVariableReadNode (location: (14,11)-(14,13))
        │   │           └── name: :$a
        │   └── closing_loc: (14,13)-(14,14) = "\""
        ├── @ IntegerNode (location: (15,0)-(15,1))
        │   ├── flags: decimal
        │   └── value: 0
        ├── @ CallNode (location: (16,0)-(16,3))
        │   ├── flags: ∅
        │   ├── receiver:
        │   │   @ IntegerNode (location: (16,1)-(16,3))
        │   │   ├── flags: decimal
        │   │   └── value: 1
        │   ├── call_operator_loc: ∅
        │   ├── name: :+@
        │   ├── message_loc: (16,0)-(16,1) = "+"
        │   ├── opening_loc: ∅
        │   ├── arguments: ∅
        │   ├── closing_loc: ∅
        │   └── block: ∅
        ├── @ IntegerNode (location: (17,0)-(17,1))
        │   ├── flags: decimal
        │   └── value: 1
        ├── @ IntegerNode (location: (18,0)-(18,1))
        │   ├── flags: decimal
        │   └── value: 1
        ├── @ RationalNode (location: (19,0)-(19,2))
        │   └── numeric:
        │       @ IntegerNode (location: (19,0)-(19,1))
        │       ├── flags: decimal
        │       └── value: 1
        ├── @ RationalNode (location: (20,0)-(20,4))
        │   └── numeric:
        │       @ FloatNode (location: (20,0)-(20,3))
        │       └── value: 1.5
        ├── @ RationalNode (location: (21,0)-(21,4))
        │   └── numeric:
        │       @ FloatNode (location: (21,0)-(21,3))
        │       └── value: 1.3
        ├── @ ImaginaryNode (location: (22,0)-(22,2))
        │   └── numeric:
        │       @ IntegerNode (location: (22,0)-(22,1))
        │       ├── flags: decimal
        │       └── value: 5
        ├── @ ImaginaryNode (location: (23,0)-(23,3))
        │   └── numeric:
        │       @ IntegerNode (location: (23,0)-(23,2))
        │       ├── flags: decimal
        │       └── value: -5
        ├── @ ImaginaryNode (location: (24,0)-(24,4))
        │   └── numeric:
        │       @ FloatNode (location: (24,0)-(24,3))
        │       └── value: 0.6
        ├── @ ImaginaryNode (location: (25,0)-(25,5))
        │   └── numeric:
        │       @ FloatNode (location: (25,0)-(25,4))
        │       └── value: -0.6
        ├── @ ImaginaryNode (location: (26,0)-(26,32))
        │   └── numeric:
        │       @ IntegerNode (location: (26,0)-(26,31))
        │       ├── flags: decimal
        │       └── value: 1000000000000000000000000000000
        ├── @ ImaginaryNode (location: (27,0)-(27,3))
        │   └── numeric:
        │       @ RationalNode (location: (27,0)-(27,2))
        │       └── numeric:
        │           @ IntegerNode (location: (27,0)-(27,1))
        │           ├── flags: decimal
        │           └── value: 1
        ├── @ InterpolatedStringNode (location: (28,0)-(28,11))
        │   ├── flags: ∅
        │   ├── opening_loc: ∅
        │   ├── parts: (length: 2)
        │   │   ├── @ StringNode (location: (28,0)-(28,5))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: (28,0)-(28,1) = "\""
        │   │   │   ├── content_loc: (28,1)-(28,4) = "foo"
        │   │   │   ├── closing_loc: (28,4)-(28,5) = "\""
        │   │   │   └── unescaped: "foo"
        │   │   └── @ StringNode (location: (28,6)-(28,11))
        │   │       ├── flags: frozen
        │   │       ├── opening_loc: (28,6)-(28,7) = "\""
        │   │       ├── content_loc: (28,7)-(28,10) = "bar"
        │   │       ├── closing_loc: (28,10)-(28,11) = "\""
        │   │       └── unescaped: "bar"
        │   └── closing_loc: ∅
        ├── @ InterpolatedStringNode (location: (29,0)-(29,15))
        │   ├── flags: ∅
        │   ├── opening_loc: (29,0)-(29,1) = "\""
        │   ├── parts: (length: 2)
        │   │   ├── @ StringNode (location: (29,1)-(29,8))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── content_loc: (29,1)-(29,8) = "foobar "
        │   │   │   ├── closing_loc: ∅
        │   │   │   └── unescaped: "foobar "
        │   │   └── @ EmbeddedStatementsNode (location: (29,8)-(29,14))
        │   │       ├── opening_loc: (29,8)-(29,10) = "\#{"
        │   │       ├── statements:
        │   │       │   @ StatementsNode (location: (29,10)-(29,13))
        │   │       │   └── body: (length: 1)
        │   │       │       └── @ CallNode (location: (29,10)-(29,13))
        │   │       │           ├── flags: variable_call, ignore_visibility
        │   │       │           ├── receiver: ∅
        │   │       │           ├── call_operator_loc: ∅
        │   │       │           ├── name: :baz
        │   │       │           ├── message_loc: (29,10)-(29,13) = "baz"
        │   │       │           ├── opening_loc: ∅
        │   │       │           ├── arguments: ∅
        │   │       │           ├── closing_loc: ∅
        │   │       │           └── block: ∅
        │   │       └── closing_loc: (29,13)-(29,14) = "}"
        │   └── closing_loc: (29,14)-(29,15) = "\""
        ├── @ InterpolatedStringNode (location: (30,0)-(30,12))
        │   ├── flags: ∅
        │   ├── opening_loc: (30,0)-(30,1) = "\""
        │   ├── parts: (length: 3)
        │   │   ├── @ StringNode (location: (30,1)-(30,4))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── content_loc: (30,1)-(30,4) = "foo"
        │   │   │   ├── closing_loc: ∅
        │   │   │   └── unescaped: "foo"
        │   │   ├── @ EmbeddedStatementsNode (location: (30,4)-(30,8))
        │   │   │   ├── opening_loc: (30,4)-(30,6) = "\#{"
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (30,6)-(30,7))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ IntegerNode (location: (30,6)-(30,7))
        │   │   │   │           ├── flags: decimal
        │   │   │   │           └── value: 1
        │   │   │   └── closing_loc: (30,7)-(30,8) = "}"
        │   │   └── @ StringNode (location: (30,8)-(30,11))
        │   │       ├── flags: frozen
        │   │       ├── opening_loc: ∅
        │   │       ├── content_loc: (30,8)-(30,11) = "bar"
        │   │       ├── closing_loc: ∅
        │   │       └── unescaped: "bar"
        │   └── closing_loc: (30,11)-(30,12) = "\""
        ├── @ InterpolatedStringNode (location: (31,0)-(31,9))
        │   ├── flags: ∅
        │   ├── opening_loc: (31,0)-(31,1) = "\""
        │   ├── parts: (length: 2)
        │   │   ├── @ StringNode (location: (31,1)-(31,5))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── content_loc: (31,1)-(31,5) = "\\\\\\\\"
        │   │   │   ├── closing_loc: ∅
        │   │   │   └── unescaped: "\\\\"
        │   │   └── @ EmbeddedStatementsNode (location: (31,5)-(31,8))
        │   │       ├── opening_loc: (31,5)-(31,7) = "\#{"
        │   │       ├── statements: ∅
        │   │       └── closing_loc: (31,7)-(31,8) = "}"
        │   └── closing_loc: (31,8)-(31,9) = "\""
        ├── @ InterpolatedStringNode (location: (32,0)-(32,9))
        │   ├── flags: ∅
        │   ├── opening_loc: (32,0)-(32,1) = "\""
        │   ├── parts: (length: 2)
        │   │   ├── @ EmbeddedStatementsNode (location: (32,1)-(32,4))
        │   │   │   ├── opening_loc: (32,1)-(32,3) = "\#{"
        │   │   │   ├── statements: ∅
        │   │   │   └── closing_loc: (32,3)-(32,4) = "}"
        │   │   └── @ StringNode (location: (32,4)-(32,8))
        │   │       ├── flags: frozen
        │   │       ├── opening_loc: ∅
        │   │       ├── content_loc: (32,4)-(32,8) = "\\\#{}"
        │   │       ├── closing_loc: ∅
        │   │       └── unescaped: "\#{}"
        │   └── closing_loc: (32,8)-(32,9) = "\""
        ├── @ InterpolatedStringNode (location: (33,0)-(33,9))
        │   ├── flags: ∅
        │   ├── opening_loc: (33,0)-(33,1) = "\""
        │   ├── parts: (length: 2)
        │   │   ├── @ StringNode (location: (33,1)-(33,5))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── content_loc: (33,1)-(33,5) = "\\\#{}"
        │   │   │   ├── closing_loc: ∅
        │   │   │   └── unescaped: "\#{}"
        │   │   └── @ EmbeddedStatementsNode (location: (33,5)-(33,8))
        │   │       ├── opening_loc: (33,5)-(33,7) = "\#{"
        │   │       ├── statements: ∅
        │   │       └── closing_loc: (33,7)-(33,8) = "}"
        │   └── closing_loc: (33,8)-(33,9) = "\""
        ├── @ StringNode (location: (34,0)-(34,15))
        │   ├── flags: ∅
        │   ├── opening_loc: (34,0)-(34,1) = "\""
        │   ├── content_loc: (34,1)-(34,14) = "foo\\\\\\\#{@bar}"
        │   ├── closing_loc: (34,14)-(34,15) = "\""
        │   └── unescaped: "foo\\\#{@bar}"
        ├── @ StringNode (location: (35,0)-(35,4))
        │   ├── flags: ∅
        │   ├── opening_loc: (35,0)-(35,1) = "\""
        │   ├── content_loc: (35,1)-(35,3) = "\\\""
        │   ├── closing_loc: (35,3)-(35,4) = "\""
        │   └── unescaped: "\""
        ├── @ StringNode (location: (36,0)-(36,9))
        │   ├── flags: ∅
        │   ├── opening_loc: (36,0)-(36,1) = "\""
        │   ├── content_loc: (36,1)-(36,8) = "foo bar"
        │   ├── closing_loc: (36,8)-(36,9) = "\""
        │   └── unescaped: "foo bar"
        ├── @ StringNode (location: (37,0)-(37,10))
        │   ├── flags: ∅
        │   ├── opening_loc: (37,0)-(37,1) = "\""
        │   ├── content_loc: (37,1)-(37,9) = "foo\\nbar"
        │   ├── closing_loc: (37,9)-(37,10) = "\""
        │   └── unescaped: "foo\nbar"
        ├── @ XStringNode (location: (38,0)-(38,5))
        │   ├── flags: ∅
        │   ├── opening_loc: (38,0)-(38,1) = "`"
        │   ├── content_loc: (38,1)-(38,4) = "foo"
        │   ├── closing_loc: (38,4)-(38,5) = "`"
        │   └── unescaped: "foo"
        ├── @ InterpolatedXStringNode (location: (39,0)-(39,12))
        │   ├── opening_loc: (39,0)-(39,1) = "`"
        │   ├── parts: (length: 2)
        │   │   ├── @ StringNode (location: (39,1)-(39,4))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── content_loc: (39,1)-(39,4) = "foo"
        │   │   │   ├── closing_loc: ∅
        │   │   │   └── unescaped: "foo"
        │   │   └── @ EmbeddedStatementsNode (location: (39,4)-(39,11))
        │   │       ├── opening_loc: (39,4)-(39,6) = "\#{"
        │   │       ├── statements:
        │   │       │   @ StatementsNode (location: (39,6)-(39,10))
        │   │       │   └── body: (length: 1)
        │   │       │       └── @ InstanceVariableReadNode (location: (39,6)-(39,10))
        │   │       │           └── name: :@bar
        │   │       └── closing_loc: (39,10)-(39,11) = "}"
        │   └── closing_loc: (39,11)-(39,12) = "`"
        ├── @ XStringNode (location: (40,0)-(40,3))
        │   ├── flags: ∅
        │   ├── opening_loc: (40,0)-(40,1) = "`"
        │   ├── content_loc: (40,1)-(40,2) = ")"
        │   ├── closing_loc: (40,2)-(40,3) = "`"
        │   └── unescaped: ")"
        ├── @ XStringNode (location: (41,0)-(41,4))
        │   ├── flags: ∅
        │   ├── opening_loc: (41,0)-(41,1) = "`"
        │   ├── content_loc: (41,1)-(41,3) = "\\`"
        │   ├── closing_loc: (41,3)-(41,4) = "`"
        │   └── unescaped: "`"
        ├── @ XStringNode (location: (42,0)-(42,3))
        │   ├── flags: ∅
        │   ├── opening_loc: (42,0)-(42,1) = "`"
        │   ├── content_loc: (42,1)-(42,2) = "\""
        │   ├── closing_loc: (42,2)-(42,3) = "`"
        │   └── unescaped: "\""
        ├── @ SymbolNode (location: (43,0)-(43,4))
        │   ├── flags: forced_us_ascii_encoding
        │   ├── opening_loc: (43,0)-(43,1) = ":"
        │   ├── value_loc: (43,1)-(43,4) = "foo"
        │   ├── closing_loc: ∅
        │   └── unescaped: "foo"
        ├── @ SymbolNode (location: (44,0)-(44,6))
        │   ├── flags: forced_us_ascii_encoding
        │   ├── opening_loc: (44,0)-(44,2) = ":\""
        │   ├── value_loc: (44,2)-(44,5) = "A B"
        │   ├── closing_loc: (44,5)-(44,6) = "\""
        │   └── unescaped: "A B"
        ├── @ SymbolNode (location: (45,0)-(45,4))
        │   ├── flags: forced_us_ascii_encoding
        │   ├── opening_loc: (45,0)-(45,1) = ":"
        │   ├── value_loc: (45,1)-(45,4) = "foo"
        │   ├── closing_loc: ∅
        │   └── unescaped: "foo"
        ├── @ SymbolNode (location: (46,0)-(46,6))
        │   ├── flags: forced_us_ascii_encoding
        │   ├── opening_loc: (46,0)-(46,2) = ":\""
        │   ├── value_loc: (46,2)-(46,5) = "A B"
        │   ├── closing_loc: (46,5)-(46,6) = "\""
        │   └── unescaped: "A B"
        ├── @ SymbolNode (location: (47,0)-(47,7))
        │   ├── flags: forced_us_ascii_encoding
        │   ├── opening_loc: (47,0)-(47,2) = ":\""
        │   ├── value_loc: (47,2)-(47,6) = "A\\\"B"
        │   ├── closing_loc: (47,6)-(47,7) = "\""
        │   └── unescaped: "A\"B"
        ├── @ SymbolNode (location: (48,0)-(48,3))
        │   ├── flags: ∅
        │   ├── opening_loc: (48,0)-(48,2) = ":\""
        │   ├── value_loc: (1,0)-(1,0) = ""
        │   ├── closing_loc: (48,2)-(48,3) = "\""
        │   └── unescaped: ""
        ├── @ RegularExpressionNode (location: (49,0)-(49,5))
        │   ├── flags: forced_us_ascii_encoding
        │   ├── opening_loc: (49,0)-(49,1) = "/"
        │   ├── content_loc: (49,1)-(49,4) = "foo"
        │   ├── closing_loc: (49,4)-(49,5) = "/"
        │   └── unescaped: "foo"
        ├── @ RegularExpressionNode (location: (50,0)-(50,28))
        │   ├── flags: forced_us_ascii_encoding
        │   ├── opening_loc: (50,0)-(50,1) = "/"
        │   ├── content_loc: (50,1)-(50,27) = "[^-+',.\\/:@[:alnum:]\\[\\]]+"
        │   ├── closing_loc: (50,27)-(50,28) = "/"
        │   └── unescaped: "[^-+',./:@[:alnum:]\\[\\]]+"
        ├── @ InterpolatedRegularExpressionNode (location: (51,0)-(51,12))
        │   ├── flags: ∅
        │   ├── opening_loc: (51,0)-(51,1) = "/"
        │   ├── parts: (length: 2)
        │   │   ├── @ StringNode (location: (51,1)-(51,4))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── content_loc: (51,1)-(51,4) = "foo"
        │   │   │   ├── closing_loc: ∅
        │   │   │   └── unescaped: "foo"
        │   │   └── @ EmbeddedStatementsNode (location: (51,4)-(51,11))
        │   │       ├── opening_loc: (51,4)-(51,6) = "\#{"
        │   │       ├── statements:
        │   │       │   @ StatementsNode (location: (51,6)-(51,10))
        │   │       │   └── body: (length: 1)
        │   │       │       └── @ InstanceVariableReadNode (location: (51,6)-(51,10))
        │   │       │           └── name: :@bar
        │   │       └── closing_loc: (51,10)-(51,11) = "}"
        │   └── closing_loc: (51,11)-(51,12) = "/"
        ├── @ InterpolatedRegularExpressionNode (location: (52,0)-(52,15))
        │   ├── flags: ignore_case, extended, multi_line
        │   ├── opening_loc: (52,0)-(52,1) = "/"
        │   ├── parts: (length: 2)
        │   │   ├── @ StringNode (location: (52,1)-(52,4))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── content_loc: (52,1)-(52,4) = "foo"
        │   │   │   ├── closing_loc: ∅
        │   │   │   └── unescaped: "foo"
        │   │   └── @ EmbeddedStatementsNode (location: (52,4)-(52,11))
        │   │       ├── opening_loc: (52,4)-(52,6) = "\#{"
        │   │       ├── statements:
        │   │       │   @ StatementsNode (location: (52,6)-(52,10))
        │   │       │   └── body: (length: 1)
        │   │       │       └── @ InstanceVariableReadNode (location: (52,6)-(52,10))
        │   │       │           └── name: :@bar
        │   │       └── closing_loc: (52,10)-(52,11) = "}"
        │   └── closing_loc: (52,11)-(52,15) = "/imx"
        ├── @ InterpolatedRegularExpressionNode (location: (53,0)-(53,13))
        │   ├── flags: ∅
        │   ├── opening_loc: (53,0)-(53,1) = "/"
        │   ├── parts: (length: 1)
        │   │   └── @ EmbeddedStatementsNode (location: (53,1)-(53,12))
        │   │       ├── opening_loc: (53,1)-(53,3) = "\#{"
        │   │       ├── statements:
        │   │       │   @ StatementsNode (location: (53,3)-(53,11))
        │   │       │   └── body: (length: 1)
        │   │       │       └── @ StringNode (location: (53,3)-(53,11))
        │   │       │           ├── flags: ∅
        │   │       │           ├── opening_loc: (53,3)-(53,4) = "\""
        │   │       │           ├── content_loc: (53,4)-(53,10) = "\\u0000"
        │   │       │           ├── closing_loc: (53,10)-(53,11) = "\""
        │   │       │           └── unescaped: "\u0000"
        │   │       └── closing_loc: (53,11)-(53,12) = "}"
        │   └── closing_loc: (53,12)-(53,13) = "/"
        ├── @ RegularExpressionNode (location: (54,0)-(54,4))
        │   ├── flags: forced_us_ascii_encoding
        │   ├── opening_loc: (54,0)-(54,1) = "/"
        │   ├── content_loc: (54,1)-(54,3) = "\\n"
        │   ├── closing_loc: (54,3)-(54,4) = "/"
        │   └── unescaped: "\\n"
        ├── @ RegularExpressionNode (location: (55,0)-(55,4))
        │   ├── flags: forced_us_ascii_encoding
        │   ├── opening_loc: (55,0)-(55,1) = "/"
        │   ├── content_loc: (55,1)-(55,3) = "\\n"
        │   ├── closing_loc: (55,3)-(55,4) = "/"
        │   └── unescaped: "\\n"
        ├── @ RegularExpressionNode (location: (56,0)-(56,5))
        │   ├── flags: extended, forced_us_ascii_encoding
        │   ├── opening_loc: (56,0)-(56,1) = "/"
        │   ├── content_loc: (56,1)-(56,3) = "\\n"
        │   ├── closing_loc: (56,3)-(56,5) = "/x"
        │   └── unescaped: "\\n"
        ├── @ RegularExpressionNode (location: (57,0)-(57,7))
        │   ├── flags: extended, forced_us_ascii_encoding
        │   ├── opening_loc: (57,0)-(57,1) = "/"
        │   ├── content_loc: (57,1)-(57,5) = "\\/\\/"
        │   ├── closing_loc: (57,5)-(57,7) = "/x"
        │   └── unescaped: "//"
        ├── @ InterpolatedSymbolNode (location: (58,0)-(58,15))
        │   ├── opening_loc: (58,0)-(58,2) = ":\""
        │   ├── parts: (length: 3)
        │   │   ├── @ StringNode (location: (58,2)-(58,5))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── content_loc: (58,2)-(58,5) = "foo"
        │   │   │   ├── closing_loc: ∅
        │   │   │   └── unescaped: "foo"
        │   │   ├── @ EmbeddedStatementsNode (location: (58,5)-(58,11))
        │   │   │   ├── opening_loc: (58,5)-(58,7) = "\#{"
        │   │   │   ├── statements:
        │   │   │   │   @ StatementsNode (location: (58,7)-(58,10))
        │   │   │   │   └── body: (length: 1)
        │   │   │   │       └── @ CallNode (location: (58,7)-(58,10))
        │   │   │   │           ├── flags: variable_call, ignore_visibility
        │   │   │   │           ├── receiver: ∅
        │   │   │   │           ├── call_operator_loc: ∅
        │   │   │   │           ├── name: :bar
        │   │   │   │           ├── message_loc: (58,7)-(58,10) = "bar"
        │   │   │   │           ├── opening_loc: ∅
        │   │   │   │           ├── arguments: ∅
        │   │   │   │           ├── closing_loc: ∅
        │   │   │   │           └── block: ∅
        │   │   │   └── closing_loc: (58,10)-(58,11) = "}"
        │   │   └── @ StringNode (location: (58,11)-(58,14))
        │   │       ├── flags: frozen
        │   │       ├── opening_loc: ∅
        │   │       ├── content_loc: (58,11)-(58,14) = "baz"
        │   │       ├── closing_loc: ∅
        │   │       └── unescaped: "baz"
        │   └── closing_loc: (58,14)-(58,15) = "\""
        ├── @ InterpolatedSymbolNode (location: (59,0)-(59,11))
        │   ├── opening_loc: (59,0)-(59,2) = ":\""
        │   ├── parts: (length: 1)
        │   │   └── @ EmbeddedStatementsNode (location: (59,2)-(59,10))
        │   │       ├── opening_loc: (59,2)-(59,4) = "\#{"
        │   │       ├── statements:
        │   │       │   @ StatementsNode (location: (59,4)-(59,9))
        │   │       │   └── body: (length: 1)
        │   │       │       └── @ StringNode (location: (59,4)-(59,9))
        │   │       │           ├── flags: ∅
        │   │       │           ├── opening_loc: (59,4)-(59,5) = "\""
        │   │       │           ├── content_loc: (59,5)-(59,8) = "foo"
        │   │       │           ├── closing_loc: (59,8)-(59,9) = "\""
        │   │       │           └── unescaped: "foo"
        │   │       └── closing_loc: (59,9)-(59,10) = "}"
        │   └── closing_loc: (59,10)-(59,11) = "\""
        ├── @ RangeNode (location: (60,0)-(60,14))
        │   ├── flags: ∅
        │   ├── left:
        │   │   @ ParenthesesNode (location: (60,0)-(60,11))
        │   │   ├── body:
        │   │   │   @ StatementsNode (location: (60,1)-(60,10))
        │   │   │   └── body: (length: 1)
        │   │   │       └── @ CallNode (location: (60,1)-(60,10))
        │   │   │           ├── flags: ∅
        │   │   │           ├── receiver:
        │   │   │           │   @ FloatNode (location: (60,1)-(60,4))
        │   │   │           │   └── value: 0.0
        │   │   │           ├── call_operator_loc: ∅
        │   │   │           ├── name: :/
        │   │   │           ├── message_loc: (60,5)-(60,6) = "/"
        │   │   │           ├── opening_loc: ∅
        │   │   │           ├── arguments:
        │   │   │           │   @ ArgumentsNode (location: (60,7)-(60,10))
        │   │   │           │   ├── flags: ∅
        │   │   │           │   └── arguments: (length: 1)
        │   │   │           │       └── @ FloatNode (location: (60,7)-(60,10))
        │   │   │           │           └── value: 0.0
        │   │   │           ├── closing_loc: ∅
        │   │   │           └── block: ∅
        │   │   ├── opening_loc: (60,0)-(60,1) = "("
        │   │   └── closing_loc: (60,10)-(60,11) = ")"
        │   ├── right:
        │   │   @ IntegerNode (location: (60,13)-(60,14))
        │   │   ├── flags: decimal
        │   │   └── value: 1
        │   └── operator_loc: (60,11)-(60,13) = ".."
        ├── @ RangeNode (location: (61,0)-(61,14))
        │   ├── flags: ∅
        │   ├── left:
        │   │   @ IntegerNode (location: (61,0)-(61,1))
        │   │   ├── flags: decimal
        │   │   └── value: 1
        │   ├── right:
        │   │   @ ParenthesesNode (location: (61,3)-(61,14))
        │   │   ├── body:
        │   │   │   @ StatementsNode (location: (61,4)-(61,13))
        │   │   │   └── body: (length: 1)
        │   │   │       └── @ CallNode (location: (61,4)-(61,13))
        │   │   │           ├── flags: ∅
        │   │   │           ├── receiver:
        │   │   │           │   @ FloatNode (location: (61,4)-(61,7))
        │   │   │           │   └── value: 0.0
        │   │   │           ├── call_operator_loc: ∅
        │   │   │           ├── name: :/
        │   │   │           ├── message_loc: (61,8)-(61,9) = "/"
        │   │   │           ├── opening_loc: ∅
        │   │   │           ├── arguments:
        │   │   │           │   @ ArgumentsNode (location: (61,10)-(61,13))
        │   │   │           │   ├── flags: ∅
        │   │   │           │   └── arguments: (length: 1)
        │   │   │           │       └── @ FloatNode (location: (61,10)-(61,13))
        │   │   │           │           └── value: 0.0
        │   │   │           ├── closing_loc: ∅
        │   │   │           └── block: ∅
        │   │   ├── opening_loc: (61,3)-(61,4) = "("
        │   │   └── closing_loc: (61,13)-(61,14) = ")"
        │   └── operator_loc: (61,1)-(61,3) = ".."
        ├── @ RangeNode (location: (62,0)-(62,16))
        │   ├── flags: ∅
        │   ├── left:
        │   │   @ ParenthesesNode (location: (62,0)-(62,11))
        │   │   ├── body:
        │   │   │   @ StatementsNode (location: (62,1)-(62,10))
        │   │   │   └── body: (length: 1)
        │   │   │       └── @ CallNode (location: (62,1)-(62,10))
        │   │   │           ├── flags: ∅
        │   │   │           ├── receiver:
        │   │   │           │   @ FloatNode (location: (62,1)-(62,4))
        │   │   │           │   └── value: 0.0
        │   │   │           ├── call_operator_loc: ∅
        │   │   │           ├── name: :/
        │   │   │           ├── message_loc: (62,5)-(62,6) = "/"
        │   │   │           ├── opening_loc: ∅
        │   │   │           ├── arguments:
        │   │   │           │   @ ArgumentsNode (location: (62,7)-(62,10))
        │   │   │           │   ├── flags: ∅
        │   │   │           │   └── arguments: (length: 1)
        │   │   │           │       └── @ FloatNode (location: (62,7)-(62,10))
        │   │   │           │           └── value: 0.0
        │   │   │           ├── closing_loc: ∅
        │   │   │           └── block: ∅
        │   │   ├── opening_loc: (62,0)-(62,1) = "("
        │   │   └── closing_loc: (62,10)-(62,11) = ")"
        │   ├── right:
        │   │   @ IntegerNode (location: (62,13)-(62,16))
        │   │   ├── flags: decimal
        │   │   └── value: 100
        │   └── operator_loc: (62,11)-(62,13) = ".."
        ├── @ FloatNode (location: (63,0)-(63,4))
        │   └── value: -0.1
        ├── @ FloatNode (location: (64,0)-(64,3))
        │   └── value: 0.1
        ├── @ ArrayNode (location: (65,0)-(65,6))
        │   ├── flags: ∅
        │   ├── elements: (length: 2)
        │   │   ├── @ IntegerNode (location: (65,1)-(65,2))
        │   │   │   ├── flags: decimal
        │   │   │   └── value: 1
        │   │   └── @ IntegerNode (location: (65,4)-(65,5))
        │   │       ├── flags: decimal
        │   │       └── value: 2
        │   ├── opening_loc: (65,0)-(65,1) = "["
        │   └── closing_loc: (65,5)-(65,6) = "]"
        ├── @ ArrayNode (location: (66,0)-(66,11))
        │   ├── flags: ∅
        │   ├── elements: (length: 3)
        │   │   ├── @ IntegerNode (location: (66,1)-(66,2))
        │   │   │   ├── flags: decimal
        │   │   │   └── value: 1
        │   │   ├── @ ParenthesesNode (location: (66,4)-(66,6))
        │   │   │   ├── body: ∅
        │   │   │   ├── opening_loc: (66,4)-(66,5) = "("
        │   │   │   └── closing_loc: (66,5)-(66,6) = ")"
        │   │   └── @ CallNode (location: (66,8)-(66,10))
        │   │       ├── flags: variable_call, ignore_visibility
        │   │       ├── receiver: ∅
        │   │       ├── call_operator_loc: ∅
        │   │       ├── name: :n2
        │   │       ├── message_loc: (66,8)-(66,10) = "n2"
        │   │       ├── opening_loc: ∅
        │   │       ├── arguments: ∅
        │   │       ├── closing_loc: ∅
        │   │       └── block: ∅
        │   ├── opening_loc: (66,0)-(66,1) = "["
        │   └── closing_loc: (66,10)-(66,11) = "]"
        ├── @ ArrayNode (location: (67,0)-(67,3))
        │   ├── flags: ∅
        │   ├── elements: (length: 1)
        │   │   └── @ IntegerNode (location: (67,1)-(67,2))
        │   │       ├── flags: decimal
        │   │       └── value: 1
        │   ├── opening_loc: (67,0)-(67,1) = "["
        │   └── closing_loc: (67,2)-(67,3) = "]"
        ├── @ ArrayNode (location: (68,0)-(68,2))
        │   ├── flags: ∅
        │   ├── elements: (length: 0)
        │   ├── opening_loc: (68,0)-(68,1) = "["
        │   └── closing_loc: (68,1)-(68,2) = "]"
        ├── @ ArrayNode (location: (69,0)-(69,10))
        │   ├── flags: contains_splat
        │   ├── elements: (length: 2)
        │   │   ├── @ IntegerNode (location: (69,1)-(69,2))
        │   │   │   ├── flags: decimal
        │   │   │   └── value: 1
        │   │   └── @ SplatNode (location: (69,4)-(69,9))
        │   │       ├── operator_loc: (69,4)-(69,5) = "*"
        │   │       └── expression:
        │   │           @ InstanceVariableReadNode (location: (69,5)-(69,9))
        │   │           └── name: :@foo
        │   ├── opening_loc: (69,0)-(69,1) = "["
        │   └── closing_loc: (69,9)-(69,10) = "]"
        ├── @ ArrayNode (location: (70,0)-(70,10))
        │   ├── flags: contains_splat
        │   ├── elements: (length: 2)
        │   │   ├── @ SplatNode (location: (70,1)-(70,6))
        │   │   │   ├── operator_loc: (70,1)-(70,2) = "*"
        │   │   │   └── expression:
        │   │   │       @ InstanceVariableReadNode (location: (70,2)-(70,6))
        │   │   │       └── name: :@foo
        │   │   └── @ IntegerNode (location: (70,8)-(70,9))
        │   │       ├── flags: decimal
        │   │       └── value: 1
        │   ├── opening_loc: (70,0)-(70,1) = "["
        │   └── closing_loc: (70,9)-(70,10) = "]"
        ├── @ ArrayNode (location: (71,0)-(71,14))
        │   ├── flags: contains_splat
        │   ├── elements: (length: 2)
        │   │   ├── @ SplatNode (location: (71,1)-(71,6))
        │   │   │   ├── operator_loc: (71,1)-(71,2) = "*"
        │   │   │   └── expression:
        │   │   │       @ InstanceVariableReadNode (location: (71,2)-(71,6))
        │   │   │       └── name: :@foo
        │   │   └── @ SplatNode (location: (71,8)-(71,13))
        │   │       ├── operator_loc: (71,8)-(71,9) = "*"
        │   │       └── expression:
        │   │           @ InstanceVariableReadNode (location: (71,9)-(71,13))
        │   │           └── name: :@baz
        │   ├── opening_loc: (71,0)-(71,1) = "["
        │   └── closing_loc: (71,13)-(71,14) = "]"
        ├── @ HashNode (location: (72,0)-(72,2))
        │   ├── opening_loc: (72,0)-(72,1) = "{"
        │   ├── elements: (length: 0)
        │   └── closing_loc: (72,1)-(72,2) = "}"
        ├── @ HashNode (location: (73,0)-(73,12))
        │   ├── opening_loc: (73,0)-(73,1) = "{"
        │   ├── elements: (length: 1)
        │   │   └── @ AssocNode (location: (73,2)-(73,10))
        │   │       ├── key:
        │   │       │   @ ParenthesesNode (location: (73,2)-(73,4))
        │   │       │   ├── body: ∅
        │   │       │   ├── opening_loc: (73,2)-(73,3) = "("
        │   │       │   └── closing_loc: (73,3)-(73,4) = ")"
        │   │       ├── value:
        │   │       │   @ ParenthesesNode (location: (73,8)-(73,10))
        │   │       │   ├── body: ∅
        │   │       │   ├── opening_loc: (73,8)-(73,9) = "("
        │   │       │   └── closing_loc: (73,9)-(73,10) = ")"
        │   │       └── operator_loc: (73,5)-(73,7) = "=>"
        │   └── closing_loc: (73,11)-(73,12) = "}"
        ├── @ HashNode (location: (74,0)-(74,10))
        │   ├── opening_loc: (74,0)-(74,1) = "{"
        │   ├── elements: (length: 1)
        │   │   └── @ AssocNode (location: (74,2)-(74,8))
        │   │       ├── key:
        │   │       │   @ IntegerNode (location: (74,2)-(74,3))
        │   │       │   ├── flags: decimal
        │   │       │   └── value: 1
        │   │       ├── value:
        │   │       │   @ IntegerNode (location: (74,7)-(74,8))
        │   │       │   ├── flags: decimal
        │   │       │   └── value: 2
        │   │       └── operator_loc: (74,4)-(74,6) = "=>"
        │   └── closing_loc: (74,9)-(74,10) = "}"
        ├── @ HashNode (location: (75,0)-(75,18))
        │   ├── opening_loc: (75,0)-(75,1) = "{"
        │   ├── elements: (length: 2)
        │   │   ├── @ AssocNode (location: (75,2)-(75,8))
        │   │   │   ├── key:
        │   │   │   │   @ IntegerNode (location: (75,2)-(75,3))
        │   │   │   │   ├── flags: decimal
        │   │   │   │   └── value: 1
        │   │   │   ├── value:
        │   │   │   │   @ IntegerNode (location: (75,7)-(75,8))
        │   │   │   │   ├── flags: decimal
        │   │   │   │   └── value: 2
        │   │   │   └── operator_loc: (75,4)-(75,6) = "=>"
        │   │   └── @ AssocNode (location: (75,10)-(75,16))
        │   │       ├── key:
        │   │       │   @ IntegerNode (location: (75,10)-(75,11))
        │   │       │   ├── flags: decimal
        │   │       │   └── value: 3
        │   │       ├── value:
        │   │       │   @ IntegerNode (location: (75,15)-(75,16))
        │   │       │   ├── flags: decimal
        │   │       │   └── value: 4
        │   │       └── operator_loc: (75,12)-(75,14) = "=>"
        │   └── closing_loc: (75,17)-(75,18) = "}"
        ├── @ HashNode (location: (76,0)-(76,27))
        │   ├── opening_loc: (76,0)-(76,1) = "{"
        │   ├── elements: (length: 2)
        │   │   ├── @ AssocNode (location: (76,2)-(76,19))
        │   │   │   ├── key:
        │   │   │   │   @ SymbolNode (location: (76,2)-(76,4))
        │   │   │   │   ├── flags: forced_us_ascii_encoding
        │   │   │   │   ├── opening_loc: ∅
        │   │   │   │   ├── value_loc: (76,2)-(76,3) = "a"
        │   │   │   │   ├── closing_loc: (76,3)-(76,4) = ":"
        │   │   │   │   └── unescaped: "a"
        │   │   │   ├── value:
        │   │   │   │   @ ParenthesesNode (location: (76,5)-(76,19))
        │   │   │   │   ├── body:
        │   │   │   │   │   @ StatementsNode (location: (76,6)-(76,18))
        │   │   │   │   │   └── body: (length: 1)
        │   │   │   │   │       └── @ RescueModifierNode (location: (76,6)-(76,18))
        │   │   │   │   │           ├── expression:
        │   │   │   │   │           │   @ IntegerNode (location: (76,6)-(76,7))
        │   │   │   │   │           │   ├── flags: decimal
        │   │   │   │   │           │   └── value: 1
        │   │   │   │   │           ├── keyword_loc: (76,8)-(76,14) = "rescue"
        │   │   │   │   │           └── rescue_expression:
        │   │   │   │   │               @ CallNode (location: (76,15)-(76,18))
        │   │   │   │   │               ├── flags: variable_call, ignore_visibility
        │   │   │   │   │               ├── receiver: ∅
        │   │   │   │   │               ├── call_operator_loc: ∅
        │   │   │   │   │               ├── name: :foo
        │   │   │   │   │               ├── message_loc: (76,15)-(76,18) = "foo"
        │   │   │   │   │               ├── opening_loc: ∅
        │   │   │   │   │               ├── arguments: ∅
        │   │   │   │   │               ├── closing_loc: ∅
        │   │   │   │   │               └── block: ∅
        │   │   │   │   ├── opening_loc: (76,5)-(76,6) = "("
        │   │   │   │   └── closing_loc: (76,18)-(76,19) = ")"
        │   │   │   └── operator_loc: ∅
        │   │   └── @ AssocNode (location: (76,21)-(76,25))
        │   │       ├── key:
        │   │       │   @ SymbolNode (location: (76,21)-(76,23))
        │   │       │   ├── flags: forced_us_ascii_encoding
        │   │       │   ├── opening_loc: ∅
        │   │       │   ├── value_loc: (76,21)-(76,22) = "b"
        │   │       │   ├── closing_loc: (76,22)-(76,23) = ":"
        │   │       │   └── unescaped: "b"
        │   │       ├── value:
        │   │       │   @ IntegerNode (location: (76,24)-(76,25))
        │   │       │   ├── flags: decimal
        │   │       │   └── value: 2
        │   │       └── operator_loc: ∅
        │   └── closing_loc: (76,26)-(76,27) = "}"
        ├── @ HashNode (location: (77,0)-(77,14))
        │   ├── opening_loc: (77,0)-(77,1) = "{"
        │   ├── elements: (length: 2)
        │   │   ├── @ AssocNode (location: (77,2)-(77,6))
        │   │   │   ├── key:
        │   │   │   │   @ SymbolNode (location: (77,2)-(77,4))
        │   │   │   │   ├── flags: forced_us_ascii_encoding
        │   │   │   │   ├── opening_loc: ∅
        │   │   │   │   ├── value_loc: (77,2)-(77,3) = "a"
        │   │   │   │   ├── closing_loc: (77,3)-(77,4) = ":"
        │   │   │   │   └── unescaped: "a"
        │   │   │   ├── value:
        │   │   │   │   @ IntegerNode (location: (77,5)-(77,6))
        │   │   │   │   ├── flags: decimal
        │   │   │   │   └── value: 1
        │   │   │   └── operator_loc: ∅
        │   │   └── @ AssocNode (location: (77,8)-(77,12))
        │   │       ├── key:
        │   │       │   @ SymbolNode (location: (77,8)-(77,10))
        │   │       │   ├── flags: forced_us_ascii_encoding
        │   │       │   ├── opening_loc: ∅
        │   │       │   ├── value_loc: (77,8)-(77,9) = "b"
        │   │       │   ├── closing_loc: (77,9)-(77,10) = ":"
        │   │       │   └── unescaped: "b"
        │   │       ├── value:
        │   │       │   @ IntegerNode (location: (77,11)-(77,12))
        │   │       │   ├── flags: decimal
        │   │       │   └── value: 2
        │   │       └── operator_loc: ∅
        │   └── closing_loc: (77,13)-(77,14) = "}"
        ├── @ HashNode (location: (78,0)-(78,9))
        │   ├── opening_loc: (78,0)-(78,1) = "{"
        │   ├── elements: (length: 1)
        │   │   └── @ AssocNode (location: (78,2)-(78,7))
        │   │       ├── key:
        │   │       │   @ SymbolNode (location: (78,2)-(78,4))
        │   │       │   ├── flags: forced_us_ascii_encoding
        │   │       │   ├── opening_loc: ∅
        │   │       │   ├── value_loc: (78,2)-(78,3) = "a"
        │   │       │   ├── closing_loc: (78,3)-(78,4) = ":"
        │   │       │   └── unescaped: "a"
        │   │       ├── value:
        │   │       │   @ SymbolNode (location: (78,5)-(78,7))
        │   │       │   ├── flags: forced_us_ascii_encoding
        │   │       │   ├── opening_loc: (78,5)-(78,6) = ":"
        │   │       │   ├── value_loc: (78,6)-(78,7) = "a"
        │   │       │   ├── closing_loc: ∅
        │   │       │   └── unescaped: "a"
        │   │       └── operator_loc: ∅
        │   └── closing_loc: (78,8)-(78,9) = "}"
        ├── @ HashNode (location: (79,0)-(79,15))
        │   ├── opening_loc: (79,0)-(79,1) = "{"
        │   ├── elements: (length: 1)
        │   │   └── @ AssocNode (location: (79,2)-(79,13))
        │   │       ├── key:
        │   │       │   @ SymbolNode (location: (79,2)-(79,8))
        │   │       │   ├── flags: forced_us_ascii_encoding
        │   │       │   ├── opening_loc: (79,2)-(79,4) = ":\""
        │   │       │   ├── value_loc: (79,4)-(79,7) = "a b"
        │   │       │   ├── closing_loc: (79,7)-(79,8) = "\""
        │   │       │   └── unescaped: "a b"
        │   │       ├── value:
        │   │       │   @ IntegerNode (location: (79,12)-(79,13))
        │   │       │   ├── flags: decimal
        │   │       │   └── value: 1
        │   │       └── operator_loc: (79,9)-(79,11) = "=>"
        │   └── closing_loc: (79,14)-(79,15) = "}"
        ├── @ HashNode (location: (80,0)-(80,12))
        │   ├── opening_loc: (80,0)-(80,1) = "{"
        │   ├── elements: (length: 1)
        │   │   └── @ AssocNode (location: (80,2)-(80,10))
        │   │       ├── key:
        │   │       │   @ SymbolNode (location: (80,2)-(80,5))
        │   │       │   ├── flags: forced_us_ascii_encoding
        │   │       │   ├── opening_loc: (80,2)-(80,3) = ":"
        │   │       │   ├── value_loc: (80,3)-(80,5) = "-@"
        │   │       │   ├── closing_loc: ∅
        │   │       │   └── unescaped: "-@"
        │   │       ├── value:
        │   │       │   @ IntegerNode (location: (80,9)-(80,10))
        │   │       │   ├── flags: decimal
        │   │       │   └── value: 1
        │   │       └── operator_loc: (80,6)-(80,8) = "=>"
        │   └── closing_loc: (80,11)-(80,12) = "}"
        ├── @ InterpolatedStringNode (location: (81,0)-(82,7))
        │   ├── flags: ∅
        │   ├── opening_loc: (81,0)-(81,1) = "\""
        │   ├── parts: (length: 4)
        │   │   ├── @ EmbeddedStatementsNode (location: (81,1)-(81,4))
        │   │   │   ├── opening_loc: (81,1)-(81,3) = "\#{"
        │   │   │   ├── statements: ∅
        │   │   │   └── closing_loc: (81,3)-(81,4) = "}"
        │   │   ├── @ StringNode (location: (81,4)-(82,0))
        │   │   │   ├── flags: frozen
        │   │   │   ├── opening_loc: ∅
        │   │   │   ├── content_loc: (81,4)-(82,0) = "\n"
        │   │   │   ├── closing_loc: ∅
        │   │   │   └── unescaped: "\n"
        │   │   ├── @ EmbeddedStatementsNode (location: (82,0)-(82,3))
        │   │   │   ├── opening_loc: (82,0)-(82,2) = "\#{"
        │   │   │   ├── statements: ∅
        │   │   │   └── closing_loc: (82,2)-(82,3) = "}"
        │   │   └── @ StringNode (location: (82,3)-(82,6))
        │   │       ├── flags: frozen
        │   │       ├── opening_loc: ∅
        │   │       ├── content_loc: (82,3)-(82,6) = "\\na"
        │   │       ├── closing_loc: ∅
        │   │       └── unescaped: "\na"
        │   └── closing_loc: (82,6)-(82,7) = "\""
        ├── @ CallNode (location: (83,0)-(86,1))
        │   ├── flags: ignore_visibility
        │   ├── receiver: ∅
        │   ├── call_operator_loc: ∅
        │   ├── name: :foo
        │   ├── message_loc: (83,0)-(83,3) = "foo"
        │   ├── opening_loc: ∅
        │   ├── arguments: ∅
        │   ├── closing_loc: ∅
        │   └── block:
        │       @ BlockNode (location: (83,4)-(86,1))
        │       ├── locals: []
        │       ├── parameters: ∅
        │       ├── body:
        │       │   @ StatementsNode (location: (84,2)-(85,7))
        │       │   └── body: (length: 1)
        │       │       └── @ InterpolatedStringNode (location: (84,2)-(85,7))
        │       │           ├── flags: ∅
        │       │           ├── opening_loc: (84,2)-(84,3) = "\""
        │       │           ├── parts: (length: 4)
        │       │           │   ├── @ EmbeddedStatementsNode (location: (84,3)-(84,6))
        │       │           │   │   ├── opening_loc: (84,3)-(84,5) = "\#{"
        │       │           │   │   ├── statements: ∅
        │       │           │   │   └── closing_loc: (84,5)-(84,6) = "}"
        │       │           │   ├── @ StringNode (location: (84,6)-(85,0))
        │       │           │   │   ├── flags: frozen
        │       │           │   │   ├── opening_loc: ∅
        │       │           │   │   ├── content_loc: (84,6)-(85,0) = "\n"
        │       │           │   │   ├── closing_loc: ∅
        │       │           │   │   └── unescaped: "\n"
        │       │           │   ├── @ EmbeddedStatementsNode (location: (85,0)-(85,3))
        │       │           │   │   ├── opening_loc: (85,0)-(85,2) = "\#{"
        │       │           │   │   ├── statements: ∅
        │       │           │   │   └── closing_loc: (85,2)-(85,3) = "}"
        │       │           │   └── @ StringNode (location: (85,3)-(85,6))
        │       │           │       ├── flags: frozen
        │       │           │       ├── opening_loc: ∅
        │       │           │       ├── content_loc: (85,3)-(85,6) = "\\na"
        │       │           │       ├── closing_loc: ∅
        │       │           │       └── unescaped: "\na"
        │       │           └── closing_loc: (85,6)-(85,7) = "\""
        │       ├── opening_loc: (83,4)-(83,5) = "{"
        │       └── closing_loc: (86,0)-(86,1) = "}"
        ├── @ SymbolNode (location: (87,0)-(88,2))
        │   ├── flags: forced_us_ascii_encoding
        │   ├── opening_loc: (87,0)-(87,2) = ":\""
        │   ├── value_loc: (87,2)-(88,1) = "a\\\\\nb"
        │   ├── closing_loc: (88,1)-(88,2) = "\""
        │   └── unescaped: "a\\\nb"
        └── @ InterpolatedXStringNode (location: (89,0)-(91,2))
            ├── opening_loc: (89,0)-(89,1) = "`"
            ├── parts: (length: 3)
            │   ├── @ StringNode (location: (89,1)-(90,0))
            │   │   ├── flags: frozen
            │   │   ├── opening_loc: ∅
            │   │   ├── content_loc: (89,1)-(90,0) = "  x\n"
            │   │   ├── closing_loc: ∅
            │   │   └── unescaped: "  x\n"
            │   ├── @ EmbeddedStatementsNode (location: (90,0)-(90,6))
            │   │   ├── opening_loc: (90,0)-(90,2) = "\#{"
            │   │   ├── statements:
            │   │   │   @ StatementsNode (location: (90,2)-(90,5))
            │   │   │   └── body: (length: 1)
            │   │   │       └── @ CallNode (location: (90,2)-(90,5))
            │   │   │           ├── flags: variable_call, ignore_visibility
            │   │   │           ├── receiver: ∅
            │   │   │           ├── call_operator_loc: ∅
            │   │   │           ├── name: :foo
            │   │   │           ├── message_loc: (90,2)-(90,5) = "foo"
            │   │   │           ├── opening_loc: ∅
            │   │   │           ├── arguments: ∅
            │   │   │           ├── closing_loc: ∅
            │   │   │           └── block: ∅
            │   │   └── closing_loc: (90,5)-(90,6) = "}"
            │   └── @ StringNode (location: (90,6)-(91,1))
            │       ├── flags: frozen
            │       ├── opening_loc: ∅
            │       ├── content_loc: (90,6)-(91,1) = "\n#"
            │       ├── closing_loc: ∅
            │       └── unescaped: "\n#"
            └── closing_loc: (91,1)-(91,2) = "`"