Files @ f81833cf998f
Branch filter:

Location: CSY/reowolf/ast_output.txt

mh
Fix bug in search key for type table
   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
Root[0000]- Module:
             - Pragmas:
             - Imports:
             - Definitions:
DefS[0007]    - DefinitionStruct:
                 - Name: Holder
                   - PolyVar: T
                 - Fields:
                   - Field:
                     - Name: left
                     - Type: T[]
                   - Field:
                     - Name: right
                     - Type: T[]
DefF[0008]    - DefinitionFunction:
                 - Name: create_array
                   - PolyVar: T
                 - ReturnParserType: T[]
                 - Parameters:
Var [0008]        - Variable:
                     - Name: first_index
                     - Kind: Parameter
                     - ParserType: T
                     - RelativePos: -1
                     - UniqueScopeID: 0
Var [0009]        - Variable:
                     - Name: last_index
                     - Kind: Parameter
                     - ParserType: T
                     - RelativePos: -1
                     - UniqueScopeID: 1
                 - Body:
SBl [0008]        - Block:
                     - EndBlockID: 9
                     - ScopeID: 2
                     - Statements:
SMem[0000]            - LocalMemory:
                         - Variable:
Var [0010]                - Variable:
                             - Name: result
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 0
                             - UniqueScopeID: 2
                         - InitialValue:
EAsi[0002]                - AssignmentExpr:
                             - UniqueId: 0
                             - Operation: Set
                             - Left:
EVar[0001]                    - VariableExpr:
                                 - UniqueId: 1
                                 - Name: result
                                 - Definition: Some(10)
                                 - Parent: Expr(2, 0)
                             - Right:
ELit[0000]                    - LiteralExpr:
                                 - UniqueId: 2
                                 - Value: Array
                                   - Elements:
                                 - Parent: Expr(2, 1)
                             - Parent: MemStmt(0)
                         - Next: 5
SWhi[0005]            - While:
                         - EndWhile: 6
                         - InSync: -1
                         - Condition:
EBin[0005]                - BinaryExpr:
                             - UniqueId: 3
                             - Operation: LessThan
                             - Left:
EVar[0003]                    - VariableExpr:
                                 - UniqueId: 4
                                 - Name: first_index
                                 - Definition: Some(8)
                                 - Parent: Expr(5, 0)
                             - Right:
EVar[0004]                    - VariableExpr:
                                 - UniqueId: 5
                                 - Name: last_index
                                 - Definition: Some(9)
                                 - Parent: Expr(5, 1)
                             - Parent: WhileStmt(5)
                         - Body:
SBl [0003]                - Block:
                             - EndBlockID: 4
                             - ScopeID: 0
                             - Statements:
SExp[0001]                    - ExpressionStatement:
EAsi[0011]                      - AssignmentExpr:
                                   - UniqueId: 6
                                   - Operation: Set
                                   - Left:
EVar[0006]                          - VariableExpr:
                                       - UniqueId: 7
                                       - Name: result
                                       - Definition: Some(10)
                                       - Parent: Expr(11, 0)
                                   - Right:
EBin[0010]                          - BinaryExpr:
                                       - UniqueId: 8
                                       - Operation: Concatenate
                                       - Left:
EVar[0007]                              - VariableExpr:
                                           - UniqueId: 9
                                           - Name: result
                                           - Definition: Some(10)
                                           - Parent: Expr(10, 0)
                                       - Right:
ELit[0009]                              - LiteralExpr:
                                           - UniqueId: 10
                                           - Value: Array
                                             - Elements:
EVar[0008]                                    - VariableExpr:
                                                 - UniqueId: 11
                                                 - Name: first_index
                                                 - Definition: Some(8)
                                                 - Parent: Expr(9, 0)
                                           - Parent: Expr(10, 1)
                                       - Parent: Expr(11, 1)
                                   - Parent: ExprStmt(1)
                                 - Next: 2
SExp[0002]                    - ExpressionStatement:
EAsi[0014]                      - AssignmentExpr:
                                   - UniqueId: 12
                                   - Operation: Added
                                   - Left:
EVar[0012]                          - VariableExpr:
                                       - UniqueId: 13
                                       - Name: first_index
                                       - Definition: Some(8)
                                       - Parent: Expr(14, 0)
                                   - Right:
ELit[0013]                          - LiteralExpr:
                                       - UniqueId: 14
                                       - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                       - Parent: Expr(14, 1)
                                   - Parent: ExprStmt(2)
                                 - Next: 4
SRet[0007]            - Return:
                         - Expressions:
EVar[0015]                - VariableExpr:
                             - UniqueId: 15
                             - Name: result
                             - Definition: Some(10)
                             - Parent: ReturnStmt(7)
DefF[0009]    - DefinitionFunction:
                 - Name: create_holder
                   - PolyVar: T
                 - ReturnParserType: Holder<T>
                 - Parameters:
Var [0011]        - Variable:
                     - Name: left_first
                     - Kind: Parameter
                     - ParserType: T
                     - RelativePos: -1
                     - UniqueScopeID: 0
Var [0012]        - Variable:
                     - Name: left_last
                     - Kind: Parameter
                     - ParserType: T
                     - RelativePos: -1
                     - UniqueScopeID: 1
Var [0013]        - Variable:
                     - Name: right_first
                     - Kind: Parameter
                     - ParserType: T
                     - RelativePos: -1
                     - UniqueScopeID: 2
Var [0014]        - Variable:
                     - Name: right_last
                     - Kind: Parameter
                     - ParserType: T
                     - RelativePos: -1
                     - UniqueScopeID: 3
                 - Body:
SBl [0011]        - Block:
                     - EndBlockID: 12
                     - ScopeID: 4
                     - Statements:
SRet[0010]            - Return:
                         - Expressions:
ELit[0022]                - LiteralExpr:
                             - UniqueId: 0
                             - Value: Struct
                               - ParserType: Holder<auto>
                               - Definition: 7
                               - Field:
                                 - Name: left
                                 - Index: 0
                                 - ParserType:
ECll[0018]                        - CallExpr:
                                     - UniqueId: 1
                                     - BuiltIn: false
                                     - Variant: Function
                                     - MethodName: create_array
                                     - ParserType: create_array<auto>
                                     - Arguments:
