golem-rib 1.3.1

Parser for Golem's Rib language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
// Copyright 2024-2025 Golem Cloud
//
// Licensed under the Golem Source License v1.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://license.golem.cloud/LICENSE
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use crate::call_type::{CallType, InstanceCreationType};
use crate::generic_type_parameter::GenericTypeParameter;
use crate::inferred_type::{DefaultType, TypeOrigin};
use crate::parser::block::block;
use crate::parser::type_name::TypeName;
use crate::rib_source_span::SourceSpan;
use crate::rib_type_error::RibTypeErrorInternal;
use crate::{
    from_string, text, type_checker, type_inference, ComponentDependencies, ComponentDependencyKey,
    CustomInstanceSpec, DynamicParsedFunctionName, ExprVisitor, GlobalVariableTypeSpec,
    InferredType, InstanceIdentifier, ParsedFunctionName, VariableId,
};
use bigdecimal::{BigDecimal, FromPrimitive, ToPrimitive};
use combine::parser::char::spaces;
use combine::stream::position;
use combine::Parser;
use combine::{eof, EasyParser};
use golem_api_grpc::proto::golem::rib::range_expr::RangeExpr;
use golem_wasm_ast::analysis::AnalysedType;
use golem_wasm_rpc::{IntoValueAndType, ValueAndType};
use serde::{Deserialize, Serialize, Serializer};
use serde_json::Value;
use std::collections::VecDeque;
use std::fmt::Display;
use std::ops::Deref;
use std::str::FromStr;

#[derive(Debug, Hash, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum Expr {
    Let {
        variable_id: VariableId,
        type_annotation: Option<TypeName>,
        expr: Box<Expr>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    SelectField {
        expr: Box<Expr>,
        field: String,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    SelectIndex {
        expr: Box<Expr>,
        index: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Sequence {
        exprs: Vec<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Range {
        range: Range,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Record {
        exprs: Vec<(String, Box<Expr>)>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Tuple {
        exprs: Vec<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Literal {
        value: String,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Number {
        number: Number,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Flags {
        flags: Vec<String>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Identifier {
        variable_id: VariableId,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Boolean {
        value: bool,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Concat {
        exprs: Vec<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    ExprBlock {
        exprs: Vec<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Not {
        expr: Box<Expr>,
        inferred_type: InferredType,
        type_annotation: Option<TypeName>,
        source_span: SourceSpan,
    },
    GreaterThan {
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    And {
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Or {
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    GreaterThanOrEqualTo {
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    LessThanOrEqualTo {
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Plus {
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Multiply {
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Minus {
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Divide {
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    EqualTo {
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    LessThan {
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Cond {
        cond: Box<Expr>,
        lhs: Box<Expr>,
        rhs: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    PatternMatch {
        predicate: Box<Expr>,
        match_arms: Vec<MatchArm>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Option {
        expr: Option<Box<Expr>>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Result {
        expr: Result<Box<Expr>, Box<Expr>>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    // instance[t]("my-worker") will be parsed sd Expr::Call { "instance", Some(t }, vec!["my-worker"] }
    // will be parsed as Expr::Call { "instance", vec!["my-worker"] }.
    // During function call inference phase, the type of this `Expr::Call` will be `Expr::Call { InstanceCreation,.. }
    // with inferred-type as `InstanceType`. This way any variables attached to the instance creation
    // will be having the `InstanceType`.
    Call {
        call_type: CallType,
        generic_type_parameter: Option<GenericTypeParameter>,
        args: Vec<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    // Any calls such as `my-worker-variable-expr.function_name()` will be parsed as Expr::Invoke
    // such that `my-worker-variable-expr` (lhs) will be of the type `InferredType::InstanceType`. `lhs` will
    // be `Expr::Call { InstanceCreation }` with type `InferredType::InstanceType`.
    // As part of a separate type inference phase this will be converted back to `Expr::Call` with fully
    // qualified function names (the complex version) which further takes part in all other type inference phases.
    InvokeMethodLazy {
        lhs: Box<Expr>,
        method: String,
        generic_type_parameter: Option<GenericTypeParameter>,
        args: Vec<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Unwrap {
        expr: Box<Expr>,
        inferred_type: InferredType,
        type_annotation: Option<TypeName>,
        source_span: SourceSpan,
    },
    Throw {
        message: String,
        inferred_type: InferredType,
        type_annotation: Option<TypeName>,
        source_span: SourceSpan,
    },
    GetTag {
        expr: Box<Expr>,
        inferred_type: InferredType,
        type_annotation: Option<TypeName>,
        source_span: SourceSpan,
    },
    ListComprehension {
        iterated_variable: VariableId,
        iterable_expr: Box<Expr>,
        yield_expr: Box<Expr>,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    ListReduce {
        reduce_variable: VariableId,
        iterated_variable: VariableId,
        iterable_expr: Box<Expr>,
        type_annotation: Option<TypeName>,
        yield_expr: Box<Expr>,
        init_value_expr: Box<Expr>,
        inferred_type: InferredType,
        source_span: SourceSpan,
    },
    Length {
        expr: Box<Expr>,
        inferred_type: InferredType,
        type_annotation: Option<TypeName>,
        source_span: SourceSpan,
    },

    GenerateWorkerName {
        inferred_type: InferredType,
        type_annotation: Option<TypeName>,
        source_span: SourceSpan,
        variable_id: Option<VariableId>,
    },
}

impl Expr {
    pub fn as_record(&self) -> Option<Vec<(String, Expr)>> {
        match self {
            Expr::Record { exprs: fields, .. } => Some(
                fields
                    .iter()
                    .map(|(k, v)| (k.clone(), v.deref().clone()))
                    .collect::<Vec<_>>(),
            ),
            _ => None,
        }
    }
    /// Parse a text directly as Rib expression
    /// Example of a Rib expression:
    ///
    /// ```rib
    ///   let shopping-cart-worker = instance("my-worker");
    ///   let result = shopping-cart-worker.add-to-cart({product-name: "apple", quantity: 2});
    ///
    ///   match result {
    ///     ok(id) => "product-id-${id}",
    ///     err(error_msg) => "Error: ${error_msg}"
    ///   }
    /// ```
    ///
    /// Rib supports conditional calls, function calls, pattern-matching,
    /// string interpolation (see error_message above) etc.
    ///
    pub fn from_text(input: &str) -> Result<Expr, String> {
        if input.trim().ends_with(';') {
            return Err("unexpected `;` at the end of rib expression. \nnote: `;` is used to separate expressions, but it should not appear after the last expression (which is the return value)".to_string());
        }

        spaces()
            .with(block().skip(eof()))
            .easy_parse(position::Stream::new(input))
            .map(|t| t.0)
            .map_err(|err| format!("{err}"))
    }

    pub fn lookup(&self, source_span: &SourceSpan) -> Option<Expr> {
        let mut expr = self.clone();
        find_expr(&mut expr, source_span)
    }

    pub fn is_literal(&self) -> bool {
        matches!(self, Expr::Literal { .. })
    }

    pub fn is_block(&self) -> bool {
        matches!(self, Expr::ExprBlock { .. })
    }

    pub fn is_number(&self) -> bool {
        matches!(self, Expr::Number { .. })
    }

    pub fn is_record(&self) -> bool {
        matches!(self, Expr::Record { .. })
    }

    pub fn is_result(&self) -> bool {
        matches!(self, Expr::Result { .. })
    }

    pub fn is_option(&self) -> bool {
        matches!(self, Expr::Option { .. })
    }

    pub fn is_tuple(&self) -> bool {
        matches!(self, Expr::Tuple { .. })
    }

    pub fn is_list(&self) -> bool {
        matches!(self, Expr::Sequence { .. })
    }

    pub fn is_flags(&self) -> bool {
        matches!(self, Expr::Flags { .. })
    }

    pub fn is_identifier(&self) -> bool {
        matches!(self, Expr::Identifier { .. })
    }

    pub fn is_select_field(&self) -> bool {
        matches!(self, Expr::SelectField { .. })
    }

    pub fn is_if_else(&self) -> bool {
        matches!(self, Expr::Cond { .. })
    }

    pub fn is_function_call(&self) -> bool {
        matches!(self, Expr::Call { .. })
    }

    pub fn is_match_expr(&self) -> bool {
        matches!(self, Expr::PatternMatch { .. })
    }

    pub fn is_boolean(&self) -> bool {
        matches!(self, Expr::Boolean { .. })
    }

    pub fn is_comparison(&self) -> bool {
        matches!(
            self,
            Expr::GreaterThan { .. }
                | Expr::GreaterThanOrEqualTo { .. }
                | Expr::LessThanOrEqualTo { .. }
                | Expr::EqualTo { .. }
                | Expr::LessThan { .. }
        )
    }

    pub fn is_concat(&self) -> bool {
        matches!(self, Expr::Concat { .. })
    }

    pub fn is_multiple(&self) -> bool {
        matches!(self, Expr::ExprBlock { .. })
    }

    pub fn inbuilt_variant(&self) -> Option<(String, Option<Expr>)> {
        match self {
            Expr::Option {
                expr: Some(expr), ..
            } => Some(("some".to_string(), Some(expr.deref().clone()))),
            Expr::Option { expr: None, .. } => Some(("some".to_string(), None)),
            Expr::Result { expr: Ok(expr), .. } => {
                Some(("ok".to_string(), Some(expr.deref().clone())))
            }
            Expr::Result {
                expr: Err(expr), ..
            } => Some(("err".to_string(), Some(expr.deref().clone()))),
            _ => None,
        }
    }
    pub fn unwrap(&self) -> Self {
        Expr::Unwrap {
            expr: Box::new(self.clone()),
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn length(expr: Expr) -> Self {
        Expr::Length {
            expr: Box::new(expr),
            inferred_type: InferredType::u64(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn boolean(value: bool) -> Self {
        Expr::Boolean {
            value,
            inferred_type: InferredType::bool(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn and(left: Expr, right: Expr) -> Self {
        Expr::And {
            lhs: Box::new(left),
            rhs: Box::new(right),
            inferred_type: InferredType::bool(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn throw(message: impl AsRef<str>) -> Self {
        Expr::Throw {
            message: message.as_ref().to_string(),
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn generate_worker_name(variable_id: Option<VariableId>) -> Self {
        Expr::GenerateWorkerName {
            inferred_type: InferredType::string(),
            type_annotation: None,
            source_span: SourceSpan::default(),
            variable_id,
        }
    }

    pub fn plus(left: Expr, right: Expr) -> Self {
        Expr::Plus {
            lhs: Box::new(left),
            rhs: Box::new(right),
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn minus(left: Expr, right: Expr) -> Self {
        Expr::Minus {
            lhs: Box::new(left),
            rhs: Box::new(right),
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn divide(left: Expr, right: Expr) -> Self {
        Expr::Divide {
            lhs: Box::new(left),
            rhs: Box::new(right),
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn multiply(left: Expr, right: Expr) -> Self {
        Expr::Multiply {
            lhs: Box::new(left),
            rhs: Box::new(right),
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn and_combine(conditions: Vec<Expr>) -> Option<Expr> {
        let mut cond: Option<Expr> = None;

        for i in conditions {
            let left = Box::new(cond.clone().unwrap_or(Expr::boolean(true)));
            cond = Some(Expr::And {
                lhs: left,
                rhs: Box::new(i),
                inferred_type: InferredType::bool(),
                source_span: SourceSpan::default(),
                type_annotation: None,
            });
        }

        cond
    }

    pub fn call_worker_function(
        dynamic_parsed_fn_name: DynamicParsedFunctionName,
        generic_type_parameter: Option<GenericTypeParameter>,
        module_identifier: Option<InstanceIdentifier>,
        args: Vec<Expr>,
        component_info: Option<ComponentDependencyKey>,
    ) -> Self {
        Expr::Call {
            call_type: CallType::Function {
                function_name: dynamic_parsed_fn_name,
                instance_identifier: module_identifier.map(Box::new),
                component_info,
            },
            generic_type_parameter,
            args,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn call(
        call_type: CallType,
        generic_type_parameter: Option<GenericTypeParameter>,
        args: Vec<Expr>,
    ) -> Self {
        Expr::Call {
            call_type,
            generic_type_parameter,
            args,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn invoke_worker_function(
        lhs: Expr,
        function_name: String,
        generic_type_parameter: Option<GenericTypeParameter>,
        args: Vec<Expr>,
    ) -> Self {
        Expr::InvokeMethodLazy {
            lhs: Box::new(lhs),
            method: function_name,
            generic_type_parameter,
            args,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn concat(expressions: Vec<Expr>) -> Self {
        Expr::Concat {
            exprs: expressions,
            inferred_type: InferredType::string(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn cond(cond: Expr, lhs: Expr, rhs: Expr) -> Self {
        Expr::Cond {
            cond: Box::new(cond),
            lhs: Box::new(lhs),
            rhs: Box::new(rhs),
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn equal_to(left: Expr, right: Expr) -> Self {
        Expr::EqualTo {
            lhs: Box::new(left),
            rhs: Box::new(right),
            inferred_type: InferredType::bool(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn err(expr: Expr, type_annotation: Option<TypeName>) -> Self {
        let inferred_type = expr.inferred_type();
        Expr::Result {
            expr: Err(Box::new(expr)),
            type_annotation,
            inferred_type: InferredType::result(Some(InferredType::unknown()), Some(inferred_type)),
            source_span: SourceSpan::default(),
        }
    }

    pub fn flags(flags: Vec<String>) -> Self {
        Expr::Flags {
            flags: flags.clone(),
            inferred_type: InferredType::flags(flags),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn greater_than(left: Expr, right: Expr) -> Self {
        Expr::GreaterThan {
            lhs: Box::new(left),
            rhs: Box::new(right),
            inferred_type: InferredType::bool(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn greater_than_or_equal_to(left: Expr, right: Expr) -> Self {
        Expr::GreaterThanOrEqualTo {
            lhs: Box::new(left),
            rhs: Box::new(right),
            inferred_type: InferredType::bool(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    // An identifier by default is global until name-binding phase is run
    pub fn identifier_global(name: impl AsRef<str>, type_annotation: Option<TypeName>) -> Self {
        Expr::Identifier {
            variable_id: VariableId::global(name.as_ref().to_string()),
            type_annotation,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
        }
    }

    pub fn identifier_local(
        name: impl AsRef<str>,
        id: u32,
        type_annotation: Option<TypeName>,
    ) -> Self {
        Expr::Identifier {
            variable_id: VariableId::local(name.as_ref(), id),
            type_annotation,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
        }
    }

    pub fn identifier_with_variable_id(
        variable_id: VariableId,
        type_annotation: Option<TypeName>,
    ) -> Self {
        Expr::Identifier {
            variable_id,
            type_annotation,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
        }
    }

    pub fn less_than(left: Expr, right: Expr) -> Self {
        Expr::LessThan {
            lhs: Box::new(left),
            rhs: Box::new(right),
            inferred_type: InferredType::bool(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn less_than_or_equal_to(left: Expr, right: Expr) -> Self {
        Expr::LessThanOrEqualTo {
            lhs: Box::new(left),
            rhs: Box::new(right),
            inferred_type: InferredType::bool(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn range(from: Expr, to: Expr) -> Self {
        Expr::Range {
            range: Range::Range {
                from: Box::new(from.clone()),
                to: Box::new(to.clone()),
            },
            inferred_type: InferredType::range(from.inferred_type(), Some(to.inferred_type())),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn range_from(from: Expr) -> Self {
        Expr::Range {
            range: Range::RangeFrom {
                from: Box::new(from.clone()),
            },
            inferred_type: InferredType::range(from.inferred_type(), None),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn range_inclusive(from: Expr, to: Expr) -> Self {
        Expr::Range {
            range: Range::RangeInclusive {
                from: Box::new(from.clone()),
                to: Box::new(to.clone()),
            },
            inferred_type: InferredType::range(from.inferred_type(), Some(to.inferred_type())),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn let_binding(
        name: impl AsRef<str>,
        expr: Expr,
        type_annotation: Option<TypeName>,
    ) -> Self {
        Expr::Let {
            variable_id: VariableId::global(name.as_ref().to_string()),
            type_annotation,
            expr: Box::new(expr),
            source_span: SourceSpan::default(),
            inferred_type: InferredType::tuple(vec![]),
        }
    }

    pub fn let_binding_with_variable_id(
        variable_id: VariableId,
        expr: Expr,
        type_annotation: Option<TypeName>,
    ) -> Self {
        Expr::Let {
            variable_id,
            type_annotation,
            expr: Box::new(expr),
            source_span: SourceSpan::default(),
            inferred_type: InferredType::tuple(vec![]),
        }
    }

    pub fn typed_list_reduce(
        reduce_variable: VariableId,
        iterated_variable: VariableId,
        iterable_expr: Expr,
        init_value_expr: Expr,
        yield_expr: Expr,
        inferred_type: InferredType,
    ) -> Self {
        Expr::ListReduce {
            reduce_variable,
            iterated_variable,
            iterable_expr: Box::new(iterable_expr),
            yield_expr: Box::new(yield_expr),
            init_value_expr: Box::new(init_value_expr),
            inferred_type,
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn list_reduce(
        reduce_variable: VariableId,
        iterated_variable: VariableId,
        iterable_expr: Expr,
        init_value_expr: Expr,
        yield_expr: Expr,
    ) -> Self {
        Expr::typed_list_reduce(
            reduce_variable,
            iterated_variable,
            iterable_expr,
            init_value_expr,
            yield_expr,
            InferredType::unknown(),
        )
    }

    pub fn list_comprehension_typed(
        iterated_variable: VariableId,
        iterable_expr: Expr,
        yield_expr: Expr,
        inferred_type: InferredType,
    ) -> Self {
        Expr::ListComprehension {
            iterated_variable,
            iterable_expr: Box::new(iterable_expr),
            yield_expr: Box::new(yield_expr),
            inferred_type,
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn list_comprehension(
        variable_id: VariableId,
        iterable_expr: Expr,
        yield_expr: Expr,
    ) -> Self {
        Expr::list_comprehension_typed(
            variable_id,
            iterable_expr,
            yield_expr,
            InferredType::list(InferredType::unknown()),
        )
    }

    pub fn bind_global_variable_types(&mut self, type_spec: &Vec<GlobalVariableTypeSpec>) {
        type_inference::bind_global_variable_types(self, type_spec)
    }

    pub fn bind_instance_types(&mut self) {
        type_inference::bind_instance_types(self)
    }

    pub fn literal(value: impl AsRef<str>) -> Self {
        let default_type = DefaultType::String;

        Expr::Literal {
            value: value.as_ref().to_string(),
            inferred_type: InferredType::from(&default_type),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn empty_expr() -> Self {
        Expr::literal("")
    }

    pub fn expr_block(expressions: Vec<Expr>) -> Self {
        let inferred_type = expressions
            .last()
            .map_or(InferredType::unknown(), |e| e.inferred_type());

        Expr::ExprBlock {
            exprs: expressions,
            inferred_type,
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    #[allow(clippy::should_implement_trait)]
    pub fn not(expr: Expr) -> Self {
        Expr::Not {
            expr: Box::new(expr),
            inferred_type: InferredType::bool(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn ok(expr: Expr, type_annotation: Option<TypeName>) -> Self {
        let inferred_type = expr.inferred_type();

        Expr::Result {
            expr: Ok(Box::new(expr)),
            type_annotation,
            inferred_type: InferredType::result(Some(inferred_type), Some(InferredType::unknown())),
            source_span: SourceSpan::default(),
        }
    }

    pub fn option(expr: Option<Expr>) -> Self {
        let inferred_type = match &expr {
            Some(expr) => expr.inferred_type(),
            None => InferredType::unknown(),
        };

        Expr::Option {
            expr: expr.map(Box::new),
            type_annotation: None,
            inferred_type: InferredType::option(inferred_type),
            source_span: SourceSpan::default(),
        }
    }

    pub fn or(left: Expr, right: Expr) -> Self {
        Expr::Or {
            lhs: Box::new(left),
            rhs: Box::new(right),
            inferred_type: InferredType::bool(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn pattern_match(expr: Expr, match_arms: Vec<MatchArm>) -> Self {
        Expr::PatternMatch {
            predicate: Box::new(expr),
            match_arms,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn record(expressions: Vec<(String, Expr)>) -> Self {
        let inferred_type = InferredType::record(
            expressions
                .iter()
                .map(|(field_name, expr)| (field_name.to_string(), expr.inferred_type()))
                .collect(),
        );

        Expr::Record {
            exprs: expressions
                .into_iter()
                .map(|(field_name, expr)| (field_name, Box::new(expr)))
                .collect(),
            inferred_type,
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn select_field(
        expr: Expr,
        field: impl AsRef<str>,
        type_annotation: Option<TypeName>,
    ) -> Self {
        Expr::SelectField {
            expr: Box::new(expr),
            field: field.as_ref().to_string(),
            type_annotation,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
        }
    }

    pub fn select_index(expr: Expr, index: Expr) -> Self {
        Expr::SelectIndex {
            expr: Box::new(expr),
            index: Box::new(index),
            type_annotation: None,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
        }
    }

    pub fn get_tag(expr: Expr) -> Self {
        Expr::GetTag {
            expr: Box::new(expr),
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn tuple(expressions: Vec<Expr>) -> Self {
        let inferred_type = InferredType::tuple(
            expressions
                .iter()
                .map(|expr| expr.inferred_type())
                .collect(),
        );

        Expr::Tuple {
            exprs: expressions,
            inferred_type,
            source_span: SourceSpan::default(),
            type_annotation: None,
        }
    }

    pub fn sequence(expressions: Vec<Expr>, type_annotation: Option<TypeName>) -> Self {
        let inferred_type = InferredType::list(
            expressions
                .first()
                .map_or(InferredType::unknown(), |x| x.inferred_type()),
        );

        Expr::Sequence {
            exprs: expressions,
            type_annotation,
            inferred_type,
            source_span: SourceSpan::default(),
        }
    }

    pub fn inferred_type_mut(&mut self) -> &mut InferredType {
        match self {
            Expr::Let { inferred_type, .. }
            | Expr::SelectField { inferred_type, .. }
            | Expr::SelectIndex { inferred_type, .. }
            | Expr::Sequence { inferred_type, .. }
            | Expr::Record { inferred_type, .. }
            | Expr::Tuple { inferred_type, .. }
            | Expr::Literal { inferred_type, .. }
            | Expr::Number { inferred_type, .. }
            | Expr::Flags { inferred_type, .. }
            | Expr::Identifier { inferred_type, .. }
            | Expr::Boolean { inferred_type, .. }
            | Expr::Concat { inferred_type, .. }
            | Expr::ExprBlock { inferred_type, .. }
            | Expr::Not { inferred_type, .. }
            | Expr::GreaterThan { inferred_type, .. }
            | Expr::GreaterThanOrEqualTo { inferred_type, .. }
            | Expr::LessThanOrEqualTo { inferred_type, .. }
            | Expr::EqualTo { inferred_type, .. }
            | Expr::Plus { inferred_type, .. }
            | Expr::Minus { inferred_type, .. }
            | Expr::Divide { inferred_type, .. }
            | Expr::Multiply { inferred_type, .. }
            | Expr::LessThan { inferred_type, .. }
            | Expr::Cond { inferred_type, .. }
            | Expr::PatternMatch { inferred_type, .. }
            | Expr::Option { inferred_type, .. }
            | Expr::Result { inferred_type, .. }
            | Expr::Unwrap { inferred_type, .. }
            | Expr::Throw { inferred_type, .. }
            | Expr::GetTag { inferred_type, .. }
            | Expr::And { inferred_type, .. }
            | Expr::Or { inferred_type, .. }
            | Expr::ListComprehension { inferred_type, .. }
            | Expr::ListReduce { inferred_type, .. }
            | Expr::Call { inferred_type, .. }
            | Expr::Range { inferred_type, .. }
            | Expr::InvokeMethodLazy { inferred_type, .. }
            | Expr::Length { inferred_type, .. }
            | Expr::GenerateWorkerName { inferred_type, .. } => &mut *inferred_type,
        }
    }

    pub fn inferred_type(&self) -> InferredType {
        match self {
            Expr::Let { inferred_type, .. }
            | Expr::SelectField { inferred_type, .. }
            | Expr::SelectIndex { inferred_type, .. }
            | Expr::Sequence { inferred_type, .. }
            | Expr::Record { inferred_type, .. }
            | Expr::Tuple { inferred_type, .. }
            | Expr::Literal { inferred_type, .. }
            | Expr::Number { inferred_type, .. }
            | Expr::Flags { inferred_type, .. }
            | Expr::Identifier { inferred_type, .. }
            | Expr::Boolean { inferred_type, .. }
            | Expr::Concat { inferred_type, .. }
            | Expr::ExprBlock { inferred_type, .. }
            | Expr::Not { inferred_type, .. }
            | Expr::GreaterThan { inferred_type, .. }
            | Expr::GreaterThanOrEqualTo { inferred_type, .. }
            | Expr::LessThanOrEqualTo { inferred_type, .. }
            | Expr::EqualTo { inferred_type, .. }
            | Expr::Plus { inferred_type, .. }
            | Expr::Minus { inferred_type, .. }
            | Expr::Divide { inferred_type, .. }
            | Expr::Multiply { inferred_type, .. }
            | Expr::LessThan { inferred_type, .. }
            | Expr::Cond { inferred_type, .. }
            | Expr::PatternMatch { inferred_type, .. }
            | Expr::Option { inferred_type, .. }
            | Expr::Result { inferred_type, .. }
            | Expr::Unwrap { inferred_type, .. }
            | Expr::Throw { inferred_type, .. }
            | Expr::GetTag { inferred_type, .. }
            | Expr::And { inferred_type, .. }
            | Expr::Or { inferred_type, .. }
            | Expr::ListComprehension { inferred_type, .. }
            | Expr::ListReduce { inferred_type, .. }
            | Expr::Call { inferred_type, .. }
            | Expr::Range { inferred_type, .. }
            | Expr::InvokeMethodLazy { inferred_type, .. }
            | Expr::Length { inferred_type, .. }
            | Expr::GenerateWorkerName { inferred_type, .. } => inferred_type.clone(),
        }
    }

    pub fn infer_types(
        &mut self,
        component_dependency: &ComponentDependencies,
        global_variable_type_spec: &Vec<GlobalVariableTypeSpec>,
        custom_instance_spec: &[CustomInstanceSpec],
    ) -> Result<(), RibTypeErrorInternal> {
        self.infer_types_initial_phase(
            component_dependency,
            global_variable_type_spec,
            custom_instance_spec,
        )?;
        self.bind_instance_types();
        // Identifying the first fix point with method calls to infer all
        // worker function invocations as this forms the foundation for the rest of the
        // compilation. This is compiler doing its best to infer all the calls such
        // as worker invokes or instance calls etc.
        type_inference::type_inference_fix_point(Self::resolve_method_calls, self)?;
        self.infer_function_call_types(component_dependency, custom_instance_spec)?;
        type_inference::type_inference_fix_point(
            |x| Self::inference_scan(x, component_dependency, custom_instance_spec),
            self,
        )?;
        self.check_types(component_dependency)?;
        self.unify_types()?;
        Ok(())
    }

    pub fn infer_types_initial_phase(
        &mut self,
        component_dependency: &ComponentDependencies,
        global_variable_type_spec: &Vec<GlobalVariableTypeSpec>,
        custom_instance_spec: &[CustomInstanceSpec],
    ) -> Result<(), RibTypeErrorInternal> {
        self.set_origin();
        self.bind_global_variable_types(global_variable_type_spec);
        self.bind_type_annotations();
        self.bind_variables_of_list_comprehension();
        self.bind_variables_of_list_reduce();
        self.bind_variables_of_pattern_match();
        self.bind_variables_of_let_assignment();
        self.identify_instance_creation(component_dependency, custom_instance_spec)?;
        self.ensure_stateful_instance();
        self.infer_variants(component_dependency);
        self.infer_enums(component_dependency);
        Ok(())
    }

    pub fn resolve_method_calls(&mut self) -> Result<(), RibTypeErrorInternal> {
        self.bind_instance_types();
        self.infer_worker_function_invokes()?;
        Ok(())
    }

    pub fn set_origin(&mut self) {
        let mut visitor = ExprVisitor::bottom_up(self);

        while let Some(expr) = visitor.pop_front() {
            let source_location = expr.source_span();
            let origin = TypeOrigin::OriginatedAt(source_location.clone());
            let inferred_type = expr.inferred_type();
            let origin = inferred_type.add_origin(origin);
            expr.with_inferred_type_mut(origin);
        }
    }

    // An inference is a single cycle of to-and-fro scanning of Rib expression, that it takes part in fix point of inference.
    // Not all phases of compilation will be part of this scan.
    // Example: function call argument inference based on the worker function hardly needs to be part of the scan.
    pub fn inference_scan(
        &mut self,
        component_dependencies: &ComponentDependencies,
        custom_instance_spec: &[CustomInstanceSpec],
    ) -> Result<(), RibTypeErrorInternal> {
        self.infer_all_identifiers();
        self.push_types_down()?;
        self.infer_all_identifiers();
        self.pull_types_up(component_dependencies)?;
        self.infer_global_inputs();
        self.infer_function_call_types(component_dependencies, custom_instance_spec)?;
        Ok(())
    }

    pub fn infer_worker_function_invokes(&mut self) -> Result<(), RibTypeErrorInternal> {
        type_inference::infer_worker_function_invokes(self)
    }

    // Make sure the bindings in the arm pattern of a pattern match are given variable-ids.
    // The same variable-ids will be tagged to the corresponding identifiers in the arm resolution
    // to avoid conflicts.
    pub fn bind_variables_of_pattern_match(&mut self) {
        type_inference::bind_variables_of_pattern_match(self);
    }

    // Make sure the variable assignment (let binding) are given variable ids,
    // which will be tagged to the corresponding identifiers to avoid conflicts.
    // This is done only for local variables and not global variables
    pub fn bind_variables_of_let_assignment(&mut self) {
        type_inference::bind_variables_of_let_assignment(self);
    }

    pub fn bind_variables_of_list_comprehension(&mut self) {
        type_inference::bind_variables_of_list_comprehension(self);
    }

    pub fn bind_variables_of_list_reduce(&mut self) {
        type_inference::bind_variables_of_list_reduce(self);
    }

    pub fn identify_instance_creation(
        &mut self,
        component_dependency: &ComponentDependencies,
        custom_instance_spec: &[CustomInstanceSpec],
    ) -> Result<(), RibTypeErrorInternal> {
        type_inference::identify_instance_creation(self, component_dependency, custom_instance_spec)
    }

    pub fn ensure_stateful_instance(&mut self) {
        type_inference::ensure_stateful_instance(self)
    }

    pub fn infer_function_call_types(
        &mut self,
        component_dependency: &ComponentDependencies,
        custom_instance_spec: &[CustomInstanceSpec],
    ) -> Result<(), RibTypeErrorInternal> {
        type_inference::infer_function_call_types(
            self,
            component_dependency,
            custom_instance_spec,
        )?;
        Ok(())
    }

    pub fn push_types_down(&mut self) -> Result<(), RibTypeErrorInternal> {
        type_inference::push_types_down(self)
    }

    pub fn infer_all_identifiers(&mut self) {
        type_inference::infer_all_identifiers(self)
    }

    pub fn pull_types_up(
        &mut self,
        component_dependencies: &ComponentDependencies,
    ) -> Result<(), RibTypeErrorInternal> {
        type_inference::type_pull_up(self, component_dependencies)
    }

    pub fn infer_global_inputs(&mut self) {
        type_inference::infer_global_inputs(self);
    }

    pub fn bind_type_annotations(&mut self) {
        type_inference::bind_type_annotations(self);
    }

    pub fn check_types(
        &mut self,
        component_dependency: &ComponentDependencies,
    ) -> Result<(), RibTypeErrorInternal> {
        type_checker::type_check(self, component_dependency)
    }

    pub fn unify_types(&mut self) -> Result<(), RibTypeErrorInternal> {
        type_inference::unify_types(self)?;
        Ok(())
    }

    pub fn merge_inferred_type(&self, new_inferred_type: InferredType) -> Expr {
        let mut expr_copied = self.clone();
        expr_copied.add_infer_type_mut(new_inferred_type);
        expr_copied
    }

    pub fn add_infer_type_mut(&mut self, new_inferred_type: InferredType) {
        match self {
            Expr::Identifier { inferred_type, .. }
            | Expr::Let { inferred_type, .. }
            | Expr::SelectField { inferred_type, .. }
            | Expr::SelectIndex { inferred_type, .. }
            | Expr::Sequence { inferred_type, .. }
            | Expr::Record { inferred_type, .. }
            | Expr::Tuple { inferred_type, .. }
            | Expr::Literal { inferred_type, .. }
            | Expr::Number { inferred_type, .. }
            | Expr::Flags { inferred_type, .. }
            | Expr::Boolean { inferred_type, .. }
            | Expr::Concat { inferred_type, .. }
            | Expr::ExprBlock { inferred_type, .. }
            | Expr::Not { inferred_type, .. }
            | Expr::GreaterThan { inferred_type, .. }
            | Expr::GreaterThanOrEqualTo { inferred_type, .. }
            | Expr::LessThanOrEqualTo { inferred_type, .. }
            | Expr::EqualTo { inferred_type, .. }
            | Expr::Plus { inferred_type, .. }
            | Expr::Minus { inferred_type, .. }
            | Expr::Divide { inferred_type, .. }
            | Expr::Multiply { inferred_type, .. }
            | Expr::LessThan { inferred_type, .. }
            | Expr::Cond { inferred_type, .. }
            | Expr::PatternMatch { inferred_type, .. }
            | Expr::Option { inferred_type, .. }
            | Expr::Result { inferred_type, .. }
            | Expr::Unwrap { inferred_type, .. }
            | Expr::Throw { inferred_type, .. }
            | Expr::GetTag { inferred_type, .. }
            | Expr::And { inferred_type, .. }
            | Expr::Or { inferred_type, .. }
            | Expr::ListComprehension { inferred_type, .. }
            | Expr::ListReduce { inferred_type, .. }
            | Expr::InvokeMethodLazy { inferred_type, .. }
            | Expr::Range { inferred_type, .. }
            | Expr::Length { inferred_type, .. }
            | Expr::GenerateWorkerName { inferred_type, .. }
            | Expr::Call { inferred_type, .. } => {
                if !new_inferred_type.is_unknown() {
                    *inferred_type = inferred_type.merge(new_inferred_type);
                }
            }
        }
    }

    pub fn reset_type(&mut self) {
        type_inference::reset_type_info(self);
    }

    pub fn source_span(&self) -> SourceSpan {
        match self {
            Expr::Identifier { source_span, .. }
            | Expr::Let { source_span, .. }
            | Expr::SelectField { source_span, .. }
            | Expr::SelectIndex { source_span, .. }
            | Expr::Sequence { source_span, .. }
            | Expr::Record { source_span, .. }
            | Expr::Tuple { source_span, .. }
            | Expr::Literal { source_span, .. }
            | Expr::Number { source_span, .. }
            | Expr::Flags { source_span, .. }
            | Expr::Boolean { source_span, .. }
            | Expr::Concat { source_span, .. }
            | Expr::ExprBlock { source_span, .. }
            | Expr::Not { source_span, .. }
            | Expr::GreaterThan { source_span, .. }
            | Expr::GreaterThanOrEqualTo { source_span, .. }
            | Expr::LessThanOrEqualTo { source_span, .. }
            | Expr::EqualTo { source_span, .. }
            | Expr::LessThan { source_span, .. }
            | Expr::Plus { source_span, .. }
            | Expr::Minus { source_span, .. }
            | Expr::Divide { source_span, .. }
            | Expr::Multiply { source_span, .. }
            | Expr::Cond { source_span, .. }
            | Expr::PatternMatch { source_span, .. }
            | Expr::Option { source_span, .. }
            | Expr::Result { source_span, .. }
            | Expr::Unwrap { source_span, .. }
            | Expr::Throw { source_span, .. }
            | Expr::And { source_span, .. }
            | Expr::Or { source_span, .. }
            | Expr::GetTag { source_span, .. }
            | Expr::ListComprehension { source_span, .. }
            | Expr::ListReduce { source_span, .. }
            | Expr::InvokeMethodLazy { source_span, .. }
            | Expr::Range { source_span, .. }
            | Expr::Length { source_span, .. }
            | Expr::Call { source_span, .. }
            | Expr::GenerateWorkerName { source_span, .. } => source_span.clone(),
        }
    }

    pub fn type_annotation(&self) -> &Option<TypeName> {
        match self {
            Expr::Identifier {
                type_annotation, ..
            }
            | Expr::Let {
                type_annotation, ..
            }
            | Expr::SelectField {
                type_annotation, ..
            }
            | Expr::SelectIndex {
                type_annotation, ..
            }
            | Expr::Sequence {
                type_annotation, ..
            }
            | Expr::Record {
                type_annotation, ..
            }
            | Expr::Tuple {
                type_annotation, ..
            }
            | Expr::Literal {
                type_annotation, ..
            }
            | Expr::Number {
                type_annotation, ..
            }
            | Expr::Flags {
                type_annotation, ..
            }
            | Expr::Boolean {
                type_annotation, ..
            }
            | Expr::Concat {
                type_annotation, ..
            }
            | Expr::ExprBlock {
                type_annotation, ..
            }
            | Expr::Not {
                type_annotation, ..
            }
            | Expr::GreaterThan {
                type_annotation, ..
            }
            | Expr::GreaterThanOrEqualTo {
                type_annotation, ..
            }
            | Expr::LessThanOrEqualTo {
                type_annotation, ..
            }
            | Expr::EqualTo {
                type_annotation, ..
            }
            | Expr::LessThan {
                type_annotation, ..
            }
            | Expr::Plus {
                type_annotation, ..
            }
            | Expr::Minus {
                type_annotation, ..
            }
            | Expr::Divide {
                type_annotation, ..
            }
            | Expr::Multiply {
                type_annotation, ..
            }
            | Expr::Cond {
                type_annotation, ..
            }
            | Expr::PatternMatch {
                type_annotation, ..
            }
            | Expr::Option {
                type_annotation, ..
            }
            | Expr::Result {
                type_annotation, ..
            }
            | Expr::Unwrap {
                type_annotation, ..
            }
            | Expr::Throw {
                type_annotation, ..
            }
            | Expr::And {
                type_annotation, ..
            }
            | Expr::Or {
                type_annotation, ..
            }
            | Expr::GetTag {
                type_annotation, ..
            }
            | Expr::ListComprehension {
                type_annotation, ..
            }
            | Expr::ListReduce {
                type_annotation, ..
            }
            | Expr::InvokeMethodLazy {
                type_annotation, ..
            }
            | Expr::Range {
                type_annotation, ..
            }
            | Expr::Length {
                type_annotation, ..
            }
            | Expr::GenerateWorkerName {
                type_annotation, ..
            }
            | Expr::Call {
                type_annotation, ..
            } => type_annotation,
        }
    }

    pub fn with_type_annotation_opt(&self, type_annotation: Option<TypeName>) -> Expr {
        if let Some(type_annotation) = type_annotation {
            self.with_type_annotation(type_annotation)
        } else {
            self.clone()
        }
    }

    pub fn with_type_annotation(&self, type_annotation: TypeName) -> Expr {
        let mut expr_copied = self.clone();
        expr_copied.with_type_annotation_mut(type_annotation);
        expr_copied
    }

    pub fn with_type_annotation_mut(&mut self, type_annotation: TypeName) {
        let new_type_annotation = type_annotation;

        match self {
            Expr::Identifier {
                type_annotation, ..
            }
            | Expr::Let {
                type_annotation, ..
            }
            | Expr::SelectField {
                type_annotation, ..
            }
            | Expr::SelectIndex {
                type_annotation, ..
            }
            | Expr::Sequence {
                type_annotation, ..
            }
            | Expr::Record {
                type_annotation, ..
            }
            | Expr::Tuple {
                type_annotation, ..
            }
            | Expr::Literal {
                type_annotation, ..
            }
            | Expr::Number {
                type_annotation, ..
            }
            | Expr::Flags {
                type_annotation, ..
            }
            | Expr::Boolean {
                type_annotation, ..
            }
            | Expr::Concat {
                type_annotation, ..
            }
            | Expr::ExprBlock {
                type_annotation, ..
            }
            | Expr::Not {
                type_annotation, ..
            }
            | Expr::GreaterThan {
                type_annotation, ..
            }
            | Expr::GreaterThanOrEqualTo {
                type_annotation, ..
            }
            | Expr::LessThanOrEqualTo {
                type_annotation, ..
            }
            | Expr::EqualTo {
                type_annotation, ..
            }
            | Expr::LessThan {
                type_annotation, ..
            }
            | Expr::Plus {
                type_annotation, ..
            }
            | Expr::Minus {
                type_annotation, ..
            }
            | Expr::Divide {
                type_annotation, ..
            }
            | Expr::Multiply {
                type_annotation, ..
            }
            | Expr::Cond {
                type_annotation, ..
            }
            | Expr::PatternMatch {
                type_annotation, ..
            }
            | Expr::Option {
                type_annotation, ..
            }
            | Expr::Result {
                type_annotation, ..
            }
            | Expr::Unwrap {
                type_annotation, ..
            }
            | Expr::Throw {
                type_annotation, ..
            }
            | Expr::And {
                type_annotation, ..
            }
            | Expr::Or {
                type_annotation, ..
            }
            | Expr::GetTag {
                type_annotation, ..
            }
            | Expr::Range {
                type_annotation, ..
            }
            | Expr::ListComprehension {
                type_annotation, ..
            }
            | Expr::ListReduce {
                type_annotation, ..
            }
            | Expr::InvokeMethodLazy {
                type_annotation, ..
            }
            | Expr::Length {
                type_annotation, ..
            }
            | Expr::GenerateWorkerName {
                type_annotation, ..
            }
            | Expr::Call {
                type_annotation, ..
            } => {
                *type_annotation = Some(new_type_annotation);
            }
        }
    }

    pub fn with_source_span(&self, new_source_span: SourceSpan) -> Expr {
        let mut expr_copied = self.clone();
        expr_copied.with_source_span_mut(new_source_span);
        expr_copied
    }

    pub fn with_source_span_mut(&mut self, new_source_span: SourceSpan) {
        match self {
            Expr::Identifier { source_span, .. }
            | Expr::Let { source_span, .. }
            | Expr::SelectField { source_span, .. }
            | Expr::SelectIndex { source_span, .. }
            | Expr::Sequence { source_span, .. }
            | Expr::Number { source_span, .. }
            | Expr::Record { source_span, .. }
            | Expr::Tuple { source_span, .. }
            | Expr::Literal { source_span, .. }
            | Expr::Flags { source_span, .. }
            | Expr::Boolean { source_span, .. }
            | Expr::Concat { source_span, .. }
            | Expr::ExprBlock { source_span, .. }
            | Expr::Not { source_span, .. }
            | Expr::GreaterThan { source_span, .. }
            | Expr::GreaterThanOrEqualTo { source_span, .. }
            | Expr::LessThanOrEqualTo { source_span, .. }
            | Expr::EqualTo { source_span, .. }
            | Expr::LessThan { source_span, .. }
            | Expr::Plus { source_span, .. }
            | Expr::Minus { source_span, .. }
            | Expr::Divide { source_span, .. }
            | Expr::Multiply { source_span, .. }
            | Expr::Cond { source_span, .. }
            | Expr::PatternMatch { source_span, .. }
            | Expr::Option { source_span, .. }
            | Expr::Result { source_span, .. }
            | Expr::Unwrap { source_span, .. }
            | Expr::Throw { source_span, .. }
            | Expr::And { source_span, .. }
            | Expr::Or { source_span, .. }
            | Expr::GetTag { source_span, .. }
            | Expr::Range { source_span, .. }
            | Expr::ListComprehension { source_span, .. }
            | Expr::ListReduce { source_span, .. }
            | Expr::InvokeMethodLazy { source_span, .. }
            | Expr::Length { source_span, .. }
            | Expr::GenerateWorkerName { source_span, .. }
            | Expr::Call { source_span, .. } => {
                *source_span = new_source_span;
            }
        }
    }

    pub fn with_inferred_type(&self, new_inferred_type: InferredType) -> Expr {
        let mut expr_copied = self.clone();
        expr_copied.with_inferred_type_mut(new_inferred_type);
        expr_copied
    }

    // `with_inferred_type` overrides the existing inferred_type and returns a new expr
    // This is different to `merge_inferred_type` where it tries to combine the new inferred type with the existing one.
    pub fn with_inferred_type_mut(&mut self, new_inferred_type: InferredType) {
        match self {
            Expr::Identifier { inferred_type, .. }
            | Expr::Let { inferred_type, .. }
            | Expr::SelectField { inferred_type, .. }
            | Expr::SelectIndex { inferred_type, .. }
            | Expr::Sequence { inferred_type, .. }
            | Expr::Record { inferred_type, .. }
            | Expr::Tuple { inferred_type, .. }
            | Expr::Literal { inferred_type, .. }
            | Expr::Number { inferred_type, .. }
            | Expr::Flags { inferred_type, .. }
            | Expr::Boolean { inferred_type, .. }
            | Expr::Concat { inferred_type, .. }
            | Expr::ExprBlock { inferred_type, .. }
            | Expr::Not { inferred_type, .. }
            | Expr::GreaterThan { inferred_type, .. }
            | Expr::GreaterThanOrEqualTo { inferred_type, .. }
            | Expr::LessThanOrEqualTo { inferred_type, .. }
            | Expr::EqualTo { inferred_type, .. }
            | Expr::LessThan { inferred_type, .. }
            | Expr::Plus { inferred_type, .. }
            | Expr::Minus { inferred_type, .. }
            | Expr::Divide { inferred_type, .. }
            | Expr::Multiply { inferred_type, .. }
            | Expr::Cond { inferred_type, .. }
            | Expr::PatternMatch { inferred_type, .. }
            | Expr::Option { inferred_type, .. }
            | Expr::Result { inferred_type, .. }
            | Expr::Unwrap { inferred_type, .. }
            | Expr::Throw { inferred_type, .. }
            | Expr::And { inferred_type, .. }
            | Expr::Or { inferred_type, .. }
            | Expr::GetTag { inferred_type, .. }
            | Expr::ListComprehension { inferred_type, .. }
            | Expr::ListReduce { inferred_type, .. }
            | Expr::InvokeMethodLazy { inferred_type, .. }
            | Expr::Range { inferred_type, .. }
            | Expr::Length { inferred_type, .. }
            | Expr::GenerateWorkerName { inferred_type, .. }
            | Expr::Call { inferred_type, .. } => {
                *inferred_type = new_inferred_type;
            }
        }
    }

    pub fn infer_enums(&mut self, component_dependency: &ComponentDependencies) {
        type_inference::infer_enums(self, component_dependency);
    }

    pub fn infer_variants(&mut self, component_dependency: &ComponentDependencies) {
        type_inference::infer_variants(self, component_dependency);
    }

    pub fn visit_expr_nodes_lazy<'a>(&'a mut self, queue: &mut VecDeque<&'a mut Expr>) {
        type_inference::visit_expr_nodes_lazy(self, queue);
    }

    pub fn number_inferred(
        big_decimal: BigDecimal,
        type_annotation: Option<TypeName>,
        inferred_type: InferredType,
    ) -> Expr {
        Expr::Number {
            number: Number { value: big_decimal },
            type_annotation,
            inferred_type,
            source_span: SourceSpan::default(),
        }
    }

    pub fn number(big_decimal: BigDecimal) -> Expr {
        let default_type = DefaultType::from(&big_decimal);
        let inferred_type = InferredType::from(&default_type);

        Expr::number_inferred(big_decimal, None, inferred_type)
    }
}

#[derive(Debug, Hash, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub enum Range {
    Range { from: Box<Expr>, to: Box<Expr> },
    RangeInclusive { from: Box<Expr>, to: Box<Expr> },
    RangeFrom { from: Box<Expr> },
}

impl Range {
    pub fn from(&self) -> Option<&Expr> {
        match self {
            Range::Range { from, .. } => Some(from),
            Range::RangeInclusive { from, .. } => Some(from),
            Range::RangeFrom { from } => Some(from),
        }
    }

    pub fn to(&self) -> Option<&Expr> {
        match self {
            Range::Range { to, .. } => Some(to),
            Range::RangeInclusive { to, .. } => Some(to),
            Range::RangeFrom { .. } => None,
        }
    }

    pub fn inclusive(&self) -> bool {
        matches!(self, Range::RangeInclusive { .. })
    }

    pub fn get_exprs_mut(&mut self) -> Vec<&mut Box<Expr>> {
        match self {
            Range::Range { from, to } => vec![from, to],
            Range::RangeInclusive { from, to } => vec![from, to],
            Range::RangeFrom { from } => vec![from],
        }
    }

    pub fn get_exprs(&self) -> Vec<&Expr> {
        match self {
            Range::Range { from, to } => vec![from.as_ref(), to.as_ref()],
            Range::RangeInclusive { from, to } => vec![from.as_ref(), to.as_ref()],
            Range::RangeFrom { from } => vec![from.as_ref()],
        }
    }
}

#[derive(Debug, Hash, Clone, PartialEq, Ord, PartialOrd)]
pub struct Number {
    pub value: BigDecimal,
}

impl Eq for Number {}

impl Number {
    pub fn to_val(&self, analysed_type: &AnalysedType) -> Option<ValueAndType> {
        match analysed_type {
            AnalysedType::F64(_) => self.value.to_f64().map(|v| v.into_value_and_type()),
            AnalysedType::U64(_) => self.value.to_u64().map(|v| v.into_value_and_type()),
            AnalysedType::F32(_) => self.value.to_f32().map(|v| v.into_value_and_type()),
            AnalysedType::U32(_) => self.value.to_u32().map(|v| v.into_value_and_type()),
            AnalysedType::S32(_) => self.value.to_i32().map(|v| v.into_value_and_type()),
            AnalysedType::S64(_) => self.value.to_i64().map(|v| v.into_value_and_type()),
            AnalysedType::U8(_) => self.value.to_u8().map(|v| v.into_value_and_type()),
            AnalysedType::S8(_) => self.value.to_i8().map(|v| v.into_value_and_type()),
            AnalysedType::U16(_) => self.value.to_u16().map(|v| v.into_value_and_type()),
            AnalysedType::S16(_) => self.value.to_i16().map(|v| v.into_value_and_type()),
            _ => None,
        }
    }
}

impl Display for Number {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.value)
    }
}

#[derive(Debug, Hash, Clone, PartialEq, Eq, Ord, PartialOrd)]
pub struct MatchArm {
    pub arm_pattern: ArmPattern,
    pub arm_resolution_expr: Box<Expr>,
}

impl MatchArm {
    pub fn new(arm_pattern: ArmPattern, arm_resolution: Expr) -> MatchArm {
        MatchArm {
            arm_pattern,
            arm_resolution_expr: Box::new(arm_resolution),
        }
    }
}
#[derive(Debug, Hash, Clone, PartialEq, Eq, Ord, PartialOrd)]
pub enum ArmPattern {
    WildCard,
    As(String, Box<ArmPattern>),
    Constructor(String, Vec<ArmPattern>),
    TupleConstructor(Vec<ArmPattern>),
    RecordConstructor(Vec<(String, ArmPattern)>),
    ListConstructor(Vec<ArmPattern>),
    Literal(Box<Expr>),
}

impl ArmPattern {
    pub fn is_wildcard(&self) -> bool {
        matches!(self, ArmPattern::WildCard)
    }

    pub fn is_literal_identifier(&self) -> bool {
        matches!(self, ArmPattern::Literal(expr) if expr.is_identifier())
    }

    pub fn constructor(name: &str, patterns: Vec<ArmPattern>) -> ArmPattern {
        ArmPattern::Constructor(name.to_string(), patterns)
    }

    pub fn literal(expr: Expr) -> ArmPattern {
        ArmPattern::Literal(Box::new(expr))
    }

    pub fn get_expr_literals_mut(&mut self) -> Vec<&mut Box<Expr>> {
        match self {
            ArmPattern::Literal(expr) => vec![expr],
            ArmPattern::As(_, pattern) => pattern.get_expr_literals_mut(),
            ArmPattern::Constructor(_, patterns) => {
                let mut result = vec![];
                for pattern in patterns {
                    result.extend(pattern.get_expr_literals_mut());
                }
                result
            }
            ArmPattern::TupleConstructor(patterns) => {
                let mut result = vec![];
                for pattern in patterns {
                    result.extend(pattern.get_expr_literals_mut());
                }
                result
            }
            ArmPattern::RecordConstructor(patterns) => {
                let mut result = vec![];
                for (_, pattern) in patterns {
                    result.extend(pattern.get_expr_literals_mut());
                }
                result
            }
            ArmPattern::ListConstructor(patterns) => {
                let mut result = vec![];
                for pattern in patterns {
                    result.extend(pattern.get_expr_literals_mut());
                }
                result
            }
            ArmPattern::WildCard => vec![],
        }
    }

    pub fn get_expr_literals(&self) -> Vec<&Expr> {
        match self {
            ArmPattern::Literal(expr) => vec![expr.as_ref()],
            ArmPattern::As(_, pattern) => pattern.get_expr_literals(),
            ArmPattern::Constructor(_, patterns) => {
                let mut result = vec![];
                for pattern in patterns {
                    result.extend(pattern.get_expr_literals());
                }
                result
            }
            ArmPattern::TupleConstructor(patterns) => {
                let mut result = vec![];
                for pattern in patterns {
                    result.extend(pattern.get_expr_literals());
                }
                result
            }
            ArmPattern::RecordConstructor(patterns) => {
                let mut result = vec![];
                for (_, pattern) in patterns {
                    result.extend(pattern.get_expr_literals());
                }
                result
            }
            ArmPattern::ListConstructor(patterns) => {
                let mut result = vec![];
                for pattern in patterns {
                    result.extend(pattern.get_expr_literals());
                }
                result
            }
            ArmPattern::WildCard => vec![],
        }
    }
    // Helper to construct ok(v). Cannot be used if there is nested constructors such as ok(some(v)))
    pub fn ok(binding_variable: &str) -> ArmPattern {
        ArmPattern::Literal(Box::new(Expr::Result {
            expr: Ok(Box::new(Expr::Identifier {
                variable_id: VariableId::global(binding_variable.to_string()),
                type_annotation: None,
                inferred_type: InferredType::unknown(),
                source_span: SourceSpan::default(),
            })),
            type_annotation: None,
            inferred_type: InferredType::result(
                Some(InferredType::unknown()),
                Some(InferredType::unknown()),
            ),
            source_span: SourceSpan::default(),
        }))
    }

    // Helper to construct err(v). Cannot be used if there is nested constructors such as err(some(v)))
    pub fn err(binding_variable: &str) -> ArmPattern {
        ArmPattern::Literal(Box::new(Expr::Result {
            expr: Err(Box::new(Expr::Identifier {
                variable_id: VariableId::global(binding_variable.to_string()),
                type_annotation: None,
                inferred_type: InferredType::unknown(),
                source_span: SourceSpan::default(),
            })),
            type_annotation: None,
            inferred_type: InferredType::result(
                Some(InferredType::unknown()),
                Some(InferredType::unknown()),
            ),
            source_span: SourceSpan::default(),
        }))
    }

    // Helper to construct some(v). Cannot be used if there is nested constructors such as some(ok(v)))
    pub fn some(binding_variable: &str) -> ArmPattern {
        ArmPattern::Literal(Box::new(Expr::Option {
            expr: Some(Box::new(Expr::Identifier {
                variable_id: VariableId::local_with_no_id(binding_variable),
                type_annotation: None,
                inferred_type: InferredType::unknown(),
                source_span: SourceSpan::default(),
            })),
            type_annotation: None,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
        }))
    }

    pub fn none() -> ArmPattern {
        ArmPattern::Literal(Box::new(Expr::Option {
            expr: None,
            type_annotation: None,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
        }))
    }

    pub fn identifier(binding_variable: &str) -> ArmPattern {
        ArmPattern::Literal(Box::new(Expr::Identifier {
            variable_id: VariableId::global(binding_variable.to_string()),
            type_annotation: None,
            inferred_type: InferredType::unknown(),
            source_span: SourceSpan::default(),
        }))
    }
    pub fn custom_constructor(name: &str, args: Vec<ArmPattern>) -> ArmPattern {
        ArmPattern::Constructor(name.to_string(), args)
    }
}

#[cfg(feature = "protobuf")]
impl TryFrom<golem_api_grpc::proto::golem::rib::Expr> for Expr {
    type Error = String;

    fn try_from(value: golem_api_grpc::proto::golem::rib::Expr) -> Result<Self, Self::Error> {
        let expr = value.expr.ok_or("Missing expr")?;

        let expr = match expr {
            golem_api_grpc::proto::golem::rib::expr::Expr::Let(expr) => {
                let name = expr.name;
                let type_annotation = expr.type_name.map(TypeName::try_from).transpose()?;
                let expr_: golem_api_grpc::proto::golem::rib::Expr =
                    *expr.expr.ok_or("Missing expr")?;
                let expr: Expr = expr_.try_into()?;
                Expr::let_binding(name, expr, type_annotation)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::SelectIndexV1(expr) => {
                let selection = *expr.expr.ok_or("Missing expr")?;
                let field = *expr.index.ok_or("Missing index")?;
                let type_annotation = expr.type_name.map(TypeName::try_from).transpose()?;

                Expr::select_index(selection.try_into()?, field.try_into()?)
                    .with_type_annotation_opt(type_annotation)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Length(expr) => {
                let expr = expr.expr.ok_or("Missing expr")?;
                Expr::Length {
                    expr: Box::new((*expr).try_into()?),
                    type_annotation: None,
                    inferred_type: InferredType::unknown(),
                    source_span: SourceSpan::default(),
                }
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Range(range) => {
                let range_expr = range.range_expr.ok_or("Missing range expr")?;

                match range_expr {
                    RangeExpr::RangeFrom(range_from) => {
                        let from = range_from.from.ok_or("Missing from expr")?;
                        Expr::range_from((*from).try_into()?)
                    }
                    RangeExpr::Range(range) => {
                        let from = range.from.ok_or("Missing from expr")?;
                        let to = range.to.ok_or("Missing to expr")?;
                        Expr::range((*from).try_into()?, (*to).try_into()?)
                    }
                    RangeExpr::RangeInclusive(range_inclusive) => {
                        let from = range_inclusive.from.ok_or("Missing from expr")?;
                        let to = range_inclusive.to.ok_or("Missing to expr")?;
                        Expr::range_inclusive((*from).try_into()?, (*to).try_into()?)
                    }
                }
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Not(expr) => {
                let expr = expr.expr.ok_or("Missing expr")?;
                Expr::not((*expr).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::GreaterThan(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::greater_than((*left).try_into()?, (*right).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::GreaterThanOrEqual(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::greater_than_or_equal_to((*left).try_into()?, (*right).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::LessThan(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::less_than((*left).try_into()?, (*right).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::LessThanOrEqual(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::less_than_or_equal_to((*left).try_into()?, (*right).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::EqualTo(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::equal_to((*left).try_into()?, (*right).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Add(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::plus((*left).try_into()?, (*right).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Subtract(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::plus((*left).try_into()?, (*right).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Divide(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::plus((*left).try_into()?, (*right).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Multiply(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::plus((*left).try_into()?, (*right).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Cond(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let cond = expr.cond.ok_or("Missing cond expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::cond(
                    (*left).try_into()?,
                    (*cond).try_into()?,
                    (*right).try_into()?,
                )
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Concat(
                golem_api_grpc::proto::golem::rib::ConcatExpr { exprs },
            ) => {
                let exprs: Vec<Expr> = exprs
                    .into_iter()
                    .map(|expr| expr.try_into())
                    .collect::<Result<Vec<_>, _>>()?;
                Expr::concat(exprs)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Multiple(
                golem_api_grpc::proto::golem::rib::MultipleExpr { exprs },
            ) => {
                let exprs: Vec<Expr> = exprs
                    .into_iter()
                    .map(|expr| expr.try_into())
                    .collect::<Result<Vec<_>, _>>()?;
                Expr::expr_block(exprs)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Sequence(
                golem_api_grpc::proto::golem::rib::SequenceExpr { exprs, type_name },
            ) => {
                let type_annotation = type_name.map(TypeName::try_from).transpose()?;

                let exprs: Vec<Expr> = exprs
                    .into_iter()
                    .map(|expr| expr.try_into())
                    .collect::<Result<Vec<_>, _>>()?;
                Expr::sequence(exprs, type_annotation)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Tuple(
                golem_api_grpc::proto::golem::rib::TupleExpr { exprs },
            ) => {
                let exprs: Vec<Expr> = exprs
                    .into_iter()
                    .map(|expr| expr.try_into())
                    .collect::<Result<Vec<_>, _>>()?;
                Expr::tuple(exprs)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Record(
                golem_api_grpc::proto::golem::rib::RecordExpr { fields },
            ) => {
                let mut values: Vec<(String, Expr)> = vec![];
                for record in fields.into_iter() {
                    let name = record.name;
                    let expr = record.expr.ok_or("Missing expr")?;
                    values.push((name, expr.try_into()?));
                }
                Expr::record(values)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Flags(
                golem_api_grpc::proto::golem::rib::FlagsExpr { values },
            ) => Expr::flags(values),

            golem_api_grpc::proto::golem::rib::expr::Expr::Literal(
                golem_api_grpc::proto::golem::rib::LiteralExpr { value },
            ) => Expr::literal(value),

            golem_api_grpc::proto::golem::rib::expr::Expr::Identifier(
                golem_api_grpc::proto::golem::rib::IdentifierExpr { name, type_name },
            ) => {
                let type_name = type_name.map(TypeName::try_from).transpose()?;

                Expr::identifier_global(name.as_str(), type_name)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Boolean(
                golem_api_grpc::proto::golem::rib::BooleanExpr { value },
            ) => Expr::boolean(value),

            golem_api_grpc::proto::golem::rib::expr::Expr::Throw(
                golem_api_grpc::proto::golem::rib::ThrowExpr { message },
            ) => Expr::throw(message),

            golem_api_grpc::proto::golem::rib::expr::Expr::GenerateWorkerName(
                golem_api_grpc::proto::golem::rib::GenerateWorkerNameExpr {},
            ) => Expr::generate_worker_name(None),

            golem_api_grpc::proto::golem::rib::expr::Expr::And(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::and((*left).try_into()?, (*right).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Or(expr) => {
                let left = expr.left.ok_or("Missing left expr")?;
                let right = expr.right.ok_or("Missing right expr")?;
                Expr::or((*left).try_into()?, (*right).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Tag(expr) => {
                let expr = expr.expr.ok_or("Missing expr in tag")?;
                Expr::get_tag((*expr).try_into()?)
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Unwrap(expr) => {
                let expr = expr.expr.ok_or("Missing expr")?;
                let expr: Expr = (*expr).try_into()?;
                expr.unwrap()
            }

            golem_api_grpc::proto::golem::rib::expr::Expr::Number(number) => {
                // Backward compatibility
                let type_name = number.type_name.map(TypeName::try_from).transpose()?;
                let big_decimal = if let Some(number) = number.number {
                    BigDecimal::from_str(&number).map_err(|e| e.to_string())?
                } else if let Some(float) = number.float {
                    BigDecimal::from_f64(float).ok_or("Invalid float")?
                } else {
                    return Err("Missing number".to_string());
                };

                Expr::number(big_decimal).with_type_annotation_opt(type_name)
            }
            golem_api_grpc::proto::golem::rib::expr::Expr::SelectField(expr) => {
                let expr = *expr;
                let field = expr.field;
                let type_name = expr.type_name.map(TypeName::try_from).transpose()?;
                let expr = *expr.expr.ok_or(
                    "Mi\
                ssing expr",
                )?;

                Expr::select_field(expr.try_into()?, field.as_str(), type_name)
            }
            golem_api_grpc::proto::golem::rib::expr::Expr::SelectIndex(expr) => {
                let expr = *expr;
                let type_name = expr.type_name.map(TypeName::try_from).transpose()?;
                let index = expr.index as usize;
                let expr = *expr.expr.ok_or("Missing expr")?;

                let index_expr =
                    Expr::number(BigDecimal::from_usize(index).ok_or("Invalid index")?);

                Expr::select_index(expr.try_into()?, index_expr).with_type_annotation_opt(type_name)
            }
            golem_api_grpc::proto::golem::rib::expr::Expr::Option(expr) => {
                let type_name = expr.type_name;
                let type_name = type_name.map(TypeName::try_from).transpose()?;

                match expr.expr {
                    Some(expr) => {
                        Expr::option(Some((*expr).try_into()?)).with_type_annotation_opt(type_name)
                    }
                    None => Expr::option(None).with_type_annotation_opt(type_name),
                }
            }
            golem_api_grpc::proto::golem::rib::expr::Expr::Result(expr) => {
                let type_name = expr.type_name;
                let type_name = type_name.map(TypeName::try_from).transpose()?;
                let result = expr.result.ok_or("Missing result")?;
                match result {
                    golem_api_grpc::proto::golem::rib::result_expr::Result::Ok(expr) => {
                        Expr::ok((*expr).try_into()?, type_name)
                    }
                    golem_api_grpc::proto::golem::rib::result_expr::Result::Err(expr) => {
                        Expr::err((*expr).try_into()?, type_name)
                    }
                }
            }
            golem_api_grpc::proto::golem::rib::expr::Expr::PatternMatch(expr) => {
                let patterns: Vec<MatchArm> = expr
                    .patterns
                    .into_iter()
                    .map(|expr| expr.try_into())
                    .collect::<Result<Vec<_>, _>>()?;
                let expr = expr.expr.ok_or("Missing expr")?;
                Expr::pattern_match((*expr).try_into()?, patterns)
            }
            golem_api_grpc::proto::golem::rib::expr::Expr::ListComprehension(
                list_comprehension,
            ) => {
                let iterable_expr = list_comprehension.iterable_expr.ok_or("Missing expr")?;
                let iterable_expr = (*iterable_expr).try_into()?;
                let yield_expr = list_comprehension.yield_expr.ok_or("Missing list")?;
                let yield_expr = (*yield_expr).try_into()?;
                let variable_id =
                    VariableId::list_comprehension_identifier(list_comprehension.iterated_variable);
                Expr::list_comprehension(variable_id, iterable_expr, yield_expr)
            }
            golem_api_grpc::proto::golem::rib::expr::Expr::ListReduce(list_reduce) => {
                let init_value_expr = list_reduce.init_value_expr.ok_or("Missing initial expr")?;
                let init_value_expr = (*init_value_expr).try_into()?;
                let iterable_expr = list_reduce.iterable_expr.ok_or("Missing expr")?;
                let iterable_expr = (*iterable_expr).try_into()?;
                let yield_expr = list_reduce.yield_expr.ok_or("Missing list")?;
                let yield_expr = (*yield_expr).try_into()?;
                let iterated_variable_id =
                    VariableId::list_comprehension_identifier(list_reduce.iterated_variable);
                let reduce_variable_id =
                    VariableId::list_reduce_identifier(list_reduce.reduce_variable);
                Expr::list_reduce(
                    reduce_variable_id,
                    iterated_variable_id,
                    iterable_expr,
                    init_value_expr,
                    yield_expr,
                )
            }
            golem_api_grpc::proto::golem::rib::expr::Expr::Call(expr) => {
                let params: Vec<Expr> = expr
                    .params
                    .into_iter()
                    .map(|expr| expr.try_into())
                    .collect::<Result<Vec<_>, _>>()?;
                // This is not required and kept for backward compatibility
                let legacy_invocation_name = expr.name;
                let call_type = expr.call_type;
                let generic_type_parameter = expr
                    .generic_type_parameter
                    .map(|tp| GenericTypeParameter { value: tp });

                match (legacy_invocation_name, call_type) {
                    (Some(legacy), None) => {
                        let name = legacy.name.ok_or("Missing function call name")?;
                        match name {
                            golem_api_grpc::proto::golem::rib::invocation_name::Name::Parsed(name) => {
                                // Reading the previous parsed-function-name in persistent store as a dynamic-parsed-function-name
                                Expr::call_worker_function(DynamicParsedFunctionName::parse(
                                    ParsedFunctionName::try_from(name)?.to_string()
                                )?, generic_type_parameter, None, params, None)
                            }
                            golem_api_grpc::proto::golem::rib::invocation_name::Name::VariantConstructor(
                                name,
                            ) => Expr::call_worker_function(DynamicParsedFunctionName::parse(name)?, generic_type_parameter, None, params, None),
                            golem_api_grpc::proto::golem::rib::invocation_name::Name::EnumConstructor(
                                name,
                            ) => Expr::call_worker_function(DynamicParsedFunctionName::parse(name)?, generic_type_parameter, None, params, None),
                        }
                    }
                    (_, Some(call_type)) => {
                        let name = call_type.name.ok_or("Missing function call name")?;
                        match name {
                            golem_api_grpc::proto::golem::rib::call_type::Name::Parsed(name) => {
                                Expr::call_worker_function(name.try_into()?, generic_type_parameter, None, params, None)
                            }
                            golem_api_grpc::proto::golem::rib::call_type::Name::VariantConstructor(
                                name,
                            ) => Expr::call_worker_function(DynamicParsedFunctionName::parse(name)?, generic_type_parameter, None, params, None),
                            golem_api_grpc::proto::golem::rib::call_type::Name::EnumConstructor(
                                name,
                            ) => Expr::call_worker_function(DynamicParsedFunctionName::parse(name)?, generic_type_parameter, None, params, None),
                            golem_api_grpc::proto::golem::rib::call_type::Name::InstanceCreation(instance_creation) => {
                                let instance_creation_type = InstanceCreationType::try_from(*instance_creation)?;
                                let call_type = CallType::InstanceCreation(instance_creation_type);
                                Expr::Call {
                                    call_type,
                                    generic_type_parameter,
                                    args: vec![],
                                    inferred_type: InferredType::unknown(),
                                    source_span: SourceSpan::default(),
                                    type_annotation: None, // TODO
                                }
                            }
                        }
                    }
                    (_, _) => Err("Missing both call type (and legacy invocation type)")?,
                }
            }
            golem_api_grpc::proto::golem::rib::expr::Expr::LazyInvokeMethod(lazy_invoke) => {
                let lhs_proto = lazy_invoke.lhs.ok_or("Missing lhs")?;
                let lhs = Box::new((*lhs_proto).try_into()?);
                let method = lazy_invoke.method;
                let generic_type_parameter = lazy_invoke.generic_type_parameter;
                let args: Vec<Expr> = lazy_invoke
                    .args
                    .into_iter()
                    .map(Expr::try_from)
                    .collect::<Result<Vec<_>, _>>()?;

                Expr::InvokeMethodLazy {
                    lhs,
                    method,
                    generic_type_parameter: generic_type_parameter
                        .map(|value| GenericTypeParameter { value }),
                    args,
                    inferred_type: InferredType::unknown(),
                    source_span: SourceSpan::default(),
                    type_annotation: None, //TODO
                }
            }
        };
        Ok(expr)
    }
}

impl Display for Expr {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", text::to_string(self).unwrap())
    }
}

impl Display for ArmPattern {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", text::to_string_arm_pattern(self).unwrap())
    }
}

impl<'de> Deserialize<'de> for Expr {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let value = Value::deserialize(deserializer)?;
        match value {
            Value::String(expr_string) => match from_string(expr_string.as_str()) {
                Ok(expr) => Ok(expr),
                Err(message) => Err(serde::de::Error::custom(message.to_string())),
            },

            e => Err(serde::de::Error::custom(format!(
                "Failed to deserialize expression {e}"
            ))),
        }
    }
}

impl Serialize for Expr {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: Serializer,
    {
        match text::to_string(self) {
            Ok(value) => Value::serialize(&Value::String(value), serializer),
            Err(error) => Err(serde::ser::Error::custom(error.to_string())),
        }
    }
}

#[cfg(feature = "protobuf")]
mod protobuf {
    use crate::{ArmPattern, Expr, MatchArm, Range};
    use golem_api_grpc::proto::golem::rib::range_expr::RangeExpr;

    // It is to be noted that when we change `Expr` tree solely for the purpose of
    // updating type inference, we don't need to change the proto version
    // of Expr. A proto version of Expr changes only when Rib adds/updates the grammar itself.
    // This makes it easy to keep backward compatibility at the persistence level
    // (if persistence using grpc encode)
    //
    // Reason: A proto version of Expr doesn't take into the account the type inferred
    // for each expr, or encode any behaviour that's the result of a type inference
    // Example: in a type inference, a variable-id of expr which is tagged as `global` becomes
    // `VariableId::Local(Identifier)` after a particular type inference phase, however, when encoding
    // we don't need to consider this `Identifier` and is kept as global (i.e, the raw form) in Expr.
    // This is because we never (want to) encode an Expr which is a result of `infer_types` function.
    //
    // Summary: We encode Expr only prior to compilation. After compilation, we encode only the RibByteCode.
    // If we ever want to encode Expr after type-inference phase, it implies, we need to encode `InferredExpr`
    // rather than `Expr` and this will ensure, users when retrieving back the `Expr` will never have
    // noise regarding types and variable-ids, and will always stay one to one in round trip
    impl From<Expr> for golem_api_grpc::proto::golem::rib::Expr {
        fn from(value: Expr) -> Self {
            let expr = match value {
                Expr::GenerateWorkerName { .. } => Some(
                    golem_api_grpc::proto::golem::rib::expr::Expr::GenerateWorkerName(
                        golem_api_grpc::proto::golem::rib::GenerateWorkerNameExpr {},
                    ),
                ),
                Expr::Let {
                    variable_id,
                    type_annotation,
                    expr,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Let(
                    Box::new(golem_api_grpc::proto::golem::rib::LetExpr {
                        name: variable_id.name().to_string(),
                        expr: Some(Box::new((*expr).into())),
                        type_name: type_annotation.map(|t| t.into()),
                    }),
                )),

                Expr::Length { expr, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Length(
                        Box::new(golem_api_grpc::proto::golem::rib::LengthExpr {
                            expr: Some(Box::new((*expr).into())),
                        }),
                    ))
                }

                Expr::SelectField {
                    expr,
                    field,
                    type_annotation,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::SelectField(
                    Box::new(golem_api_grpc::proto::golem::rib::SelectFieldExpr {
                        expr: Some(Box::new((*expr).into())),
                        field,
                        type_name: type_annotation.map(|t| t.into()),
                    }),
                )),

                Expr::Range { range, .. } => match range {
                    Range::RangeFrom { from } => {
                        Some(golem_api_grpc::proto::golem::rib::expr::Expr::Range(
                            Box::new(golem_api_grpc::proto::golem::rib::RangeExpr {
                                range_expr: Some(RangeExpr::RangeFrom(Box::new(
                                    golem_api_grpc::proto::golem::rib::RangeFrom {
                                        from: Some(Box::new((*from).into())),
                                    },
                                ))),
                            }),
                        ))
                    }
                    Range::Range { from, to } => {
                        Some(golem_api_grpc::proto::golem::rib::expr::Expr::Range(
                            Box::new(golem_api_grpc::proto::golem::rib::RangeExpr {
                                range_expr: Some(RangeExpr::Range(Box::new(
                                    golem_api_grpc::proto::golem::rib::Range {
                                        from: Some(Box::new((*from).into())),
                                        to: Some(Box::new((*to).into())),
                                    },
                                ))),
                            }),
                        ))
                    }
                    Range::RangeInclusive { from, to } => {
                        Some(golem_api_grpc::proto::golem::rib::expr::Expr::Range(
                            Box::new(golem_api_grpc::proto::golem::rib::RangeExpr {
                                range_expr: Some(RangeExpr::RangeInclusive(Box::new(
                                    golem_api_grpc::proto::golem::rib::RangeInclusive {
                                        from: Some(Box::new((*from).into())),
                                        to: Some(Box::new((*to).into())),
                                    },
                                ))),
                            }),
                        ))
                    }
                },

                Expr::SelectIndex {
                    expr,
                    index,
                    type_annotation,
                    ..
                } => Some(
                    golem_api_grpc::proto::golem::rib::expr::Expr::SelectIndexV1(Box::new(
                        golem_api_grpc::proto::golem::rib::SelectIndexExprV1 {
                            expr: Some(Box::new((*expr).into())),
                            index: Some(Box::new((*index).into())),
                            type_name: type_annotation.map(|t| t.into()),
                        },
                    )),
                ),

                Expr::Sequence {
                    exprs: expressions,
                    type_annotation,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Sequence(
                    golem_api_grpc::proto::golem::rib::SequenceExpr {
                        exprs: expressions.into_iter().map(|expr| expr.into()).collect(),
                        type_name: type_annotation.map(|t| t.into()),
                    },
                )),
                Expr::Record { exprs: fields, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Record(
                        golem_api_grpc::proto::golem::rib::RecordExpr {
                            fields: fields
                                .into_iter()
                                .map(|(name, expr)| {
                                    golem_api_grpc::proto::golem::rib::RecordFieldExpr {
                                        name,
                                        expr: Some((*expr).into()),
                                    }
                                })
                                .collect(),
                        },
                    ))
                }
                Expr::Tuple {
                    exprs: expressions, ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Tuple(
                    golem_api_grpc::proto::golem::rib::TupleExpr {
                        exprs: expressions.into_iter().map(|expr| expr.into()).collect(),
                    },
                )),
                Expr::Literal { value, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Literal(
                        golem_api_grpc::proto::golem::rib::LiteralExpr { value },
                    ))
                }
                Expr::Number {
                    number,
                    type_annotation,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Number(
                    golem_api_grpc::proto::golem::rib::NumberExpr {
                        number: Some(number.value.to_string()),
                        float: None,
                        type_name: type_annotation.map(|t| t.into()),
                    },
                )),
                Expr::Flags { flags, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Flags(
                        golem_api_grpc::proto::golem::rib::FlagsExpr { values: flags },
                    ))
                }
                Expr::Identifier {
                    variable_id,
                    type_annotation,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Identifier(
                    golem_api_grpc::proto::golem::rib::IdentifierExpr {
                        name: variable_id.name(),
                        type_name: type_annotation.map(|t| t.into()),
                    },
                )),
                Expr::Boolean { value, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Boolean(
                        golem_api_grpc::proto::golem::rib::BooleanExpr { value },
                    ))
                }
                Expr::Concat {
                    exprs: expressions, ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Concat(
                    golem_api_grpc::proto::golem::rib::ConcatExpr {
                        exprs: expressions.into_iter().map(|expr| expr.into()).collect(),
                    },
                )),
                Expr::ExprBlock {
                    exprs: expressions, ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Multiple(
                    golem_api_grpc::proto::golem::rib::MultipleExpr {
                        exprs: expressions.into_iter().map(|expr| expr.into()).collect(),
                    },
                )),
                Expr::Not { expr, .. } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Not(
                    Box::new(golem_api_grpc::proto::golem::rib::NotExpr {
                        expr: Some(Box::new((*expr).into())),
                    }),
                )),
                Expr::GreaterThan {
                    lhs: left,
                    rhs: right,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::GreaterThan(
                    Box::new(golem_api_grpc::proto::golem::rib::GreaterThanExpr {
                        left: Some(Box::new((*left).into())),
                        right: Some(Box::new((*right).into())),
                    }),
                )),
                Expr::GreaterThanOrEqualTo { lhs, rhs, .. } => Some(
                    golem_api_grpc::proto::golem::rib::expr::Expr::GreaterThanOrEqual(Box::new(
                        golem_api_grpc::proto::golem::rib::GreaterThanOrEqualToExpr {
                            left: Some(Box::new((*lhs).into())),
                            right: Some(Box::new((*rhs).into())),
                        },
                    )),
                ),
                Expr::LessThan {
                    lhs: left,
                    rhs: right,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::LessThan(
                    Box::new(golem_api_grpc::proto::golem::rib::LessThanExpr {
                        left: Some(Box::new((*left).into())),
                        right: Some(Box::new((*right).into())),
                    }),
                )),
                Expr::Plus {
                    lhs: left,
                    rhs: right,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Add(
                    Box::new(golem_api_grpc::proto::golem::rib::AddExpr {
                        left: Some(Box::new((*left).into())),
                        right: Some(Box::new((*right).into())),
                    }),
                )),
                Expr::Minus {
                    lhs: left,
                    rhs: right,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Subtract(
                    Box::new(golem_api_grpc::proto::golem::rib::SubtractExpr {
                        left: Some(Box::new((*left).into())),
                        right: Some(Box::new((*right).into())),
                    }),
                )),
                Expr::Divide { lhs, rhs, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Divide(
                        Box::new(golem_api_grpc::proto::golem::rib::DivideExpr {
                            left: Some(Box::new((*lhs).into())),
                            right: Some(Box::new((*rhs).into())),
                        }),
                    ))
                }
                Expr::Multiply { lhs, rhs, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Multiply(
                        Box::new(golem_api_grpc::proto::golem::rib::MultiplyExpr {
                            left: Some(Box::new((*lhs).into())),
                            right: Some(Box::new((*rhs).into())),
                        }),
                    ))
                }
                Expr::LessThanOrEqualTo { lhs, rhs, .. } => Some(
                    golem_api_grpc::proto::golem::rib::expr::Expr::LessThanOrEqual(Box::new(
                        golem_api_grpc::proto::golem::rib::LessThanOrEqualToExpr {
                            left: Some(Box::new((*lhs).into())),
                            right: Some(Box::new((*rhs).into())),
                        },
                    )),
                ),
                Expr::EqualTo { lhs, rhs, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::EqualTo(
                        Box::new(golem_api_grpc::proto::golem::rib::EqualToExpr {
                            left: Some(Box::new((*lhs).into())),
                            right: Some(Box::new((*rhs).into())),
                        }),
                    ))
                }
                // Note: We were storing and retrieving (proto) condition expressions such that
                // `cond` was written `lhs` and vice versa.
                // This is probably difficult to fix to keep backward compatibility
                // The issue is only with the protobuf types and the roundtrip tests were/are working since
                // the read handles this (i.e, reading cond as lhs)
                Expr::Cond {
                    cond: lhs,
                    lhs: cond,
                    rhs,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Cond(
                    Box::new(golem_api_grpc::proto::golem::rib::CondExpr {
                        left: Some(Box::new((*lhs).into())),
                        cond: Some(Box::new((*cond).into())),
                        right: Some(Box::new((*rhs).into())),
                    }),
                )),
                Expr::PatternMatch {
                    predicate,
                    match_arms,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::PatternMatch(
                    Box::new(golem_api_grpc::proto::golem::rib::PatternMatchExpr {
                        expr: Some(Box::new((*predicate).into())),
                        patterns: match_arms.into_iter().map(|a| a.into()).collect(),
                    }),
                )),
                Expr::Option {
                    expr,
                    type_annotation,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::Option(
                    Box::new(golem_api_grpc::proto::golem::rib::OptionExpr {
                        expr: expr.map(|expr| Box::new((*expr).into())),
                        type_name: type_annotation.map(|t| t.into()),
                    }),
                )),
                Expr::Result {
                    expr,
                    type_annotation,
                    ..
                } => {
                    let type_name = type_annotation.map(|t| t.into());

                    let result = match expr {
                        Ok(expr) => golem_api_grpc::proto::golem::rib::result_expr::Result::Ok(
                            Box::new((*expr).into()),
                        ),
                        Err(expr) => golem_api_grpc::proto::golem::rib::result_expr::Result::Err(
                            Box::new((*expr).into()),
                        ),
                    };

                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Result(
                        Box::new(golem_api_grpc::proto::golem::rib::ResultExpr {
                            result: Some(result),
                            type_name,
                        }),
                    ))
                }
                Expr::Call {
                    call_type,
                    generic_type_parameter,
                    args,
                    ..
                } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Call(
                        Box::new(golem_api_grpc::proto::golem::rib::CallExpr {
                            name: None, // Kept for backward compatibility
                            params: args.into_iter().map(|expr| expr.into()).collect(),
                            generic_type_parameter: generic_type_parameter.map(|t| t.value),
                            call_type: Some(Box::new(
                                golem_api_grpc::proto::golem::rib::CallType::from(call_type),
                            )),
                        }),
                    ))
                }
                Expr::Unwrap { expr, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Unwrap(
                        Box::new(golem_api_grpc::proto::golem::rib::UnwrapExpr {
                            expr: Some(Box::new((*expr).into())),
                        }),
                    ))
                }
                Expr::Throw { message, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Throw(
                        golem_api_grpc::proto::golem::rib::ThrowExpr { message },
                    ))
                }
                Expr::GetTag { expr, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Tag(
                        Box::new(golem_api_grpc::proto::golem::rib::GetTagExpr {
                            expr: Some(Box::new((*expr).into())),
                        }),
                    ))
                }
                Expr::And { lhs, rhs, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::And(
                        Box::new(golem_api_grpc::proto::golem::rib::AndExpr {
                            left: Some(Box::new((*lhs).into())),
                            right: Some(Box::new((*rhs).into())),
                        }),
                    ))
                }

                Expr::Or { lhs, rhs, .. } => {
                    Some(golem_api_grpc::proto::golem::rib::expr::Expr::Or(Box::new(
                        golem_api_grpc::proto::golem::rib::OrExpr {
                            left: Some(Box::new((*lhs).into())),
                            right: Some(Box::new((*rhs).into())),
                        },
                    )))
                }
                Expr::ListComprehension {
                    iterated_variable,
                    iterable_expr,
                    yield_expr,
                    ..
                } => Some(
                    golem_api_grpc::proto::golem::rib::expr::Expr::ListComprehension(Box::new(
                        golem_api_grpc::proto::golem::rib::ListComprehensionExpr {
                            iterated_variable: iterated_variable.name(),
                            iterable_expr: Some(Box::new((*iterable_expr).into())),
                            yield_expr: Some(Box::new((*yield_expr).into())),
                        },
                    )),
                ),

                Expr::ListReduce {
                    reduce_variable,
                    iterated_variable,
                    iterable_expr,
                    yield_expr,
                    init_value_expr,
                    ..
                } => Some(golem_api_grpc::proto::golem::rib::expr::Expr::ListReduce(
                    Box::new(golem_api_grpc::proto::golem::rib::ListReduceExpr {
                        reduce_variable: reduce_variable.name(),
                        iterated_variable: iterated_variable.name(),
                        iterable_expr: Some(Box::new((*iterable_expr).into())),
                        init_value_expr: Some(Box::new((*init_value_expr).into())),
                        yield_expr: Some(Box::new((*yield_expr).into())),
                    }),
                )),
                Expr::InvokeMethodLazy {
                    lhs,
                    method,
                    generic_type_parameter,
                    args,
                    ..
                } => Some(
                    golem_api_grpc::proto::golem::rib::expr::Expr::LazyInvokeMethod(Box::new(
                        golem_api_grpc::proto::golem::rib::LazyInvokeMethodExpr {
                            lhs: Some(Box::new((*lhs).into())),
                            method,
                            generic_type_parameter: generic_type_parameter.map(|t| t.value),
                            args: args.into_iter().map(|expr| expr.into()).collect(),
                        },
                    )),
                ),
            };

            golem_api_grpc::proto::golem::rib::Expr { expr }
        }
    }

    impl TryFrom<golem_api_grpc::proto::golem::rib::ArmPattern> for ArmPattern {
        type Error = String;

        fn try_from(
            value: golem_api_grpc::proto::golem::rib::ArmPattern,
        ) -> Result<Self, Self::Error> {
            let pattern = value.pattern.ok_or("Missing pattern")?;
            match pattern {
                golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::WildCard(_) => {
                    Ok(ArmPattern::WildCard)
                }
                golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::As(asp) => {
                    let name = asp.name;
                    let pattern = asp.pattern.ok_or("Missing pattern")?;
                    Ok(ArmPattern::As(name, Box::new((*pattern).try_into()?)))
                }
                golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::Constructor(
                    golem_api_grpc::proto::golem::rib::ConstructorArmPattern { name, patterns },
                ) => {
                    let patterns = patterns
                        .into_iter()
                        .map(ArmPattern::try_from)
                        .collect::<Result<Vec<_>, _>>()?;
                    Ok(ArmPattern::Constructor(name, patterns))
                }
                golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::TupleConstructor(
                    golem_api_grpc::proto::golem::rib::TupleConstructorArmPattern { patterns },
                ) => {
                    let patterns = patterns
                        .into_iter()
                        .map(ArmPattern::try_from)
                        .collect::<Result<Vec<_>, _>>()?;
                    Ok(ArmPattern::TupleConstructor(patterns))
                }
                golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::Literal(
                    golem_api_grpc::proto::golem::rib::LiteralArmPattern { expr },
                ) => {
                    let inner = expr.ok_or("Missing expr")?;
                    Ok(ArmPattern::Literal(Box::new(inner.try_into()?)))
                }
                golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::RecordConstructor(
                    golem_api_grpc::proto::golem::rib::RecordConstructorArmPattern { fields },
                ) => {
                    let fields = fields
                        .into_iter()
                        .map(|field| {
                            let name = field.name;
                            let proto_pattern = field.pattern.ok_or("Missing pattern")?;
                            let arm_pattern = ArmPattern::try_from(proto_pattern)?;
                            Ok((name, arm_pattern))
                        })
                        .collect::<Result<Vec<_>, String>>()?;
                    Ok(ArmPattern::RecordConstructor(fields))
                }
                golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::ListConstructor(
                    golem_api_grpc::proto::golem::rib::ListConstructorArmPattern { patterns },
                ) => {
                    let patterns = patterns
                        .into_iter()
                        .map(ArmPattern::try_from)
                        .collect::<Result<Vec<_>, _>>()?;
                    Ok(ArmPattern::ListConstructor(patterns))
                }
            }
        }
    }

    impl From<ArmPattern> for golem_api_grpc::proto::golem::rib::ArmPattern {
        fn from(value: ArmPattern) -> Self {
            match value {
                ArmPattern::WildCard => golem_api_grpc::proto::golem::rib::ArmPattern {
                    pattern: Some(
                        golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::WildCard(
                            golem_api_grpc::proto::golem::rib::WildCardArmPattern {},
                        ),
                    ),
                },
                ArmPattern::As(name, pattern) => golem_api_grpc::proto::golem::rib::ArmPattern {
                    pattern: Some(golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::As(
                        Box::new(golem_api_grpc::proto::golem::rib::AsArmPattern {
                            name,
                            pattern: Some(Box::new((*pattern).into())),
                        }),
                    )),
                },
                ArmPattern::Constructor(name, patterns) => {
                    golem_api_grpc::proto::golem::rib::ArmPattern {
                        pattern: Some(
                            golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::Constructor(
                                golem_api_grpc::proto::golem::rib::ConstructorArmPattern {
                                    name,
                                    patterns: patterns
                                        .into_iter()
                                        .map(golem_api_grpc::proto::golem::rib::ArmPattern::from)
                                        .collect(),
                                },
                            ),
                        ),
                    }
                }
                ArmPattern::Literal(expr) => golem_api_grpc::proto::golem::rib::ArmPattern {
                    pattern: Some(
                        golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::Literal(
                            golem_api_grpc::proto::golem::rib::LiteralArmPattern {
                                expr: Some((*expr).into()),
                            },
                        ),
                    ),
                },

                ArmPattern::TupleConstructor(patterns) => {
                    golem_api_grpc::proto::golem::rib::ArmPattern {
                        pattern: Some(
                            golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::TupleConstructor(
                                golem_api_grpc::proto::golem::rib::TupleConstructorArmPattern {
                                    patterns: patterns
                                        .into_iter()
                                        .map(golem_api_grpc::proto::golem::rib::ArmPattern::from)
                                        .collect(),
                                },
                            ),
                        ),
                    }
                }

                ArmPattern::RecordConstructor(fields) => {
                    golem_api_grpc::proto::golem::rib::ArmPattern {
                        pattern: Some(
                            golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::RecordConstructor(
                                golem_api_grpc::proto::golem::rib::RecordConstructorArmPattern {
                                    fields: fields
                                        .into_iter()
                                        .map(|(name, pattern)| {
                                            golem_api_grpc::proto::golem::rib::RecordFieldArmPattern {
                                                name,
                                                pattern: Some(pattern.into()),
                                            }
                                        })
                                        .collect(),
                                },
                            ),
                        ),
                    }
                }

                ArmPattern::ListConstructor(patterns) => {
                    golem_api_grpc::proto::golem::rib::ArmPattern {
                        pattern: Some(
                            golem_api_grpc::proto::golem::rib::arm_pattern::Pattern::ListConstructor(
                                golem_api_grpc::proto::golem::rib::ListConstructorArmPattern {
                                    patterns: patterns
                                        .into_iter()
                                        .map(golem_api_grpc::proto::golem::rib::ArmPattern::from)
                                        .collect(),
                                },
                            ),
                        ),
                    }
                }
            }
        }
    }

    impl TryFrom<golem_api_grpc::proto::golem::rib::MatchArm> for MatchArm {
        type Error = String;

        fn try_from(
            value: golem_api_grpc::proto::golem::rib::MatchArm,
        ) -> Result<Self, Self::Error> {
            let pattern = value.pattern.ok_or("Missing pattern")?;
            let expr = value.expr.ok_or("Missing expr")?;
            Ok(MatchArm::new(pattern.try_into()?, expr.try_into()?))
        }
    }

    impl From<MatchArm> for golem_api_grpc::proto::golem::rib::MatchArm {
        fn from(value: MatchArm) -> Self {
            let MatchArm {
                arm_pattern,
                arm_resolution_expr,
            } = value;
            golem_api_grpc::proto::golem::rib::MatchArm {
                pattern: Some(arm_pattern.into()),
                expr: Some((*arm_resolution_expr).into()),
            }
        }
    }
}

fn find_expr(expr: &mut Expr, source_span: &SourceSpan) -> Option<Expr> {
    let mut expr = expr.clone();

    let mut visitor = ExprVisitor::bottom_up(&mut expr);

    while let Some(current) = visitor.pop_back() {
        let span = current.source_span();

        if source_span.eq(&span) {
            return Some(current.clone());
        }
    }

    None
}