EVar[0016]                            - VariableExpr:
                                         - UniqueId: 2
                                         - Name: left_first
                                         - Definition: Some(11)
                                         - Parent: Expr(18, 0)
EVar[0017]                            - VariableExpr:
                                         - UniqueId: 3
                                         - Name: left_last
                                         - Definition: Some(12)
                                         - Parent: Expr(18, 1)
                                     - Parent: Expr(22, 0)
                               - Field:
                                 - Name: right
                                 - Index: 1
                                 - ParserType:
ECll[0021]                        - CallExpr:
                                     - UniqueId: 4
                                     - BuiltIn: false
                                     - Variant: Function
                                     - MethodName: create_array
                                     - ParserType: create_array<auto>
                                     - Arguments:
EVar[0019]                            - VariableExpr:
                                         - UniqueId: 5
                                         - Name: right_first
                                         - Definition: Some(13)
                                         - Parent: Expr(21, 0)
EVar[0020]                            - VariableExpr:
                                         - UniqueId: 6
                                         - Name: right_last
                                         - Definition: Some(14)
                                         - Parent: Expr(21, 1)
                                     - Parent: Expr(22, 1)
                             - Parent: ReturnStmt(10)
DefF[0010]    - DefinitionFunction:
                 - Name: slicing_magic
                   - PolyVar: T
                 - ReturnParserType: T[]
                 - Parameters:
Var [0015]        - Variable:
                     - Name: holder
                     - Kind: Parameter
                     - ParserType: Holder<T>
                     - RelativePos: -1
                     - UniqueScopeID: 0
Var [0016]        - Variable:
                     - Name: left_base
                     - Kind: Parameter
                     - ParserType: u32
                     - RelativePos: -1
                     - UniqueScopeID: 1
Var [0017]        - Variable:
                     - Name: left_amount
                     - Kind: Parameter
                     - ParserType: u32
                     - RelativePos: -1
                     - UniqueScopeID: 2
Var [0018]        - Variable:
                     - Name: right_base
                     - Kind: Parameter
                     - ParserType: u32
                     - RelativePos: -1
                     - UniqueScopeID: 3
Var [0019]        - Variable:
                     - Name: right_amount
                     - Kind: Parameter
                     - ParserType: u32
                     - RelativePos: -1
                     - UniqueScopeID: 4
                 - Body:
SBl [0016]        - Block:
                     - EndBlockID: 17
                     - ScopeID: 6
                     - Statements:
SMem[0013]            - LocalMemory:
                         - Variable:
Var [0020]                - Variable:
                             - Name: left
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 0
                             - UniqueScopeID: 5
                         - InitialValue:
EAsi[0031]                - AssignmentExpr:
                             - UniqueId: 0
                             - Operation: Set
                             - Left:
EVar[0030]                    - VariableExpr:
                                 - UniqueId: 1
                                 - Name: left
                                 - Definition: Some(20)
                                 - Parent: Expr(31, 0)
                             - Right:
ESli[0029]                    - SlicingExpr:
                                 - UniqueId: 2
                                 - Subject:
ESel[0024]                        - SelectExpr:
                                     - UniqueId: 3
                                     - Subject:
EVar[0023]                            - VariableExpr:
                                         - UniqueId: 4
                                         - Name: holder
                                         - Definition: Some(15)
                                         - Parent: Expr(24, 0)
                                     - StructField: left
                                     - Parent: Expr(29, 0)
                                 - FromIndex:
EVar[0025]                        - VariableExpr:
                                     - UniqueId: 5
                                     - Name: left_base
                                     - Definition: Some(16)
                                     - Parent: Expr(29, 1)
                                 - ToIndex:
EBin[0028]                        - BinaryExpr:
                                     - UniqueId: 6
                                     - Operation: Add
                                     - Left:
EVar[0026]                            - VariableExpr:
                                         - UniqueId: 7
                                         - Name: left_base
                                         - Definition: Some(16)
                                         - Parent: Expr(28, 0)
                                     - Right:
EVar[0027]                            - VariableExpr:
                                         - UniqueId: 8
                                         - Name: left_amount
                                         - Definition: Some(17)
                                         - Parent: Expr(28, 1)
                                     - Parent: Expr(29, 2)
                                 - Parent: Expr(31, 1)
                             - Parent: MemStmt(13)
                         - Next: 14
SMem[0014]            - LocalMemory:
                         - Variable:
Var [0021]                - Variable:
                             - Name: right
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 1
                             - UniqueScopeID: 6
                         - InitialValue:
EAsi[0040]                - AssignmentExpr:
                             - UniqueId: 9
                             - Operation: Set
                             - Left:
EVar[0039]                    - VariableExpr:
                                 - UniqueId: 10
                                 - Name: right
                                 - Definition: Some(21)
                                 - Parent: Expr(40, 0)
                             - Right:
ESli[0038]                    - SlicingExpr:
                                 - UniqueId: 11
                                 - Subject:
ESel[0033]                        - SelectExpr:
                                     - UniqueId: 12
                                     - Subject:
EVar[0032]                            - VariableExpr:
                                         - UniqueId: 13
                                         - Name: holder
                                         - Definition: Some(15)
                                         - Parent: Expr(33, 0)
                                     - StructField: right
                                     - Parent: Expr(38, 0)
                                 - FromIndex:
EVar[0034]                        - VariableExpr:
                                     - UniqueId: 14
                                     - Name: right_base
                                     - Definition: Some(18)
                                     - Parent: Expr(38, 1)
                                 - ToIndex:
EBin[0037]                        - BinaryExpr:
                                     - UniqueId: 15
                                     - Operation: Add
                                     - Left:
EVar[0035]                            - VariableExpr:
                                         - UniqueId: 16
                                         - Name: right_base
                                         - Definition: Some(18)
                                         - Parent: Expr(37, 0)
                                     - Right:
EVar[0036]                            - VariableExpr:
                                         - UniqueId: 17
                                         - Name: right_amount
                                         - Definition: Some(19)
                                         - Parent: Expr(37, 1)
                                     - Parent: Expr(38, 2)
                                 - Parent: Expr(40, 1)
                             - Parent: MemStmt(14)
                         - Next: 15
SRet[0015]            - Return:
                         - Expressions:
EBin[0049]                - BinaryExpr:
                             - UniqueId: 18
                             - Operation: Concatenate
                             - Left:
ESli[0044]                    - SlicingExpr:
                                 - UniqueId: 19
                                 - Subject:
EVar[0041]                        - VariableExpr:
                                     - UniqueId: 20
                                     - Name: left
                                     - Definition: Some(20)
                                     - Parent: Expr(44, 0)
                                 - FromIndex:
ELit[0042]                        - LiteralExpr:
                                     - UniqueId: 21
                                     - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                     - Parent: Expr(44, 1)
                                 - ToIndex:
ELit[0043]                        - LiteralExpr:
                                     - UniqueId: 22
                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                     - Parent: Expr(44, 2)
                                 - Parent: Expr(49, 0)
                             - Right:
ESli[0048]                    - SlicingExpr:
                                 - UniqueId: 23
                                 - Subject:
EVar[0045]                        - VariableExpr:
                                     - UniqueId: 24
                                     - Name: right
                                     - Definition: Some(21)
                                     - Parent: Expr(48, 0)
                                 - FromIndex:
ELit[0046]                        - LiteralExpr:
                                     - UniqueId: 25
                                     - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                     - Parent: Expr(48, 1)
                                 - ToIndex:
ELit[0047]                        - LiteralExpr:
                                     - UniqueId: 26
                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                     - Parent: Expr(48, 2)
                                 - Parent: Expr(49, 1)
                             - Parent: ReturnStmt(15)
DefF[0011]    - DefinitionFunction:
                 - Name: foo
                 - ReturnParserType: bool
                 - Parameters:
                 - Body:
SBl [0031]        - Block:
                     - EndBlockID: 32
                     - ScopeID: 8
                     - Statements:
SMem[0018]            - LocalMemory:
                         - Variable:
Var [0022]                - Variable:
                             - Name: created_u08
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 0
                             - UniqueScopeID: 0
                         - InitialValue:
EAsi[0056]                - AssignmentExpr:
                             - UniqueId: 0
                             - Operation: Set
                             - Left:
EVar[0055]                    - VariableExpr:
                                 - UniqueId: 1
                                 - Name: created_u08
                                 - Definition: Some(22)
                                 - Parent: Expr(56, 0)
                             - Right:
ECll[0054]                    - CallExpr:
                                 - UniqueId: 2
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: create_holder
                                 - ParserType: create_holder<u8>
                                 - Arguments:
ELit[0050]                        - LiteralExpr:
                                     - UniqueId: 3
                                     - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                     - Parent: Expr(54, 0)
ELit[0051]                        - LiteralExpr:
                                     - UniqueId: 4
                                     - Value: LiteralInteger { unsigned_value: 5, negated: false }
                                     - Parent: Expr(54, 1)
ELit[0052]                        - LiteralExpr:
                                     - UniqueId: 5
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(54, 2)
ELit[0053]                        - LiteralExpr:
                                     - UniqueId: 6
                                     - Value: LiteralInteger { unsigned_value: 8, negated: false }
                                     - Parent: Expr(54, 3)
                                 - Parent: Expr(56, 1)
                             - Parent: MemStmt(18)
                         - Next: 19
SMem[0019]            - LocalMemory:
                         - Variable:
Var [0023]                - Variable:
                             - Name: created_u16
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 1
                             - UniqueScopeID: 1
                         - InitialValue:
EAsi[0063]                - AssignmentExpr:
                             - UniqueId: 7
                             - Operation: Set
                             - Left:
EVar[0062]                    - VariableExpr:
                                 - UniqueId: 8
                                 - Name: created_u16
                                 - Definition: Some(23)
                                 - Parent: Expr(63, 0)
                             - Right:
ECll[0061]                    - CallExpr:
                                 - UniqueId: 9
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: create_holder
                                 - ParserType: create_holder<u16>
                                 - Arguments:
ELit[0057]                        - LiteralExpr:
                                     - UniqueId: 10
                                     - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                     - Parent: Expr(61, 0)
ELit[0058]                        - LiteralExpr:
                                     - UniqueId: 11
                                     - Value: LiteralInteger { unsigned_value: 5, negated: false }
                                     - Parent: Expr(61, 1)
ELit[0059]                        - LiteralExpr:
                                     - UniqueId: 12
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(61, 2)
ELit[0060]                        - LiteralExpr:
                                     - UniqueId: 13
                                     - Value: LiteralInteger { unsigned_value: 8, negated: false }
                                     - Parent: Expr(61, 3)
                                 - Parent: Expr(63, 1)
                             - Parent: MemStmt(19)
                         - Next: 20
SMem[0020]            - LocalMemory:
                         - Variable:
Var [0024]                - Variable:
                             - Name: created_u32
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 2
                             - UniqueScopeID: 2
                         - InitialValue:
EAsi[0070]                - AssignmentExpr:
                             - UniqueId: 14
                             - Operation: Set
                             - Left:
EVar[0069]                    - VariableExpr:
                                 - UniqueId: 15
                                 - Name: created_u32
                                 - Definition: Some(24)
                                 - Parent: Expr(70, 0)
                             - Right:
ECll[0068]                    - CallExpr:
                                 - UniqueId: 16
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: create_holder
                                 - ParserType: create_holder<u32>
                                 - Arguments:
ELit[0064]                        - LiteralExpr:
                                     - UniqueId: 17
                                     - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                     - Parent: Expr(68, 0)
ELit[0065]                        - LiteralExpr:
                                     - UniqueId: 18
                                     - Value: LiteralInteger { unsigned_value: 5, negated: false }
                                     - Parent: Expr(68, 1)
ELit[0066]                        - LiteralExpr:
                                     - UniqueId: 19
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(68, 2)
ELit[0067]                        - LiteralExpr:
                                     - UniqueId: 20
                                     - Value: LiteralInteger { unsigned_value: 8, negated: false }
                                     - Parent: Expr(68, 3)
                                 - Parent: Expr(70, 1)
                             - Parent: MemStmt(20)
                         - Next: 21
SMem[0021]            - LocalMemory:
                         - Variable:
Var [0025]                - Variable:
                             - Name: created_u64
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 3
                             - UniqueScopeID: 3
                         - InitialValue:
EAsi[0077]                - AssignmentExpr:
                             - UniqueId: 21
                             - Operation: Set
                             - Left:
EVar[0076]                    - VariableExpr:
                                 - UniqueId: 22
                                 - Name: created_u64
                                 - Definition: Some(25)
                                 - Parent: Expr(77, 0)
                             - Right:
ECll[0075]                    - CallExpr:
                                 - UniqueId: 23
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: create_holder
                                 - ParserType: create_holder<u64>
                                 - Arguments:
ELit[0071]                        - LiteralExpr:
                                     - UniqueId: 24
                                     - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                     - Parent: Expr(75, 0)
ELit[0072]                        - LiteralExpr:
                                     - UniqueId: 25
                                     - Value: LiteralInteger { unsigned_value: 5, negated: false }
                                     - Parent: Expr(75, 1)
ELit[0073]                        - LiteralExpr:
                                     - UniqueId: 26
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(75, 2)
ELit[0074]                        - LiteralExpr:
                                     - UniqueId: 27
                                     - Value: LiteralInteger { unsigned_value: 8, negated: false }
                                     - Parent: Expr(75, 3)
                                 - Parent: Expr(77, 1)
                             - Parent: MemStmt(21)
                         - Next: 22
SMem[0022]            - LocalMemory:
                         - Variable:
Var [0026]                - Variable:
                             - Name: result_u08
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 4
                             - UniqueScopeID: 4
                         - InitialValue:
EAsi[0085]                - AssignmentExpr:
                             - UniqueId: 28
                             - Operation: Set
                             - Left:
EVar[0084]                    - VariableExpr:
                                 - UniqueId: 29
                                 - Name: result_u08
                                 - Definition: Some(26)
                                 - Parent: Expr(85, 0)
                             - Right:
ECll[0083]                    - CallExpr:
                                 - UniqueId: 30
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: slicing_magic
                                 - ParserType: slicing_magic<auto>
                                 - Arguments:
EVar[0078]                        - VariableExpr:
                                     - UniqueId: 31
                                     - Name: created_u08
                                     - Definition: Some(22)
                                     - Parent: Expr(83, 0)
ELit[0079]                        - LiteralExpr:
                                     - UniqueId: 32
                                     - Value: LiteralInteger { unsigned_value: 3, negated: false }
                                     - Parent: Expr(83, 1)
ELit[0080]                        - LiteralExpr:
                                     - UniqueId: 33
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(83, 2)
ELit[0081]                        - LiteralExpr:
                                     - UniqueId: 34
                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                     - Parent: Expr(83, 3)
ELit[0082]                        - LiteralExpr:
                                     - UniqueId: 35
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(83, 4)
                                 - Parent: Expr(85, 1)
                             - Parent: MemStmt(22)
                         - Next: 23
SMem[0023]            - LocalMemory:
                         - Variable:
Var [0027]                - Variable:
                             - Name: result_u16
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 5
                             - UniqueScopeID: 5
                         - InitialValue:
EAsi[0093]                - AssignmentExpr:
                             - UniqueId: 36
                             - Operation: Set
                             - Left:
EVar[0092]                    - VariableExpr:
                                 - UniqueId: 37
                                 - Name: result_u16
                                 - Definition: Some(27)
                                 - Parent: Expr(93, 0)
                             - Right:
ECll[0091]                    - CallExpr:
                                 - UniqueId: 38
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: slicing_magic
                                 - ParserType: slicing_magic<auto>
                                 - Arguments:
EVar[0086]                        - VariableExpr:
                                     - UniqueId: 39
                                     - Name: created_u16
                                     - Definition: Some(23)
                                     - Parent: Expr(91, 0)
ELit[0087]                        - LiteralExpr:
                                     - UniqueId: 40
                                     - Value: LiteralInteger { unsigned_value: 3, negated: false }
                                     - Parent: Expr(91, 1)
ELit[0088]                        - LiteralExpr:
                                     - UniqueId: 41
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(91, 2)
ELit[0089]                        - LiteralExpr:
                                     - UniqueId: 42
                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                     - Parent: Expr(91, 3)
ELit[0090]                        - LiteralExpr:
                                     - UniqueId: 43
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(91, 4)
                                 - Parent: Expr(93, 1)
                             - Parent: MemStmt(23)
                         - Next: 24
SMem[0024]            - LocalMemory:
                         - Variable:
Var [0028]                - Variable:
                             - Name: result_u32
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 6
                             - UniqueScopeID: 6
                         - InitialValue:
EAsi[0101]                - AssignmentExpr:
                             - UniqueId: 44
                             - Operation: Set
                             - Left:
EVar[0100]                    - VariableExpr:
                                 - UniqueId: 45
                                 - Name: result_u32
                                 - Definition: Some(28)
                                 - Parent: Expr(101, 0)
                             - Right:
ECll[0099]                    - CallExpr:
                                 - UniqueId: 46
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: slicing_magic
                                 - ParserType: slicing_magic<auto>
                                 - Arguments:
EVar[0094]                        - VariableExpr:
                                     - UniqueId: 47
                                     - Name: created_u32
                                     - Definition: Some(24)
                                     - Parent: Expr(99, 0)
ELit[0095]                        - LiteralExpr:
                                     - UniqueId: 48
                                     - Value: LiteralInteger { unsigned_value: 3, negated: false }
                                     - Parent: Expr(99, 1)
ELit[0096]                        - LiteralExpr:
                                     - UniqueId: 49
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(99, 2)
ELit[0097]                        - LiteralExpr:
                                     - UniqueId: 50
                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                     - Parent: Expr(99, 3)
ELit[0098]                        - LiteralExpr:
                                     - UniqueId: 51
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(99, 4)
                                 - Parent: Expr(101, 1)
                             - Parent: MemStmt(24)
                         - Next: 25
SMem[0025]            - LocalMemory:
                         - Variable:
Var [0029]                - Variable:
                             - Name: result_u64
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 7
                             - UniqueScopeID: 7
                         - InitialValue:
EAsi[0109]                - AssignmentExpr:
                             - UniqueId: 52
                             - Operation: Set
                             - Left:
EVar[0108]                    - VariableExpr:
                                 - UniqueId: 53
                                 - Name: result_u64
                                 - Definition: Some(29)
                                 - Parent: Expr(109, 0)
                             - Right:
ECll[0107]                    - CallExpr:
                                 - UniqueId: 54
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: slicing_magic
                                 - ParserType: slicing_magic<auto>
                                 - Arguments:
EVar[0102]                        - VariableExpr:
                                     - UniqueId: 55
                                     - Name: created_u64
                                     - Definition: Some(25)
                                     - Parent: Expr(107, 0)
ELit[0103]                        - LiteralExpr:
                                     - UniqueId: 56
                                     - Value: LiteralInteger { unsigned_value: 3, negated: false }
                                     - Parent: Expr(107, 1)
ELit[0104]                        - LiteralExpr:
                                     - UniqueId: 57
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(107, 2)
ELit[0105]                        - LiteralExpr:
                                     - UniqueId: 58
                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                     - Parent: Expr(107, 3)
ELit[0106]                        - LiteralExpr:
                                     - UniqueId: 59
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(107, 4)
                                 - Parent: Expr(109, 1)
                             - Parent: MemStmt(25)
                         - Next: 26
SMem[0026]            - LocalMemory:
                         - Variable:
Var [0030]                - Variable:
                             - Name: result_s08
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 8
                             - UniqueScopeID: 8
                         - InitialValue:
EAsi[0121]                - AssignmentExpr:
                             - UniqueId: 60
                             - Operation: Set
                             - Left:
EVar[0120]                    - VariableExpr:
                                 - UniqueId: 61
                                 - Name: result_s08
                                 - Definition: Some(30)
                                 - Parent: Expr(121, 0)
                             - Right:
ECll[0119]                    - CallExpr:
                                 - UniqueId: 62
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: slicing_magic
                                 - ParserType: slicing_magic<auto>
                                 - Arguments:
ECll[0114]                        - CallExpr:
                                     - UniqueId: 63
                                     - BuiltIn: false
                                     - Variant: Function
                                     - MethodName: create_holder
                                     - ParserType: create_holder<s8>
                                     - Arguments:
ELit[0110]                            - LiteralExpr:
                                         - UniqueId: 64
                                         - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                         - Parent: Expr(114, 0)
ELit[0111]                            - LiteralExpr:
                                         - UniqueId: 65
                                         - Value: LiteralInteger { unsigned_value: 5, negated: false }
                                         - Parent: Expr(114, 1)
ELit[0112]                            - LiteralExpr:
                                         - UniqueId: 66
                                         - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                         - Parent: Expr(114, 2)
ELit[0113]                            - LiteralExpr:
                                         - UniqueId: 67
                                         - Value: LiteralInteger { unsigned_value: 8, negated: false }
                                         - Parent: Expr(114, 3)
                                     - Parent: Expr(119, 0)
ELit[0115]                        - LiteralExpr:
                                     - UniqueId: 68
                                     - Value: LiteralInteger { unsigned_value: 3, negated: false }
                                     - Parent: Expr(119, 1)
ELit[0116]                        - LiteralExpr:
                                     - UniqueId: 69
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(119, 2)
ELit[0117]                        - LiteralExpr:
                                     - UniqueId: 70
                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                     - Parent: Expr(119, 3)
ELit[0118]                        - LiteralExpr:
                                     - UniqueId: 71
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(119, 4)
                                 - Parent: Expr(121, 1)
                             - Parent: MemStmt(26)
                         - Next: 27
SMem[0027]            - LocalMemory:
                         - Variable:
Var [0031]                - Variable:
                             - Name: result_s16
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 9
                             - UniqueScopeID: 9
                         - InitialValue:
EAsi[0133]                - AssignmentExpr:
                             - UniqueId: 72
                             - Operation: Set
                             - Left:
EVar[0132]                    - VariableExpr:
                                 - UniqueId: 73
                                 - Name: result_s16
                                 - Definition: Some(31)
                                 - Parent: Expr(133, 0)
                             - Right:
ECll[0131]                    - CallExpr:
                                 - UniqueId: 74
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: slicing_magic
                                 - ParserType: slicing_magic<auto>
                                 - Arguments:
ECll[0126]                        - CallExpr:
                                     - UniqueId: 75
                                     - BuiltIn: false
                                     - Variant: Function
                                     - MethodName: create_holder
                                     - ParserType: create_holder<s16>
                                     - Arguments:
ELit[0122]                            - LiteralExpr:
                                         - UniqueId: 76
                                         - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                         - Parent: Expr(126, 0)
ELit[0123]                            - LiteralExpr:
                                         - UniqueId: 77
                                         - Value: LiteralInteger { unsigned_value: 5, negated: false }
                                         - Parent: Expr(126, 1)
ELit[0124]                            - LiteralExpr:
                                         - UniqueId: 78
                                         - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                         - Parent: Expr(126, 2)
ELit[0125]                            - LiteralExpr:
                                         - UniqueId: 79
                                         - Value: LiteralInteger { unsigned_value: 8, negated: false }
                                         - Parent: Expr(126, 3)
                                     - Parent: Expr(131, 0)
ELit[0127]                        - LiteralExpr:
                                     - UniqueId: 80
                                     - Value: LiteralInteger { unsigned_value: 3, negated: false }
                                     - Parent: Expr(131, 1)
ELit[0128]                        - LiteralExpr:
                                     - UniqueId: 81
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(131, 2)
ELit[0129]                        - LiteralExpr:
                                     - UniqueId: 82
                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                     - Parent: Expr(131, 3)
ELit[0130]                        - LiteralExpr:
                                     - UniqueId: 83
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(131, 4)
                                 - Parent: Expr(133, 1)
                             - Parent: MemStmt(27)
                         - Next: 28
SMem[0028]            - LocalMemory:
                         - Variable:
Var [0032]                - Variable:
                             - Name: result_s32
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 10
                             - UniqueScopeID: 10
                         - InitialValue:
EAsi[0145]                - AssignmentExpr:
                             - UniqueId: 84
                             - Operation: Set
                             - Left:
EVar[0144]                    - VariableExpr:
                                 - UniqueId: 85
                                 - Name: result_s32
                                 - Definition: Some(32)
                                 - Parent: Expr(145, 0)
                             - Right:
ECll[0143]                    - CallExpr:
                                 - UniqueId: 86
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: slicing_magic
                                 - ParserType: slicing_magic<auto>
                                 - Arguments:
ECll[0138]                        - CallExpr:
                                     - UniqueId: 87
                                     - BuiltIn: false
                                     - Variant: Function
                                     - MethodName: create_holder
                                     - ParserType: create_holder<s32>
                                     - Arguments:
ELit[0134]                            - LiteralExpr:
                                         - UniqueId: 88
                                         - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                         - Parent: Expr(138, 0)
ELit[0135]                            - LiteralExpr:
                                         - UniqueId: 89
                                         - Value: LiteralInteger { unsigned_value: 5, negated: false }
                                         - Parent: Expr(138, 1)
ELit[0136]                            - LiteralExpr:
                                         - UniqueId: 90
                                         - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                         - Parent: Expr(138, 2)
ELit[0137]                            - LiteralExpr:
                                         - UniqueId: 91
                                         - Value: LiteralInteger { unsigned_value: 8, negated: false }
                                         - Parent: Expr(138, 3)
                                     - Parent: Expr(143, 0)
ELit[0139]                        - LiteralExpr:
                                     - UniqueId: 92
                                     - Value: LiteralInteger { unsigned_value: 3, negated: false }
                                     - Parent: Expr(143, 1)
ELit[0140]                        - LiteralExpr:
                                     - UniqueId: 93
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(143, 2)
ELit[0141]                        - LiteralExpr:
                                     - UniqueId: 94
                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                     - Parent: Expr(143, 3)
ELit[0142]                        - LiteralExpr:
                                     - UniqueId: 95
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(143, 4)
                                 - Parent: Expr(145, 1)
                             - Parent: MemStmt(28)
                         - Next: 29
SMem[0029]            - LocalMemory:
                         - Variable:
Var [0033]                - Variable:
                             - Name: result_s64
                             - Kind: Local
                             - ParserType: auto
                             - RelativePos: 11
                             - UniqueScopeID: 11
                         - InitialValue:
EAsi[0157]                - AssignmentExpr:
                             - UniqueId: 96
                             - Operation: Set
                             - Left:
EVar[0156]                    - VariableExpr:
                                 - UniqueId: 97
                                 - Name: result_s64
                                 - Definition: Some(33)
                                 - Parent: Expr(157, 0)
                             - Right:
ECll[0155]                    - CallExpr:
                                 - UniqueId: 98
                                 - BuiltIn: false
                                 - Variant: Function
                                 - MethodName: slicing_magic
                                 - ParserType: slicing_magic<auto>
                                 - Arguments:
ECll[0150]                        - CallExpr:
                                     - UniqueId: 99
                                     - BuiltIn: false
                                     - Variant: Function
                                     - MethodName: create_holder
                                     - ParserType: create_holder<s64>
                                     - Arguments:
ELit[0146]                            - LiteralExpr:
                                         - UniqueId: 100
                                         - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                         - Parent: Expr(150, 0)
ELit[0147]                            - LiteralExpr:
                                         - UniqueId: 101
                                         - Value: LiteralInteger { unsigned_value: 5, negated: false }
                                         - Parent: Expr(150, 1)
ELit[0148]                            - LiteralExpr:
                                         - UniqueId: 102
                                         - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                         - Parent: Expr(150, 2)
ELit[0149]                            - LiteralExpr:
                                         - UniqueId: 103
                                         - Value: LiteralInteger { unsigned_value: 8, negated: false }
                                         - Parent: Expr(150, 3)
                                     - Parent: Expr(155, 0)
ELit[0151]                        - LiteralExpr:
                                     - UniqueId: 104
                                     - Value: LiteralInteger { unsigned_value: 3, negated: false }
                                     - Parent: Expr(155, 1)
ELit[0152]                        - LiteralExpr:
                                     - UniqueId: 105
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(155, 2)
ELit[0153]                        - LiteralExpr:
                                     - UniqueId: 106
                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                     - Parent: Expr(155, 3)
ELit[0154]                        - LiteralExpr:
                                     - UniqueId: 107
                                     - Value: LiteralInteger { unsigned_value: 2, negated: false }
                                     - Parent: Expr(155, 4)
                                 - Parent: Expr(157, 1)
                             - Parent: MemStmt(29)
                         - Next: 30
SRet[0030]            - Return:
                         - Expressions:
EBin[0236]                - BinaryExpr:
                             - UniqueId: 108
                             - Operation: LogicalAnd
                             - Left:
EBin[0226]                    - BinaryExpr:
                                 - UniqueId: 109
                                 - Operation: LogicalAnd
                                 - Left:
EBin[0216]                        - BinaryExpr:
                                     - UniqueId: 110
                                     - Operation: LogicalAnd
                                     - Left:
EBin[0206]                            - BinaryExpr:
                                         - UniqueId: 111
                                         - Operation: LogicalAnd
                                         - Left:
EBin[0196]                                - BinaryExpr:
                                             - UniqueId: 112
                                             - Operation: LogicalAnd
                                             - Left:
EBin[0186]                                    - BinaryExpr:
                                                 - UniqueId: 113
                                                 - Operation: LogicalAnd
                                                 - Left:
EBin[0176]                                        - BinaryExpr:
                                                     - UniqueId: 114
                                                     - Operation: LogicalAnd
                                                     - Left:
EBin[0166]                                            - BinaryExpr:
                                                         - UniqueId: 115
                                                         - Operation: Equality
                                                         - Left:
EBin[0164]                                                - BinaryExpr:
                                                             - UniqueId: 116
                                                             - Operation: Add
                                                             - Left:
EIdx[0160]                                                    - IndexingExpr:
                                                                 - UniqueId: 117
                                                                 - Subject:
EVar[0158]                                                        - VariableExpr:
                                                                     - UniqueId: 118
                                                                     - Name: result_u08
                                                                     - Definition: Some(26)
                                                                     - Parent: Expr(160, 0)
                                                                 - Index:
ELit[0159]                                                        - LiteralExpr:
                                                                     - UniqueId: 119
                                                                     - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                                                     - Parent: Expr(160, 1)
                                                                 - Parent: Expr(164, 0)
                                                             - Right:
EIdx[0163]                                                    - IndexingExpr:
                                                                 - UniqueId: 120
                                                                 - Subject:
EVar[0161]                                                        - VariableExpr:
                                                                     - UniqueId: 121
                                                                     - Name: result_u08
                                                                     - Definition: Some(26)
                                                                     - Parent: Expr(163, 0)
                                                                 - Index:
ELit[0162]                                                        - LiteralExpr:
                                                                     - UniqueId: 122
                                                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                                                     - Parent: Expr(163, 1)
                                                                 - Parent: Expr(164, 1)
                                                             - Parent: Expr(166, 0)
                                                         - Right:
ELit[0165]                                                - LiteralExpr:
                                                             - UniqueId: 123
                                                             - Value: LiteralInteger { unsigned_value: 6, negated: false }
                                                             - Parent: Expr(166, 1)
                                                         - Parent: Expr(176, 0)
                                                     - Right:
EBin[0175]                                            - BinaryExpr:
                                                         - UniqueId: 124
                                                         - Operation: Equality
                                                         - Left:
EBin[0173]                                                - BinaryExpr:
                                                             - UniqueId: 125
                                                             - Operation: Add
                                                             - Left:
EIdx[0169]                                                    - IndexingExpr:
                                                                 - UniqueId: 126
                                                                 - Subject:
EVar[0167]                                                        - VariableExpr:
                                                                     - UniqueId: 127
                                                                     - Name: result_u16
                                                                     - Definition: Some(27)
                                                                     - Parent: Expr(169, 0)
                                                                 - Index:
ELit[0168]                                                        - LiteralExpr:
                                                                     - UniqueId: 128
                                                                     - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                                                     - Parent: Expr(169, 1)
                                                                 - Parent: Expr(173, 0)
                                                             - Right:
EIdx[0172]                                                    - IndexingExpr:
                                                                 - UniqueId: 129
                                                                 - Subject:
EVar[0170]                                                        - VariableExpr:
                                                                     - UniqueId: 130
                                                                     - Name: result_u16
                                                                     - Definition: Some(27)
                                                                     - Parent: Expr(172, 0)
                                                                 - Index:
ELit[0171]                                                        - LiteralExpr:
                                                                     - UniqueId: 131
                                                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                                                     - Parent: Expr(172, 1)
                                                                 - Parent: Expr(173, 1)
                                                             - Parent: Expr(175, 0)
                                                         - Right:
ELit[0174]                                                - LiteralExpr:
                                                             - UniqueId: 132
                                                             - Value: LiteralInteger { unsigned_value: 6, negated: false }
                                                             - Parent: Expr(175, 1)
                                                         - Parent: Expr(176, 1)
                                                     - Parent: Expr(186, 0)
                                                 - Right:
EBin[0185]                                        - BinaryExpr:
                                                     - UniqueId: 133
                                                     - Operation: Equality
                                                     - Left:
EBin[0183]                                            - BinaryExpr:
                                                         - UniqueId: 134
                                                         - Operation: Add
                                                         - Left:
EIdx[0179]                                                - IndexingExpr:
                                                             - UniqueId: 135
                                                             - Subject:
EVar[0177]                                                    - VariableExpr:
                                                                 - UniqueId: 136
                                                                 - Name: result_u32
                                                                 - Definition: Some(28)
                                                                 - Parent: Expr(179, 0)
                                                             - Index:
ELit[0178]                                                    - LiteralExpr:
                                                                 - UniqueId: 137
                                                                 - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                                                 - Parent: Expr(179, 1)
                                                             - Parent: Expr(183, 0)
                                                         - Right:
EIdx[0182]                                                - IndexingExpr:
                                                             - UniqueId: 138
                                                             - Subject:
EVar[0180]                                                    - VariableExpr:
                                                                 - UniqueId: 139
                                                                 - Name: result_u32
                                                                 - Definition: Some(28)
                                                                 - Parent: Expr(182, 0)
                                                             - Index:
ELit[0181]                                                    - LiteralExpr:
                                                                 - UniqueId: 140
                                                                 - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                                                 - Parent: Expr(182, 1)
                                                             - Parent: Expr(183, 1)
                                                         - Parent: Expr(185, 0)
                                                     - Right:
ELit[0184]                                            - LiteralExpr:
                                                         - UniqueId: 141
                                                         - Value: LiteralInteger { unsigned_value: 6, negated: false }
                                                         - Parent: Expr(185, 1)
                                                     - Parent: Expr(186, 1)
                                                 - Parent: Expr(196, 0)
                                             - Right:
EBin[0195]                                    - BinaryExpr:
                                                 - UniqueId: 142
                                                 - Operation: Equality
                                                 - Left:
EBin[0193]                                        - BinaryExpr:
                                                     - UniqueId: 143
                                                     - Operation: Add
                                                     - Left:
EIdx[0189]                                            - IndexingExpr:
                                                         - UniqueId: 144
                                                         - Subject:
EVar[0187]                                                - VariableExpr:
                                                             - UniqueId: 145
                                                             - Name: result_u64
                                                             - Definition: Some(29)
                                                             - Parent: Expr(189, 0)
                                                         - Index:
ELit[0188]                                                - LiteralExpr:
                                                             - UniqueId: 146
                                                             - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                                             - Parent: Expr(189, 1)
                                                         - Parent: Expr(193, 0)
                                                     - Right:
EIdx[0192]                                            - IndexingExpr:
                                                         - UniqueId: 147
                                                         - Subject:
EVar[0190]                                                - VariableExpr:
                                                             - UniqueId: 148
                                                             - Name: result_u64
                                                             - Definition: Some(29)
                                                             - Parent: Expr(192, 0)
                                                         - Index:
ELit[0191]                                                - LiteralExpr:
                                                             - UniqueId: 149
                                                             - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                                             - Parent: Expr(192, 1)
                                                         - Parent: Expr(193, 1)
                                                     - Parent: Expr(195, 0)
                                                 - Right:
ELit[0194]                                        - LiteralExpr:
                                                     - UniqueId: 150
                                                     - Value: LiteralInteger { unsigned_value: 6, negated: false }
                                                     - Parent: Expr(195, 1)
                                                 - Parent: Expr(196, 1)
                                             - Parent: Expr(206, 0)
                                         - Right:
EBin[0205]                                - BinaryExpr:
                                             - UniqueId: 151
                                             - Operation: Equality
                                             - Left:
EBin[0203]                                    - BinaryExpr:
                                                 - UniqueId: 152
                                                 - Operation: Add
                                                 - Left:
EIdx[0199]                                        - IndexingExpr:
                                                     - UniqueId: 153
                                                     - Subject:
EVar[0197]                                            - VariableExpr:
                                                         - UniqueId: 154
                                                         - Name: result_s08
                                                         - Definition: Some(30)
                                                         - Parent: Expr(199, 0)
                                                     - Index:
ELit[0198]                                            - LiteralExpr:
                                                         - UniqueId: 155
                                                         - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                                         - Parent: Expr(199, 1)
                                                     - Parent: Expr(203, 0)
                                                 - Right:
EIdx[0202]                                        - IndexingExpr:
                                                     - UniqueId: 156
                                                     - Subject:
EVar[0200]                                            - VariableExpr:
                                                         - UniqueId: 157
                                                         - Name: result_s08
                                                         - Definition: Some(30)
                                                         - Parent: Expr(202, 0)
                                                     - Index:
ELit[0201]                                            - LiteralExpr:
                                                         - UniqueId: 158
                                                         - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                                         - Parent: Expr(202, 1)
                                                     - Parent: Expr(203, 1)
                                                 - Parent: Expr(205, 0)
                                             - Right:
ELit[0204]                                    - LiteralExpr:
                                                 - UniqueId: 159
                                                 - Value: LiteralInteger { unsigned_value: 6, negated: false }
                                                 - Parent: Expr(205, 1)
                                             - Parent: Expr(206, 1)
                                         - Parent: Expr(216, 0)
                                     - Right:
EBin[0215]                            - BinaryExpr:
                                         - UniqueId: 160
                                         - Operation: Equality
                                         - Left:
EBin[0213]                                - BinaryExpr:
                                             - UniqueId: 161
                                             - Operation: Add
                                             - Left:
EIdx[0209]                                    - IndexingExpr:
                                                 - UniqueId: 162
                                                 - Subject:
EVar[0207]                                        - VariableExpr:
                                                     - UniqueId: 163
                                                     - Name: result_s16
                                                     - Definition: Some(31)
                                                     - Parent: Expr(209, 0)
                                                 - Index:
ELit[0208]                                        - LiteralExpr:
                                                     - UniqueId: 164
                                                     - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                                     - Parent: Expr(209, 1)
                                                 - Parent: Expr(213, 0)
                                             - Right:
EIdx[0212]                                    - IndexingExpr:
                                                 - UniqueId: 165
                                                 - Subject:
EVar[0210]                                        - VariableExpr:
                                                     - UniqueId: 166
                                                     - Name: result_s16
                                                     - Definition: Some(31)
                                                     - Parent: Expr(212, 0)
                                                 - Index:
ELit[0211]                                        - LiteralExpr:
                                                     - UniqueId: 167
                                                     - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                                     - Parent: Expr(212, 1)
                                                 - Parent: Expr(213, 1)
                                             - Parent: Expr(215, 0)
                                         - Right:
ELit[0214]                                - LiteralExpr:
                                             - UniqueId: 168
                                             - Value: LiteralInteger { unsigned_value: 6, negated: false }
                                             - Parent: Expr(215, 1)
                                         - Parent: Expr(216, 1)
                                     - Parent: Expr(226, 0)
                                 - Right:
EBin[0225]                        - BinaryExpr:
                                     - UniqueId: 169
                                     - Operation: Equality
                                     - Left:
EBin[0223]                            - BinaryExpr:
                                         - UniqueId: 170
                                         - Operation: Add
                                         - Left:
EIdx[0219]                                - IndexingExpr:
                                             - UniqueId: 171
                                             - Subject:
EVar[0217]                                    - VariableExpr:
                                                 - UniqueId: 172
                                                 - Name: result_s32
                                                 - Definition: Some(32)
                                                 - Parent: Expr(219, 0)
                                             - Index:
ELit[0218]                                    - LiteralExpr:
                                                 - UniqueId: 173
                                                 - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                                 - Parent: Expr(219, 1)
                                             - Parent: Expr(223, 0)
                                         - Right:
EIdx[0222]                                - IndexingExpr:
                                             - UniqueId: 174
                                             - Subject:
EVar[0220]                                    - VariableExpr:
                                                 - UniqueId: 175
                                                 - Name: result_s32
                                                 - Definition: Some(32)
                                                 - Parent: Expr(222, 0)
                                             - Index:
ELit[0221]                                    - LiteralExpr:
                                                 - UniqueId: 176
                                                 - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                                 - Parent: Expr(222, 1)
                                             - Parent: Expr(223, 1)
                                         - Parent: Expr(225, 0)
                                     - Right:
ELit[0224]                            - LiteralExpr:
                                         - UniqueId: 177
                                         - Value: LiteralInteger { unsigned_value: 6, negated: false }
                                         - Parent: Expr(225, 1)
                                     - Parent: Expr(226, 1)
                                 - Parent: Expr(236, 0)
                             - Right:
EBin[0235]                    - BinaryExpr:
                                 - UniqueId: 178
                                 - Operation: Equality
                                 - Left:
EBin[0233]                        - BinaryExpr:
                                     - UniqueId: 179
                                     - Operation: Add
                                     - Left:
EIdx[0229]                            - IndexingExpr:
                                         - UniqueId: 180
                                         - Subject:
EVar[0227]                                - VariableExpr:
                                             - UniqueId: 181
                                             - Name: result_s64
                                             - Definition: Some(33)
                                             - Parent: Expr(229, 0)
                                         - Index:
ELit[0228]                                - LiteralExpr:
                                             - UniqueId: 182
                                             - Value: LiteralInteger { unsigned_value: 0, negated: false }
                                             - Parent: Expr(229, 1)
                                         - Parent: Expr(233, 0)
                                     - Right:
EIdx[0232]                            - IndexingExpr:
                                         - UniqueId: 183
                                         - Subject:
EVar[0230]                                - VariableExpr:
                                             - UniqueId: 184
                                             - Name: result_s64
                                             - Definition: Some(33)
                                             - Parent: Expr(232, 0)
                                         - Index:
ELit[0231]                                - LiteralExpr:
                                             - UniqueId: 185
                                             - Value: LiteralInteger { unsigned_value: 1, negated: false }
                                             - Parent: Expr(232, 1)
                                         - Parent: Expr(233, 1)
                                     - Parent: Expr(235, 0)
                                 - Right:
ELit[0234]                        - LiteralExpr:
                                     - UniqueId: 186
                                     - Value: LiteralInteger { unsigned_value: 6, negated: false }
                                     - Parent: Expr(235, 1)
                                 - Parent: Expr(236, 1)
                             - Parent: ReturnStmt(30)