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 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135
|
{-# LANGUAGE Rank2Types, GADTs #-}
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE ScopedTypeVariables #-}
module PrintCode where
{-# LINE 2 "src-ag/Patterns.ag" #-}
-- Patterns.ag imports
import UU.Scanner.Position(Pos)
import CommonTypes (ConstructorIdent,Identifier)
{-# LINE 12 "src-generated/PrintCode.hs" #-}
{-# LINE 2 "src-ag/Code.ag" #-}
import Patterns
import Data.Set(Set)
import qualified Data.Set as Set
import Data.Map(Map)
import qualified Data.Map as Map
{-# LINE 21 "src-generated/PrintCode.hs" #-}
{-# LINE 10 "src-ag/PrintCode.ag" #-}
import Data.Char (isAlphaNum)
import Pretty
import Code
import Options
import CommonTypes (attrname, _LOC, nullIdent)
import Data.List(intersperse)
import System.IO
import System.Directory
import System.FilePath
import CommonTypes(BlockInfo, BlockKind(..))
{-# LINE 35 "src-generated/PrintCode.hs" #-}
import Control.Monad.Identity (Identity)
import qualified Control.Monad.Identity
{-# LINE 146 "src-ag/Code.ag" #-}
-- Unboxed tuples
-- unbox Whether unboxed tuples are wanted or not
-- inh The inherited attributes.
-- If there are none, no unboxing can take place,
-- because in that case the semantic function (a top-level identifier) would have an unboxed type.
-- Of course we can't have an unboxed 1-tuple
mkTupleExpr :: Bool -> Bool -> Exprs -> Expr
mkTupleExpr unbox' noInh exprs | not unbox' || noInh || length exprs == 1 = TupleExpr exprs
| otherwise = UnboxedTupleExpr exprs
mkTupleType :: Bool -> Bool -> Types -> Type
mkTupleType unbox' noInh tps | not unbox' || noInh || length tps == 1 = TupleType tps
| otherwise = UnboxedTupleType tps
mkTupleLhs :: Bool -> Bool -> [String] -> Lhs
mkTupleLhs unbox' noInh comps | not unbox' || noInh || length comps == 1 = TupleLhs comps
| otherwise = UnboxedTupleLhs comps
{-# LINE 55 "src-generated/PrintCode.hs" #-}
{-# LINE 23 "src-ag/PrintCode.ag" #-}
type PP_Docs = [PP_Doc]
{-# LINE 60 "src-generated/PrintCode.hs" #-}
{-# LINE 27 "src-ag/PrintCode.ag" #-}
ppMultiSeqH :: [PP_Doc] -> PP_Doc -> PP_Doc
ppMultiSeqH = ppMultiSeq' (>#<)
ppMultiSeqV :: [PP_Doc] -> PP_Doc -> PP_Doc
ppMultiSeqV = ppMultiSeq' (>-<)
ppMultiSeq' :: (PP_Doc -> PP_Doc -> PP_Doc) -> [PP_Doc] -> PP_Doc -> PP_Doc
ppMultiSeq' next strictArgs expr
= foldr (\v r -> (v >#< "`seq`") `next` pp_parens r) expr strictArgs
{-# LINE 73 "src-generated/PrintCode.hs" #-}
{-# LINE 303 "src-ag/PrintCode.ag" #-}
reallySimple :: String -> Bool
reallySimple = and . map (\x -> isAlphaNum x || x=='_')
ppTuple :: Bool -> [PP_Doc] -> PP_Doc
ppTuple True pps = "(" >|< pp_block " " (replicate (length pps `max` 1) ')') ",(" pps
ppTuple False pps = "(" >|< pp_block " " ")" "," pps
ppUnboxedTuple :: Bool -> [PP_Doc] -> PP_Doc
ppUnboxedTuple True pps = "(# " >|< pp_block " " (concat $ replicate (length pps `max` 1) " #)") ",(# " pps
ppUnboxedTuple False pps = "(# " >|< pp_block " " " #)" "," pps
{-# LINE 88 "src-generated/PrintCode.hs" #-}
{-# LINE 404 "src-ag/PrintCode.ag" #-}
locname' :: Identifier -> [Char]
locname' n = "_loc_" ++ getName n
{-# LINE 94 "src-generated/PrintCode.hs" #-}
{-# LINE 479 "src-ag/PrintCode.ag" #-}
renderDocs :: [PP_Doc] -> String
renderDocs pps = foldr (.) id (map (\d -> (disp d 50000) . ( '\n':) ) pps) ""
{-# LINE 100 "src-generated/PrintCode.hs" #-}
{-# LINE 527 "src-ag/PrintCode.ag" #-}
writeModule :: FilePath -> [PP_Doc] -> IO ()
writeModule path docs
= do bExists <- doesFileExist path
if bExists
then do input <- readFile path
seq (length input) (return ())
if input /= output
then dumpIt
else return ()
else dumpIt
where
output = renderDocs docs
dumpIt = writeFile path output
{-# LINE 117 "src-generated/PrintCode.hs" #-}
-- CaseAlt -----------------------------------------------------
-- wrapper
data Inh_CaseAlt = Inh_CaseAlt { nested_Inh_CaseAlt :: !(Bool), options_Inh_CaseAlt :: !(Options), outputfile_Inh_CaseAlt :: !(String) }
data Syn_CaseAlt = Syn_CaseAlt { pps_Syn_CaseAlt :: !(PP_Docs) }
{-# INLINABLE wrap_CaseAlt #-}
wrap_CaseAlt :: T_CaseAlt -> Inh_CaseAlt -> (Syn_CaseAlt )
wrap_CaseAlt !(T_CaseAlt act) !(Inh_CaseAlt _lhsInested _lhsIoptions _lhsIoutputfile) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg1 = T_CaseAlt_vIn1 _lhsInested _lhsIoptions _lhsIoutputfile
!(T_CaseAlt_vOut1 _lhsOpps) <- return (inv_CaseAlt_s2 sem arg1)
return (Syn_CaseAlt _lhsOpps)
)
-- cata
{-# NOINLINE sem_CaseAlt #-}
sem_CaseAlt :: CaseAlt -> T_CaseAlt
sem_CaseAlt ( CaseAlt left_ expr_ ) = sem_CaseAlt_CaseAlt ( sem_Lhs left_ ) ( sem_Expr expr_ )
-- semantic domain
newtype T_CaseAlt = T_CaseAlt {
attach_T_CaseAlt :: Identity (T_CaseAlt_s2 )
}
newtype T_CaseAlt_s2 = C_CaseAlt_s2 {
inv_CaseAlt_s2 :: (T_CaseAlt_v1 )
}
data T_CaseAlt_s3 = C_CaseAlt_s3
type T_CaseAlt_v1 = (T_CaseAlt_vIn1 ) -> (T_CaseAlt_vOut1 )
data T_CaseAlt_vIn1 = T_CaseAlt_vIn1 (Bool) (Options) (String)
data T_CaseAlt_vOut1 = T_CaseAlt_vOut1 (PP_Docs)
{-# NOINLINE sem_CaseAlt_CaseAlt #-}
sem_CaseAlt_CaseAlt :: T_Lhs -> T_Expr -> T_CaseAlt
sem_CaseAlt_CaseAlt arg_left_ arg_expr_ = T_CaseAlt (return st2) where
{-# NOINLINE st2 #-}
!st2 = let
v1 :: T_CaseAlt_v1
v1 = \ !(T_CaseAlt_vIn1 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_leftX32 = Control.Monad.Identity.runIdentity (attach_T_Lhs (arg_left_))
_exprX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_expr_))
(T_Lhs_vOut31 _leftIpp) = inv_Lhs_s32 _leftX32 (T_Lhs_vIn31 _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile)
(T_Expr_vOut25 _exprIpp) = inv_Expr_s26 _exprX26 (T_Expr_vIn25 _exprOnested _exprOoptions _exprOoutputfile)
_lhsOpps :: PP_Docs
_lhsOpps = rule0 _exprIpp _leftIpp
_leftOisDeclOfLet = rule1 ()
_leftOnested = rule2 _lhsInested
_leftOoptions = rule3 _lhsIoptions
_leftOoutputfile = rule4 _lhsIoutputfile
_exprOnested = rule5 _lhsInested
_exprOoptions = rule6 _lhsIoptions
_exprOoutputfile = rule7 _lhsIoutputfile
!__result_ = T_CaseAlt_vOut1 _lhsOpps
in __result_ )
in C_CaseAlt_s2 v1
{-# INLINE rule0 #-}
{-# LINE 218 "src-ag/PrintCode.ag" #-}
rule0 = \ ((_exprIpp) :: PP_Doc) ((_leftIpp) :: PP_Doc) ->
{-# LINE 218 "src-ag/PrintCode.ag" #-}
["{" >#< _leftIpp >#< "->", _exprIpp >#< "}"]
{-# LINE 176 "src-generated/PrintCode.hs" #-}
{-# INLINE rule1 #-}
{-# LINE 428 "src-ag/PrintCode.ag" #-}
rule1 = \ (_ :: ()) ->
{-# LINE 428 "src-ag/PrintCode.ag" #-}
False
{-# LINE 182 "src-generated/PrintCode.hs" #-}
{-# INLINE rule2 #-}
rule2 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule3 #-}
rule3 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule4 #-}
rule4 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule5 #-}
rule5 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule6 #-}
rule6 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule7 #-}
rule7 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
-- CaseAlts ----------------------------------------------------
-- wrapper
data Inh_CaseAlts = Inh_CaseAlts { nested_Inh_CaseAlts :: !(Bool), options_Inh_CaseAlts :: !(Options), outputfile_Inh_CaseAlts :: !(String) }
data Syn_CaseAlts = Syn_CaseAlts { pps_Syn_CaseAlts :: !(PP_Docs) }
{-# INLINABLE wrap_CaseAlts #-}
wrap_CaseAlts :: T_CaseAlts -> Inh_CaseAlts -> (Syn_CaseAlts )
wrap_CaseAlts !(T_CaseAlts act) !(Inh_CaseAlts _lhsInested _lhsIoptions _lhsIoutputfile) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg4 = T_CaseAlts_vIn4 _lhsInested _lhsIoptions _lhsIoutputfile
!(T_CaseAlts_vOut4 _lhsOpps) <- return (inv_CaseAlts_s5 sem arg4)
return (Syn_CaseAlts _lhsOpps)
)
-- cata
{-# NOINLINE sem_CaseAlts #-}
sem_CaseAlts :: CaseAlts -> T_CaseAlts
sem_CaseAlts list = Prelude.foldr sem_CaseAlts_Cons sem_CaseAlts_Nil (Prelude.map sem_CaseAlt list)
-- semantic domain
newtype T_CaseAlts = T_CaseAlts {
attach_T_CaseAlts :: Identity (T_CaseAlts_s5 )
}
newtype T_CaseAlts_s5 = C_CaseAlts_s5 {
inv_CaseAlts_s5 :: (T_CaseAlts_v4 )
}
data T_CaseAlts_s6 = C_CaseAlts_s6
type T_CaseAlts_v4 = (T_CaseAlts_vIn4 ) -> (T_CaseAlts_vOut4 )
data T_CaseAlts_vIn4 = T_CaseAlts_vIn4 (Bool) (Options) (String)
data T_CaseAlts_vOut4 = T_CaseAlts_vOut4 (PP_Docs)
{-# NOINLINE sem_CaseAlts_Cons #-}
sem_CaseAlts_Cons :: T_CaseAlt -> T_CaseAlts -> T_CaseAlts
sem_CaseAlts_Cons arg_hd_ arg_tl_ = T_CaseAlts (return st5) where
{-# NOINLINE st5 #-}
!st5 = let
v4 :: T_CaseAlts_v4
v4 = \ !(T_CaseAlts_vIn4 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_hdX2 = Control.Monad.Identity.runIdentity (attach_T_CaseAlt (arg_hd_))
_tlX5 = Control.Monad.Identity.runIdentity (attach_T_CaseAlts (arg_tl_))
(T_CaseAlt_vOut1 _hdIpps) = inv_CaseAlt_s2 _hdX2 (T_CaseAlt_vIn1 _hdOnested _hdOoptions _hdOoutputfile)
(T_CaseAlts_vOut4 _tlIpps) = inv_CaseAlts_s5 _tlX5 (T_CaseAlts_vIn4 _tlOnested _tlOoptions _tlOoutputfile)
_lhsOpps :: PP_Docs
_lhsOpps = rule8 _hdIpps _tlIpps
_hdOnested = rule9 _lhsInested
_hdOoptions = rule10 _lhsIoptions
_hdOoutputfile = rule11 _lhsIoutputfile
_tlOnested = rule12 _lhsInested
_tlOoptions = rule13 _lhsIoptions
_tlOoutputfile = rule14 _lhsIoutputfile
!__result_ = T_CaseAlts_vOut4 _lhsOpps
in __result_ )
in C_CaseAlts_s5 v4
{-# INLINE rule8 #-}
{-# LINE 68 "src-ag/PrintCode.ag" #-}
rule8 = \ ((_hdIpps) :: PP_Docs) ((_tlIpps) :: PP_Docs) ->
{-# LINE 68 "src-ag/PrintCode.ag" #-}
_hdIpps ++ _tlIpps
{-# LINE 259 "src-generated/PrintCode.hs" #-}
{-# INLINE rule9 #-}
rule9 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule10 #-}
rule10 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule11 #-}
rule11 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule12 #-}
rule12 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule13 #-}
rule13 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule14 #-}
rule14 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_CaseAlts_Nil #-}
sem_CaseAlts_Nil :: T_CaseAlts
sem_CaseAlts_Nil = T_CaseAlts (return st5) where
{-# NOINLINE st5 #-}
!st5 = let
v4 :: T_CaseAlts_v4
v4 = \ !(T_CaseAlts_vIn4 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_lhsOpps :: PP_Docs
_lhsOpps = rule15 ()
!__result_ = T_CaseAlts_vOut4 _lhsOpps
in __result_ )
in C_CaseAlts_s5 v4
{-# INLINE rule15 #-}
{-# LINE 69 "src-ag/PrintCode.ag" #-}
rule15 = \ (_ :: ()) ->
{-# LINE 69 "src-ag/PrintCode.ag" #-}
[]
{-# LINE 295 "src-generated/PrintCode.hs" #-}
-- Chunk -------------------------------------------------------
-- wrapper
data Inh_Chunk = Inh_Chunk { importBlocks_Inh_Chunk :: !(PP_Doc), isDeclOfLet_Inh_Chunk :: !(Bool), mainFile_Inh_Chunk :: !(String), mainName_Inh_Chunk :: !(String), moduleHeader_Inh_Chunk :: !(String -> String -> String -> Bool -> String), nested_Inh_Chunk :: !(Bool), options_Inh_Chunk :: !(Options), optionsLine_Inh_Chunk :: !(String), pragmaBlocks_Inh_Chunk :: !(String), textBlockMap_Inh_Chunk :: !(Map BlockInfo PP_Doc), textBlocks_Inh_Chunk :: !(PP_Doc) }
data Syn_Chunk = Syn_Chunk { appendCommon_Syn_Chunk :: !([[PP_Doc]]), appendMain_Syn_Chunk :: !([[PP_Doc]]), genSems_Syn_Chunk :: !(IO ()), imports_Syn_Chunk :: !([String]), pps_Syn_Chunk :: !(PP_Docs) }
{-# INLINABLE wrap_Chunk #-}
wrap_Chunk :: T_Chunk -> Inh_Chunk -> (Syn_Chunk )
wrap_Chunk !(T_Chunk act) !(Inh_Chunk _lhsIimportBlocks _lhsIisDeclOfLet _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsInested _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg7 = T_Chunk_vIn7 _lhsIimportBlocks _lhsIisDeclOfLet _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsInested _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks
!(T_Chunk_vOut7 _lhsOappendCommon _lhsOappendMain _lhsOgenSems _lhsOimports _lhsOpps) <- return (inv_Chunk_s8 sem arg7)
return (Syn_Chunk _lhsOappendCommon _lhsOappendMain _lhsOgenSems _lhsOimports _lhsOpps)
)
-- cata
{-# INLINE sem_Chunk #-}
sem_Chunk :: Chunk -> T_Chunk
sem_Chunk ( Chunk !name_ comment_ info_ dataDef_ cataFun_ semDom_ semWrapper_ semFunctions_ !semNames_ ) = sem_Chunk_Chunk name_ ( sem_Decl comment_ ) ( sem_Decls info_ ) ( sem_Decls dataDef_ ) ( sem_Decls cataFun_ ) ( sem_Decls semDom_ ) ( sem_Decls semWrapper_ ) ( sem_Decls semFunctions_ ) semNames_
-- semantic domain
newtype T_Chunk = T_Chunk {
attach_T_Chunk :: Identity (T_Chunk_s8 )
}
newtype T_Chunk_s8 = C_Chunk_s8 {
inv_Chunk_s8 :: (T_Chunk_v7 )
}
data T_Chunk_s9 = C_Chunk_s9
type T_Chunk_v7 = (T_Chunk_vIn7 ) -> (T_Chunk_vOut7 )
data T_Chunk_vIn7 = T_Chunk_vIn7 (PP_Doc) (Bool) (String) (String) (String -> String -> String -> Bool -> String) (Bool) (Options) (String) (String) (Map BlockInfo PP_Doc) (PP_Doc)
data T_Chunk_vOut7 = T_Chunk_vOut7 ([[PP_Doc]]) ([[PP_Doc]]) (IO ()) ([String]) (PP_Docs)
{-# NOINLINE sem_Chunk_Chunk #-}
sem_Chunk_Chunk :: (String) -> T_Decl -> T_Decls -> T_Decls -> T_Decls -> T_Decls -> T_Decls -> T_Decls -> ([String]) -> T_Chunk
sem_Chunk_Chunk !arg_name_ arg_comment_ arg_info_ arg_dataDef_ arg_cataFun_ arg_semDom_ arg_semWrapper_ arg_semFunctions_ !arg_semNames_ = T_Chunk (return st8) where
{-# NOINLINE st8 #-}
!st8 = let
v7 :: T_Chunk_v7
v7 = \ !(T_Chunk_vIn7 _lhsIimportBlocks _lhsIisDeclOfLet _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsInested _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks) -> ( let
_commentX20 = Control.Monad.Identity.runIdentity (attach_T_Decl (arg_comment_))
_infoX23 = Control.Monad.Identity.runIdentity (attach_T_Decls (arg_info_))
_dataDefX23 = Control.Monad.Identity.runIdentity (attach_T_Decls (arg_dataDef_))
_cataFunX23 = Control.Monad.Identity.runIdentity (attach_T_Decls (arg_cataFun_))
_semDomX23 = Control.Monad.Identity.runIdentity (attach_T_Decls (arg_semDom_))
_semWrapperX23 = Control.Monad.Identity.runIdentity (attach_T_Decls (arg_semWrapper_))
_semFunctionsX23 = Control.Monad.Identity.runIdentity (attach_T_Decls (arg_semFunctions_))
(T_Decl_vOut19 _commentIpp) = inv_Decl_s20 _commentX20 (T_Decl_vIn19 _commentOisDeclOfLet _commentOnested _commentOoptions _commentOoutputfile)
(T_Decls_vOut22 _infoIpps) = inv_Decls_s23 _infoX23 (T_Decls_vIn22 _infoOisDeclOfLet _infoOnested _infoOoptions _infoOoutputfile)
(T_Decls_vOut22 _dataDefIpps) = inv_Decls_s23 _dataDefX23 (T_Decls_vIn22 _dataDefOisDeclOfLet _dataDefOnested _dataDefOoptions _dataDefOoutputfile)
(T_Decls_vOut22 _cataFunIpps) = inv_Decls_s23 _cataFunX23 (T_Decls_vIn22 _cataFunOisDeclOfLet _cataFunOnested _cataFunOoptions _cataFunOoutputfile)
(T_Decls_vOut22 _semDomIpps) = inv_Decls_s23 _semDomX23 (T_Decls_vIn22 _semDomOisDeclOfLet _semDomOnested _semDomOoptions _semDomOoutputfile)
(T_Decls_vOut22 _semWrapperIpps) = inv_Decls_s23 _semWrapperX23 (T_Decls_vIn22 _semWrapperOisDeclOfLet _semWrapperOnested _semWrapperOoptions _semWrapperOoutputfile)
(T_Decls_vOut22 _semFunctionsIpps) = inv_Decls_s23 _semFunctionsX23 (T_Decls_vIn22 _semFunctionsOisDeclOfLet _semFunctionsOnested _semFunctionsOoptions _semFunctionsOoutputfile)
_outputfile = rule16 _lhsImainFile _lhsIoptions arg_name_
_lhsOpps :: PP_Docs
_lhsOpps = rule17 _cataFunIpps _commentIpp _dataDefIpps _infoIpps _lhsItextBlockMap _semDomIpps _semFunctionsIpps _semWrapperIpps arg_name_
_lhsOimports :: [String]
_lhsOimports = rule18 _lhsImainName arg_name_
_lhsOappendCommon :: [[PP_Doc]]
_lhsOappendCommon = rule19 _commentIpp _dataDefIpps _lhsIoptions _semDomIpps _semWrapperIpps
_lhsOappendMain :: [[PP_Doc]]
_lhsOappendMain = rule20 _cataFunIpps _commentIpp _lhsIoptions _semWrapperIpps
_lhsOgenSems :: IO ()
_lhsOgenSems = rule21 _commentIpp _exports _infoIpps _lhsImainName _lhsImoduleHeader _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _outputfile _semFunctionsIpps arg_name_
_exports = rule22 arg_semNames_
_commentOisDeclOfLet = rule23 _lhsIisDeclOfLet
_commentOnested = rule24 _lhsInested
_commentOoptions = rule25 _lhsIoptions
_commentOoutputfile = rule26 _outputfile
_infoOisDeclOfLet = rule27 _lhsIisDeclOfLet
_infoOnested = rule28 _lhsInested
_infoOoptions = rule29 _lhsIoptions
_infoOoutputfile = rule30 _outputfile
_dataDefOisDeclOfLet = rule31 _lhsIisDeclOfLet
_dataDefOnested = rule32 _lhsInested
_dataDefOoptions = rule33 _lhsIoptions
_dataDefOoutputfile = rule34 _outputfile
_cataFunOisDeclOfLet = rule35 _lhsIisDeclOfLet
_cataFunOnested = rule36 _lhsInested
_cataFunOoptions = rule37 _lhsIoptions
_cataFunOoutputfile = rule38 _outputfile
_semDomOisDeclOfLet = rule39 _lhsIisDeclOfLet
_semDomOnested = rule40 _lhsInested
_semDomOoptions = rule41 _lhsIoptions
_semDomOoutputfile = rule42 _outputfile
_semWrapperOisDeclOfLet = rule43 _lhsIisDeclOfLet
_semWrapperOnested = rule44 _lhsInested
_semWrapperOoptions = rule45 _lhsIoptions
_semWrapperOoutputfile = rule46 _outputfile
_semFunctionsOisDeclOfLet = rule47 _lhsIisDeclOfLet
_semFunctionsOnested = rule48 _lhsInested
_semFunctionsOoptions = rule49 _lhsIoptions
_semFunctionsOoutputfile = rule50 _outputfile
!__result_ = T_Chunk_vOut7 _lhsOappendCommon _lhsOappendMain _lhsOgenSems _lhsOimports _lhsOpps
in __result_ )
in C_Chunk_s8 v7
{-# INLINE rule16 #-}
{-# LINE 43 "src-ag/PrintCode.ag" #-}
rule16 = \ ((_lhsImainFile) :: String) ((_lhsIoptions) :: Options) name_ ->
{-# LINE 43 "src-ag/PrintCode.ag" #-}
if sepSemMods _lhsIoptions
then replaceBaseName _lhsImainFile (takeBaseName _lhsImainFile ++ "_" ++ name_)
else _lhsImainFile
{-# LINE 398 "src-generated/PrintCode.hs" #-}
{-# INLINE rule17 #-}
{-# LINE 96 "src-ag/PrintCode.ag" #-}
rule17 = \ ((_cataFunIpps) :: PP_Docs) ((_commentIpp) :: PP_Doc) ((_dataDefIpps) :: PP_Docs) ((_infoIpps) :: PP_Docs) ((_lhsItextBlockMap) :: Map BlockInfo PP_Doc) ((_semDomIpps) :: PP_Docs) ((_semFunctionsIpps) :: PP_Docs) ((_semWrapperIpps) :: PP_Docs) name_ ->
{-# LINE 96 "src-ag/PrintCode.ag" #-}
_commentIpp
: _infoIpps
++ _dataDefIpps
++ _cataFunIpps
++ _semDomIpps
++ _semWrapperIpps
++ _semFunctionsIpps
++ [Map.findWithDefault empty (BlockOther, Just $ identifier name_) _lhsItextBlockMap]
{-# LINE 411 "src-generated/PrintCode.hs" #-}
{-# INLINE rule18 #-}
{-# LINE 487 "src-ag/PrintCode.ag" #-}
rule18 = \ ((_lhsImainName) :: String) name_ ->
{-# LINE 487 "src-ag/PrintCode.ag" #-}
["import " ++ _lhsImainName ++ "_" ++ name_ ++ "\n"]
{-# LINE 417 "src-generated/PrintCode.hs" #-}
{-# INLINE rule19 #-}
{-# LINE 494 "src-ag/PrintCode.ag" #-}
rule19 = \ ((_commentIpp) :: PP_Doc) ((_dataDefIpps) :: PP_Docs) ((_lhsIoptions) :: Options) ((_semDomIpps) :: PP_Docs) ((_semWrapperIpps) :: PP_Docs) ->
{-# LINE 494 "src-ag/PrintCode.ag" #-}
[ [_commentIpp]
, _dataDefIpps
, _semDomIpps
, if reference _lhsIoptions then _semWrapperIpps else []
]
{-# LINE 427 "src-generated/PrintCode.hs" #-}
{-# INLINE rule20 #-}
{-# LINE 500 "src-ag/PrintCode.ag" #-}
rule20 = \ ((_cataFunIpps) :: PP_Docs) ((_commentIpp) :: PP_Doc) ((_lhsIoptions) :: Options) ((_semWrapperIpps) :: PP_Docs) ->
{-# LINE 500 "src-ag/PrintCode.ag" #-}
[ [_commentIpp]
, _cataFunIpps
, if reference _lhsIoptions then [] else _semWrapperIpps
]
{-# LINE 436 "src-generated/PrintCode.hs" #-}
{-# INLINE rule21 #-}
{-# LINE 510 "src-ag/PrintCode.ag" #-}
rule21 = \ ((_commentIpp) :: PP_Doc) _exports ((_infoIpps) :: PP_Docs) ((_lhsImainName) :: String) ((_lhsImoduleHeader) :: String -> String -> String -> Bool -> String) ((_lhsIoptionsLine) :: String) ((_lhsIpragmaBlocks) :: String) ((_lhsItextBlockMap) :: Map BlockInfo PP_Doc) _outputfile ((_semFunctionsIpps) :: PP_Docs) name_ ->
{-# LINE 510 "src-ag/PrintCode.ag" #-}
writeModule _outputfile
[ pp $ _lhsIpragmaBlocks
, pp $ Map.findWithDefault empty (BlockPragma, Just $ identifier name_) _lhsItextBlockMap
, pp $ _lhsIoptionsLine
, pp $ _lhsImoduleHeader _lhsImainName ("_" ++ name_) _exports True
, pp $ ("import " ++ _lhsImainName ++ "_common\n")
, pp $ Map.findWithDefault empty (BlockImport, Just $ identifier name_) _lhsItextBlockMap
, _commentIpp
, vlist_sep "" _infoIpps
, vlist_sep "" _semFunctionsIpps
, Map.findWithDefault empty (BlockOther, Just $ identifier name_) _lhsItextBlockMap
]
{-# LINE 453 "src-generated/PrintCode.hs" #-}
{-# INLINE rule22 #-}
{-# LINE 525 "src-ag/PrintCode.ag" #-}
rule22 = \ semNames_ ->
{-# LINE 525 "src-ag/PrintCode.ag" #-}
concat $ intersperse "," semNames_
{-# LINE 459 "src-generated/PrintCode.hs" #-}
{-# INLINE rule23 #-}
rule23 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule24 #-}
rule24 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule25 #-}
rule25 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule26 #-}
rule26 = \ _outputfile ->
_outputfile
{-# INLINE rule27 #-}
rule27 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule28 #-}
rule28 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule29 #-}
rule29 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule30 #-}
rule30 = \ _outputfile ->
_outputfile
{-# INLINE rule31 #-}
rule31 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule32 #-}
rule32 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule33 #-}
rule33 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule34 #-}
rule34 = \ _outputfile ->
_outputfile
{-# INLINE rule35 #-}
rule35 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule36 #-}
rule36 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule37 #-}
rule37 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule38 #-}
rule38 = \ _outputfile ->
_outputfile
{-# INLINE rule39 #-}
rule39 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule40 #-}
rule40 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule41 #-}
rule41 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule42 #-}
rule42 = \ _outputfile ->
_outputfile
{-# INLINE rule43 #-}
rule43 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule44 #-}
rule44 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule45 #-}
rule45 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule46 #-}
rule46 = \ _outputfile ->
_outputfile
{-# INLINE rule47 #-}
rule47 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule48 #-}
rule48 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule49 #-}
rule49 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule50 #-}
rule50 = \ _outputfile ->
_outputfile
-- Chunks ------------------------------------------------------
-- wrapper
data Inh_Chunks = Inh_Chunks { importBlocks_Inh_Chunks :: !(PP_Doc), isDeclOfLet_Inh_Chunks :: !(Bool), mainFile_Inh_Chunks :: !(String), mainName_Inh_Chunks :: !(String), moduleHeader_Inh_Chunks :: !(String -> String -> String -> Bool -> String), nested_Inh_Chunks :: !(Bool), options_Inh_Chunks :: !(Options), optionsLine_Inh_Chunks :: !(String), pragmaBlocks_Inh_Chunks :: !(String), textBlockMap_Inh_Chunks :: !(Map BlockInfo PP_Doc), textBlocks_Inh_Chunks :: !(PP_Doc) }
data Syn_Chunks = Syn_Chunks { appendCommon_Syn_Chunks :: !([[PP_Doc]]), appendMain_Syn_Chunks :: !([[PP_Doc]]), genSems_Syn_Chunks :: !(IO ()), imports_Syn_Chunks :: !([String]), pps_Syn_Chunks :: !(PP_Docs) }
{-# INLINABLE wrap_Chunks #-}
wrap_Chunks :: T_Chunks -> Inh_Chunks -> (Syn_Chunks )
wrap_Chunks !(T_Chunks act) !(Inh_Chunks _lhsIimportBlocks _lhsIisDeclOfLet _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsInested _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg10 = T_Chunks_vIn10 _lhsIimportBlocks _lhsIisDeclOfLet _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsInested _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks
!(T_Chunks_vOut10 _lhsOappendCommon _lhsOappendMain _lhsOgenSems _lhsOimports _lhsOpps) <- return (inv_Chunks_s11 sem arg10)
return (Syn_Chunks _lhsOappendCommon _lhsOappendMain _lhsOgenSems _lhsOimports _lhsOpps)
)
-- cata
{-# NOINLINE sem_Chunks #-}
sem_Chunks :: Chunks -> T_Chunks
sem_Chunks list = Prelude.foldr sem_Chunks_Cons sem_Chunks_Nil (Prelude.map sem_Chunk list)
-- semantic domain
newtype T_Chunks = T_Chunks {
attach_T_Chunks :: Identity (T_Chunks_s11 )
}
newtype T_Chunks_s11 = C_Chunks_s11 {
inv_Chunks_s11 :: (T_Chunks_v10 )
}
data T_Chunks_s12 = C_Chunks_s12
type T_Chunks_v10 = (T_Chunks_vIn10 ) -> (T_Chunks_vOut10 )
data T_Chunks_vIn10 = T_Chunks_vIn10 (PP_Doc) (Bool) (String) (String) (String -> String -> String -> Bool -> String) (Bool) (Options) (String) (String) (Map BlockInfo PP_Doc) (PP_Doc)
data T_Chunks_vOut10 = T_Chunks_vOut10 ([[PP_Doc]]) ([[PP_Doc]]) (IO ()) ([String]) (PP_Docs)
{-# NOINLINE sem_Chunks_Cons #-}
sem_Chunks_Cons :: T_Chunk -> T_Chunks -> T_Chunks
sem_Chunks_Cons arg_hd_ arg_tl_ = T_Chunks (return st11) where
{-# NOINLINE st11 #-}
!st11 = let
v10 :: T_Chunks_v10
v10 = \ !(T_Chunks_vIn10 _lhsIimportBlocks _lhsIisDeclOfLet _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsInested _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks) -> ( let
_hdX8 = Control.Monad.Identity.runIdentity (attach_T_Chunk (arg_hd_))
_tlX11 = Control.Monad.Identity.runIdentity (attach_T_Chunks (arg_tl_))
(T_Chunk_vOut7 _hdIappendCommon _hdIappendMain _hdIgenSems _hdIimports _hdIpps) = inv_Chunk_s8 _hdX8 (T_Chunk_vIn7 _hdOimportBlocks _hdOisDeclOfLet _hdOmainFile _hdOmainName _hdOmoduleHeader _hdOnested _hdOoptions _hdOoptionsLine _hdOpragmaBlocks _hdOtextBlockMap _hdOtextBlocks)
(T_Chunks_vOut10 _tlIappendCommon _tlIappendMain _tlIgenSems _tlIimports _tlIpps) = inv_Chunks_s11 _tlX11 (T_Chunks_vIn10 _tlOimportBlocks _tlOisDeclOfLet _tlOmainFile _tlOmainName _tlOmoduleHeader _tlOnested _tlOoptions _tlOoptionsLine _tlOpragmaBlocks _tlOtextBlockMap _tlOtextBlocks)
_lhsOpps :: PP_Docs
_lhsOpps = rule51 _hdIpps _tlIpps
_lhsOappendCommon :: [[PP_Doc]]
_lhsOappendCommon = rule52 _hdIappendCommon _tlIappendCommon
_lhsOappendMain :: [[PP_Doc]]
_lhsOappendMain = rule53 _hdIappendMain _tlIappendMain
_lhsOgenSems :: IO ()
_lhsOgenSems = rule54 _hdIgenSems _tlIgenSems
_lhsOimports :: [String]
_lhsOimports = rule55 _hdIimports _tlIimports
_hdOimportBlocks = rule56 _lhsIimportBlocks
_hdOisDeclOfLet = rule57 _lhsIisDeclOfLet
_hdOmainFile = rule58 _lhsImainFile
_hdOmainName = rule59 _lhsImainName
_hdOmoduleHeader = rule60 _lhsImoduleHeader
_hdOnested = rule61 _lhsInested
_hdOoptions = rule62 _lhsIoptions
_hdOoptionsLine = rule63 _lhsIoptionsLine
_hdOpragmaBlocks = rule64 _lhsIpragmaBlocks
_hdOtextBlockMap = rule65 _lhsItextBlockMap
_hdOtextBlocks = rule66 _lhsItextBlocks
_tlOimportBlocks = rule67 _lhsIimportBlocks
_tlOisDeclOfLet = rule68 _lhsIisDeclOfLet
_tlOmainFile = rule69 _lhsImainFile
_tlOmainName = rule70 _lhsImainName
_tlOmoduleHeader = rule71 _lhsImoduleHeader
_tlOnested = rule72 _lhsInested
_tlOoptions = rule73 _lhsIoptions
_tlOoptionsLine = rule74 _lhsIoptionsLine
_tlOpragmaBlocks = rule75 _lhsIpragmaBlocks
_tlOtextBlockMap = rule76 _lhsItextBlockMap
_tlOtextBlocks = rule77 _lhsItextBlocks
!__result_ = T_Chunks_vOut10 _lhsOappendCommon _lhsOappendMain _lhsOgenSems _lhsOimports _lhsOpps
in __result_ )
in C_Chunks_s11 v10
{-# INLINE rule51 #-}
{-# LINE 88 "src-ag/PrintCode.ag" #-}
rule51 = \ ((_hdIpps) :: PP_Docs) ((_tlIpps) :: PP_Docs) ->
{-# LINE 88 "src-ag/PrintCode.ag" #-}
_hdIpps ++ _tlIpps
{-# LINE 626 "src-generated/PrintCode.hs" #-}
{-# INLINE rule52 #-}
rule52 = \ ((_hdIappendCommon) :: [[PP_Doc]]) ((_tlIappendCommon) :: [[PP_Doc]]) ->
_hdIappendCommon ++ _tlIappendCommon
{-# INLINE rule53 #-}
rule53 = \ ((_hdIappendMain) :: [[PP_Doc]]) ((_tlIappendMain) :: [[PP_Doc]]) ->
_hdIappendMain ++ _tlIappendMain
{-# INLINE rule54 #-}
rule54 = \ ((_hdIgenSems) :: IO ()) ((_tlIgenSems) :: IO ()) ->
_hdIgenSems >> _tlIgenSems
{-# INLINE rule55 #-}
rule55 = \ ((_hdIimports) :: [String]) ((_tlIimports) :: [String]) ->
_hdIimports ++ _tlIimports
{-# INLINE rule56 #-}
rule56 = \ ((_lhsIimportBlocks) :: PP_Doc) ->
_lhsIimportBlocks
{-# INLINE rule57 #-}
rule57 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule58 #-}
rule58 = \ ((_lhsImainFile) :: String) ->
_lhsImainFile
{-# INLINE rule59 #-}
rule59 = \ ((_lhsImainName) :: String) ->
_lhsImainName
{-# INLINE rule60 #-}
rule60 = \ ((_lhsImoduleHeader) :: String -> String -> String -> Bool -> String) ->
_lhsImoduleHeader
{-# INLINE rule61 #-}
rule61 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule62 #-}
rule62 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule63 #-}
rule63 = \ ((_lhsIoptionsLine) :: String) ->
_lhsIoptionsLine
{-# INLINE rule64 #-}
rule64 = \ ((_lhsIpragmaBlocks) :: String) ->
_lhsIpragmaBlocks
{-# INLINE rule65 #-}
rule65 = \ ((_lhsItextBlockMap) :: Map BlockInfo PP_Doc) ->
_lhsItextBlockMap
{-# INLINE rule66 #-}
rule66 = \ ((_lhsItextBlocks) :: PP_Doc) ->
_lhsItextBlocks
{-# INLINE rule67 #-}
rule67 = \ ((_lhsIimportBlocks) :: PP_Doc) ->
_lhsIimportBlocks
{-# INLINE rule68 #-}
rule68 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule69 #-}
rule69 = \ ((_lhsImainFile) :: String) ->
_lhsImainFile
{-# INLINE rule70 #-}
rule70 = \ ((_lhsImainName) :: String) ->
_lhsImainName
{-# INLINE rule71 #-}
rule71 = \ ((_lhsImoduleHeader) :: String -> String -> String -> Bool -> String) ->
_lhsImoduleHeader
{-# INLINE rule72 #-}
rule72 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule73 #-}
rule73 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule74 #-}
rule74 = \ ((_lhsIoptionsLine) :: String) ->
_lhsIoptionsLine
{-# INLINE rule75 #-}
rule75 = \ ((_lhsIpragmaBlocks) :: String) ->
_lhsIpragmaBlocks
{-# INLINE rule76 #-}
rule76 = \ ((_lhsItextBlockMap) :: Map BlockInfo PP_Doc) ->
_lhsItextBlockMap
{-# INLINE rule77 #-}
rule77 = \ ((_lhsItextBlocks) :: PP_Doc) ->
_lhsItextBlocks
{-# NOINLINE sem_Chunks_Nil #-}
sem_Chunks_Nil :: T_Chunks
sem_Chunks_Nil = T_Chunks (return st11) where
{-# NOINLINE st11 #-}
!st11 = let
v10 :: T_Chunks_v10
v10 = \ !(T_Chunks_vIn10 _lhsIimportBlocks _lhsIisDeclOfLet _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsInested _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks) -> ( let
_lhsOpps :: PP_Docs
_lhsOpps = rule78 ()
_lhsOappendCommon :: [[PP_Doc]]
_lhsOappendCommon = rule79 ()
_lhsOappendMain :: [[PP_Doc]]
_lhsOappendMain = rule80 ()
_lhsOgenSems :: IO ()
_lhsOgenSems = rule81 ()
_lhsOimports :: [String]
_lhsOimports = rule82 ()
!__result_ = T_Chunks_vOut10 _lhsOappendCommon _lhsOappendMain _lhsOgenSems _lhsOimports _lhsOpps
in __result_ )
in C_Chunks_s11 v10
{-# INLINE rule78 #-}
{-# LINE 89 "src-ag/PrintCode.ag" #-}
rule78 = \ (_ :: ()) ->
{-# LINE 89 "src-ag/PrintCode.ag" #-}
[]
{-# LINE 730 "src-generated/PrintCode.hs" #-}
{-# INLINE rule79 #-}
rule79 = \ (_ :: ()) ->
[]
{-# INLINE rule80 #-}
rule80 = \ (_ :: ()) ->
[]
{-# INLINE rule81 #-}
rule81 = \ (_ :: ()) ->
return ()
{-# INLINE rule82 #-}
rule82 = \ (_ :: ()) ->
[]
-- DataAlt -----------------------------------------------------
-- wrapper
data Inh_DataAlt = Inh_DataAlt { nested_Inh_DataAlt :: !(Bool), strictPre_Inh_DataAlt :: !(PP_Doc) }
data Syn_DataAlt = Syn_DataAlt { pp_Syn_DataAlt :: !(PP_Doc) }
{-# INLINABLE wrap_DataAlt #-}
wrap_DataAlt :: T_DataAlt -> Inh_DataAlt -> (Syn_DataAlt )
wrap_DataAlt !(T_DataAlt act) !(Inh_DataAlt _lhsInested _lhsIstrictPre) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg13 = T_DataAlt_vIn13 _lhsInested _lhsIstrictPre
!(T_DataAlt_vOut13 _lhsOpp) <- return (inv_DataAlt_s14 sem arg13)
return (Syn_DataAlt _lhsOpp)
)
-- cata
{-# NOINLINE sem_DataAlt #-}
sem_DataAlt :: DataAlt -> T_DataAlt
sem_DataAlt ( DataAlt !name_ args_ ) = sem_DataAlt_DataAlt name_ ( sem_Types args_ )
sem_DataAlt ( Record !name_ args_ ) = sem_DataAlt_Record name_ ( sem_NamedTypes args_ )
-- semantic domain
newtype T_DataAlt = T_DataAlt {
attach_T_DataAlt :: Identity (T_DataAlt_s14 )
}
newtype T_DataAlt_s14 = C_DataAlt_s14 {
inv_DataAlt_s14 :: (T_DataAlt_v13 )
}
data T_DataAlt_s15 = C_DataAlt_s15
type T_DataAlt_v13 = (T_DataAlt_vIn13 ) -> (T_DataAlt_vOut13 )
data T_DataAlt_vIn13 = T_DataAlt_vIn13 (Bool) (PP_Doc)
data T_DataAlt_vOut13 = T_DataAlt_vOut13 (PP_Doc)
{-# NOINLINE sem_DataAlt_DataAlt #-}
sem_DataAlt_DataAlt :: (String) -> T_Types -> T_DataAlt
sem_DataAlt_DataAlt !arg_name_ arg_args_ = T_DataAlt (return st14) where
{-# NOINLINE st14 #-}
!st14 = let
v13 :: T_DataAlt_v13
v13 = \ !(T_DataAlt_vIn13 _lhsInested _lhsIstrictPre) -> ( let
_argsX53 = Control.Monad.Identity.runIdentity (attach_T_Types (arg_args_))
(T_Types_vOut52 _argsIpps) = inv_Types_s53 _argsX53 (T_Types_vIn52 _argsOnested)
_lhsOpp :: PP_Doc
_lhsOpp = rule83 _argsIpps _lhsIstrictPre arg_name_
_argsOnested = rule84 _lhsInested
!__result_ = T_DataAlt_vOut13 _lhsOpp
in __result_ )
in C_DataAlt_s14 v13
{-# INLINE rule83 #-}
{-# LINE 221 "src-ag/PrintCode.ag" #-}
rule83 = \ ((_argsIpps) :: PP_Docs) ((_lhsIstrictPre) :: PP_Doc) name_ ->
{-# LINE 221 "src-ag/PrintCode.ag" #-}
name_ >#< hv_sp (map ((_lhsIstrictPre >|<) . pp_parens) _argsIpps)
{-# LINE 795 "src-generated/PrintCode.hs" #-}
{-# INLINE rule84 #-}
rule84 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_DataAlt_Record #-}
sem_DataAlt_Record :: (String) -> T_NamedTypes -> T_DataAlt
sem_DataAlt_Record !arg_name_ arg_args_ = T_DataAlt (return st14) where
{-# NOINLINE st14 #-}
!st14 = let
v13 :: T_DataAlt_v13
v13 = \ !(T_DataAlt_vIn13 _lhsInested _lhsIstrictPre) -> ( let
_argsX38 = Control.Monad.Identity.runIdentity (attach_T_NamedTypes (arg_args_))
(T_NamedTypes_vOut37 _argsIpps) = inv_NamedTypes_s38 _argsX38 (T_NamedTypes_vIn37 _argsOnested)
_lhsOpp :: PP_Doc
_lhsOpp = rule85 _argsIpps arg_name_
_argsOnested = rule86 _lhsInested
!__result_ = T_DataAlt_vOut13 _lhsOpp
in __result_ )
in C_DataAlt_s14 v13
{-# INLINE rule85 #-}
{-# LINE 222 "src-ag/PrintCode.ag" #-}
rule85 = \ ((_argsIpps) :: PP_Docs) name_ ->
{-# LINE 222 "src-ag/PrintCode.ag" #-}
name_ >#< pp_block "{" "}" "," _argsIpps
{-# LINE 819 "src-generated/PrintCode.hs" #-}
{-# INLINE rule86 #-}
rule86 = \ ((_lhsInested) :: Bool) ->
_lhsInested
-- DataAlts ----------------------------------------------------
-- wrapper
data Inh_DataAlts = Inh_DataAlts { nested_Inh_DataAlts :: !(Bool), strictPre_Inh_DataAlts :: !(PP_Doc) }
data Syn_DataAlts = Syn_DataAlts { pps_Syn_DataAlts :: !(PP_Docs) }
{-# INLINABLE wrap_DataAlts #-}
wrap_DataAlts :: T_DataAlts -> Inh_DataAlts -> (Syn_DataAlts )
wrap_DataAlts !(T_DataAlts act) !(Inh_DataAlts _lhsInested _lhsIstrictPre) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg16 = T_DataAlts_vIn16 _lhsInested _lhsIstrictPre
!(T_DataAlts_vOut16 _lhsOpps) <- return (inv_DataAlts_s17 sem arg16)
return (Syn_DataAlts _lhsOpps)
)
-- cata
{-# NOINLINE sem_DataAlts #-}
sem_DataAlts :: DataAlts -> T_DataAlts
sem_DataAlts list = Prelude.foldr sem_DataAlts_Cons sem_DataAlts_Nil (Prelude.map sem_DataAlt list)
-- semantic domain
newtype T_DataAlts = T_DataAlts {
attach_T_DataAlts :: Identity (T_DataAlts_s17 )
}
newtype T_DataAlts_s17 = C_DataAlts_s17 {
inv_DataAlts_s17 :: (T_DataAlts_v16 )
}
data T_DataAlts_s18 = C_DataAlts_s18
type T_DataAlts_v16 = (T_DataAlts_vIn16 ) -> (T_DataAlts_vOut16 )
data T_DataAlts_vIn16 = T_DataAlts_vIn16 (Bool) (PP_Doc)
data T_DataAlts_vOut16 = T_DataAlts_vOut16 (PP_Docs)
{-# NOINLINE sem_DataAlts_Cons #-}
sem_DataAlts_Cons :: T_DataAlt -> T_DataAlts -> T_DataAlts
sem_DataAlts_Cons arg_hd_ arg_tl_ = T_DataAlts (return st17) where
{-# NOINLINE st17 #-}
!st17 = let
v16 :: T_DataAlts_v16
v16 = \ !(T_DataAlts_vIn16 _lhsInested _lhsIstrictPre) -> ( let
_hdX14 = Control.Monad.Identity.runIdentity (attach_T_DataAlt (arg_hd_))
_tlX17 = Control.Monad.Identity.runIdentity (attach_T_DataAlts (arg_tl_))
(T_DataAlt_vOut13 _hdIpp) = inv_DataAlt_s14 _hdX14 (T_DataAlt_vIn13 _hdOnested _hdOstrictPre)
(T_DataAlts_vOut16 _tlIpps) = inv_DataAlts_s17 _tlX17 (T_DataAlts_vIn16 _tlOnested _tlOstrictPre)
_lhsOpps :: PP_Docs
_lhsOpps = rule87 _hdIpp _tlIpps
_hdOnested = rule88 _lhsInested
_hdOstrictPre = rule89 _lhsIstrictPre
_tlOnested = rule90 _lhsInested
_tlOstrictPre = rule91 _lhsIstrictPre
!__result_ = T_DataAlts_vOut16 _lhsOpps
in __result_ )
in C_DataAlts_s17 v16
{-# INLINE rule87 #-}
{-# LINE 72 "src-ag/PrintCode.ag" #-}
rule87 = \ ((_hdIpp) :: PP_Doc) ((_tlIpps) :: PP_Docs) ->
{-# LINE 72 "src-ag/PrintCode.ag" #-}
_hdIpp : _tlIpps
{-# LINE 879 "src-generated/PrintCode.hs" #-}
{-# INLINE rule88 #-}
rule88 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule89 #-}
rule89 = \ ((_lhsIstrictPre) :: PP_Doc) ->
_lhsIstrictPre
{-# INLINE rule90 #-}
rule90 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule91 #-}
rule91 = \ ((_lhsIstrictPre) :: PP_Doc) ->
_lhsIstrictPre
{-# NOINLINE sem_DataAlts_Nil #-}
sem_DataAlts_Nil :: T_DataAlts
sem_DataAlts_Nil = T_DataAlts (return st17) where
{-# NOINLINE st17 #-}
!st17 = let
v16 :: T_DataAlts_v16
v16 = \ !(T_DataAlts_vIn16 _lhsInested _lhsIstrictPre) -> ( let
_lhsOpps :: PP_Docs
_lhsOpps = rule92 ()
!__result_ = T_DataAlts_vOut16 _lhsOpps
in __result_ )
in C_DataAlts_s17 v16
{-# INLINE rule92 #-}
{-# LINE 73 "src-ag/PrintCode.ag" #-}
rule92 = \ (_ :: ()) ->
{-# LINE 73 "src-ag/PrintCode.ag" #-}
[]
{-# LINE 909 "src-generated/PrintCode.hs" #-}
-- Decl --------------------------------------------------------
-- wrapper
data Inh_Decl = Inh_Decl { isDeclOfLet_Inh_Decl :: !(Bool), nested_Inh_Decl :: !(Bool), options_Inh_Decl :: !(Options), outputfile_Inh_Decl :: !(String) }
data Syn_Decl = Syn_Decl { pp_Syn_Decl :: !(PP_Doc) }
{-# INLINABLE wrap_Decl #-}
wrap_Decl :: T_Decl -> Inh_Decl -> (Syn_Decl )
wrap_Decl !(T_Decl act) !(Inh_Decl _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg19 = T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile
!(T_Decl_vOut19 _lhsOpp) <- return (inv_Decl_s20 sem arg19)
return (Syn_Decl _lhsOpp)
)
-- cata
{-# NOINLINE sem_Decl #-}
sem_Decl :: Decl -> T_Decl
sem_Decl ( Decl left_ rhs_ !binds_ !uses_ ) = sem_Decl_Decl ( sem_Lhs left_ ) ( sem_Expr rhs_ ) binds_ uses_
sem_Decl ( Bind left_ rhs_ ) = sem_Decl_Bind ( sem_Lhs left_ ) ( sem_Expr rhs_ )
sem_Decl ( BindLet left_ rhs_ ) = sem_Decl_BindLet ( sem_Lhs left_ ) ( sem_Expr rhs_ )
sem_Decl ( Data !name_ !params_ alts_ !strict_ !derivings_ ) = sem_Decl_Data name_ params_ ( sem_DataAlts alts_ ) strict_ derivings_
sem_Decl ( NewType !name_ !params_ !con_ tp_ ) = sem_Decl_NewType name_ params_ con_ ( sem_Type tp_ )
sem_Decl ( Type !name_ !params_ tp_ ) = sem_Decl_Type name_ params_ ( sem_Type tp_ )
sem_Decl ( TSig !name_ tp_ ) = sem_Decl_TSig name_ ( sem_Type tp_ )
sem_Decl ( Comment !txt_ ) = sem_Decl_Comment txt_
sem_Decl ( PragmaDecl !txt_ ) = sem_Decl_PragmaDecl txt_
sem_Decl ( Resume !monadic_ !nt_ left_ rhs_ ) = sem_Decl_Resume monadic_ nt_ ( sem_Lhs left_ ) ( sem_Expr rhs_ )
sem_Decl ( EvalDecl !nt_ left_ rhs_ ) = sem_Decl_EvalDecl nt_ ( sem_Lhs left_ ) ( sem_Expr rhs_ )
-- semantic domain
newtype T_Decl = T_Decl {
attach_T_Decl :: Identity (T_Decl_s20 )
}
newtype T_Decl_s20 = C_Decl_s20 {
inv_Decl_s20 :: (T_Decl_v19 )
}
data T_Decl_s21 = C_Decl_s21
type T_Decl_v19 = (T_Decl_vIn19 ) -> (T_Decl_vOut19 )
data T_Decl_vIn19 = T_Decl_vIn19 (Bool) (Bool) (Options) (String)
data T_Decl_vOut19 = T_Decl_vOut19 (PP_Doc)
{-# NOINLINE sem_Decl_Decl #-}
sem_Decl_Decl :: T_Lhs -> T_Expr -> (Set String) -> (Set String) -> T_Decl
sem_Decl_Decl arg_left_ arg_rhs_ _ _ = T_Decl (return st20) where
{-# NOINLINE st20 #-}
!st20 = let
v19 :: T_Decl_v19
v19 = \ !(T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_leftX32 = Control.Monad.Identity.runIdentity (attach_T_Lhs (arg_left_))
_rhsX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_rhs_))
(T_Lhs_vOut31 _leftIpp) = inv_Lhs_s32 _leftX32 (T_Lhs_vIn31 _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile)
(T_Expr_vOut25 _rhsIpp) = inv_Expr_s26 _rhsX26 (T_Expr_vIn25 _rhsOnested _rhsOoptions _rhsOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule93 _leftIpp _rhsIpp
_leftOisDeclOfLet = rule94 _lhsIisDeclOfLet
_leftOnested = rule95 _lhsInested
_leftOoptions = rule96 _lhsIoptions
_leftOoutputfile = rule97 _lhsIoutputfile
_rhsOnested = rule98 _lhsInested
_rhsOoptions = rule99 _lhsIoptions
_rhsOoutputfile = rule100 _lhsIoutputfile
!__result_ = T_Decl_vOut19 _lhsOpp
in __result_ )
in C_Decl_s20 v19
{-# INLINE rule93 #-}
{-# LINE 106 "src-ag/PrintCode.ag" #-}
rule93 = \ ((_leftIpp) :: PP_Doc) ((_rhsIpp) :: PP_Doc) ->
{-# LINE 106 "src-ag/PrintCode.ag" #-}
_leftIpp >#< "="
>-< indent 4 _rhsIpp
{-# LINE 980 "src-generated/PrintCode.hs" #-}
{-# INLINE rule94 #-}
rule94 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule95 #-}
rule95 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule96 #-}
rule96 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule97 #-}
rule97 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule98 #-}
rule98 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule99 #-}
rule99 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule100 #-}
rule100 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Decl_Bind #-}
sem_Decl_Bind :: T_Lhs -> T_Expr -> T_Decl
sem_Decl_Bind arg_left_ arg_rhs_ = T_Decl (return st20) where
{-# NOINLINE st20 #-}
!st20 = let
v19 :: T_Decl_v19
v19 = \ !(T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_leftX32 = Control.Monad.Identity.runIdentity (attach_T_Lhs (arg_left_))
_rhsX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_rhs_))
(T_Lhs_vOut31 _leftIpp) = inv_Lhs_s32 _leftX32 (T_Lhs_vIn31 _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile)
(T_Expr_vOut25 _rhsIpp) = inv_Expr_s26 _rhsX26 (T_Expr_vIn25 _rhsOnested _rhsOoptions _rhsOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule101 _leftIpp _rhsIpp
_leftOisDeclOfLet = rule102 _lhsIisDeclOfLet
_leftOnested = rule103 _lhsInested
_leftOoptions = rule104 _lhsIoptions
_leftOoutputfile = rule105 _lhsIoutputfile
_rhsOnested = rule106 _lhsInested
_rhsOoptions = rule107 _lhsIoptions
_rhsOoutputfile = rule108 _lhsIoutputfile
!__result_ = T_Decl_vOut19 _lhsOpp
in __result_ )
in C_Decl_s20 v19
{-# INLINE rule101 #-}
{-# LINE 108 "src-ag/PrintCode.ag" #-}
rule101 = \ ((_leftIpp) :: PP_Doc) ((_rhsIpp) :: PP_Doc) ->
{-# LINE 108 "src-ag/PrintCode.ag" #-}
_leftIpp >#< "<-" >#< _rhsIpp
{-# LINE 1030 "src-generated/PrintCode.hs" #-}
{-# INLINE rule102 #-}
rule102 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule103 #-}
rule103 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule104 #-}
rule104 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule105 #-}
rule105 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule106 #-}
rule106 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule107 #-}
rule107 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule108 #-}
rule108 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Decl_BindLet #-}
sem_Decl_BindLet :: T_Lhs -> T_Expr -> T_Decl
sem_Decl_BindLet arg_left_ arg_rhs_ = T_Decl (return st20) where
{-# NOINLINE st20 #-}
!st20 = let
v19 :: T_Decl_v19
v19 = \ !(T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_leftX32 = Control.Monad.Identity.runIdentity (attach_T_Lhs (arg_left_))
_rhsX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_rhs_))
(T_Lhs_vOut31 _leftIpp) = inv_Lhs_s32 _leftX32 (T_Lhs_vIn31 _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile)
(T_Expr_vOut25 _rhsIpp) = inv_Expr_s26 _rhsX26 (T_Expr_vIn25 _rhsOnested _rhsOoptions _rhsOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule109 _leftIpp _rhsIpp
_leftOisDeclOfLet = rule110 _lhsIisDeclOfLet
_leftOnested = rule111 _lhsInested
_leftOoptions = rule112 _lhsIoptions
_leftOoutputfile = rule113 _lhsIoutputfile
_rhsOnested = rule114 _lhsInested
_rhsOoptions = rule115 _lhsIoptions
_rhsOoutputfile = rule116 _lhsIoutputfile
!__result_ = T_Decl_vOut19 _lhsOpp
in __result_ )
in C_Decl_s20 v19
{-# INLINE rule109 #-}
{-# LINE 109 "src-ag/PrintCode.ag" #-}
rule109 = \ ((_leftIpp) :: PP_Doc) ((_rhsIpp) :: PP_Doc) ->
{-# LINE 109 "src-ag/PrintCode.ag" #-}
"let" >#< _leftIpp >#< "=" >#< _rhsIpp
{-# LINE 1080 "src-generated/PrintCode.hs" #-}
{-# INLINE rule110 #-}
rule110 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule111 #-}
rule111 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule112 #-}
rule112 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule113 #-}
rule113 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule114 #-}
rule114 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule115 #-}
rule115 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule116 #-}
rule116 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Decl_Data #-}
sem_Decl_Data :: (String) -> ([String]) -> T_DataAlts -> (Bool) -> ([String]) -> T_Decl
sem_Decl_Data !arg_name_ !arg_params_ arg_alts_ !arg_strict_ !arg_derivings_ = T_Decl (return st20) where
{-# NOINLINE st20 #-}
!st20 = let
v19 :: T_Decl_v19
v19 = \ !(T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_altsX17 = Control.Monad.Identity.runIdentity (attach_T_DataAlts (arg_alts_))
(T_DataAlts_vOut16 _altsIpps) = inv_DataAlts_s17 _altsX17 (T_DataAlts_vIn16 _altsOnested _altsOstrictPre)
_lhsOpp :: PP_Doc
_lhsOpp = rule117 _altsIpps arg_derivings_ arg_name_ arg_params_
_altsOstrictPre = rule118 arg_strict_
_altsOnested = rule119 _lhsInested
!__result_ = T_Decl_vOut19 _lhsOpp
in __result_ )
in C_Decl_s20 v19
{-# INLINE rule117 #-}
{-# LINE 110 "src-ag/PrintCode.ag" #-}
rule117 = \ ((_altsIpps) :: PP_Docs) derivings_ name_ params_ ->
{-# LINE 110 "src-ag/PrintCode.ag" #-}
"data" >#< hv_sp (name_ : params_)
>#< ( case _altsIpps of
[] -> empty
(x:xs) -> "=" >#< x
>-< vlist (map ("|" >#<) xs)
>-< if null derivings_
then empty
else "deriving" >#< ppTuple False (map text derivings_)
)
{-# LINE 1131 "src-generated/PrintCode.hs" #-}
{-# INLINE rule118 #-}
{-# LINE 325 "src-ag/PrintCode.ag" #-}
rule118 = \ strict_ ->
{-# LINE 325 "src-ag/PrintCode.ag" #-}
if strict_ then pp "!" else empty
{-# LINE 1137 "src-generated/PrintCode.hs" #-}
{-# INLINE rule119 #-}
rule119 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Decl_NewType #-}
sem_Decl_NewType :: (String) -> ([String]) -> (String) -> T_Type -> T_Decl
sem_Decl_NewType !arg_name_ !arg_params_ !arg_con_ arg_tp_ = T_Decl (return st20) where
{-# NOINLINE st20 #-}
!st20 = let
v19 :: T_Decl_v19
v19 = \ !(T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_tpX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_tp_))
(T_Type_vOut49 _tpIpp _tpIprec) = inv_Type_s50 _tpX50 (T_Type_vIn49 _tpOnested)
_lhsOpp :: PP_Doc
_lhsOpp = rule120 _tpIpp arg_con_ arg_name_ arg_params_
_tpOnested = rule121 _lhsInested
!__result_ = T_Decl_vOut19 _lhsOpp
in __result_ )
in C_Decl_s20 v19
{-# INLINE rule120 #-}
{-# LINE 119 "src-ag/PrintCode.ag" #-}
rule120 = \ ((_tpIpp) :: PP_Doc) con_ name_ params_ ->
{-# LINE 119 "src-ag/PrintCode.ag" #-}
"newtype" >#< hv_sp (name_ : params_) >#< "=" >#< con_ >#< pp_parens _tpIpp
{-# LINE 1161 "src-generated/PrintCode.hs" #-}
{-# INLINE rule121 #-}
rule121 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Decl_Type #-}
sem_Decl_Type :: (String) -> ([String]) -> T_Type -> T_Decl
sem_Decl_Type !arg_name_ !arg_params_ arg_tp_ = T_Decl (return st20) where
{-# NOINLINE st20 #-}
!st20 = let
v19 :: T_Decl_v19
v19 = \ !(T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_tpX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_tp_))
(T_Type_vOut49 _tpIpp _tpIprec) = inv_Type_s50 _tpX50 (T_Type_vIn49 _tpOnested)
_lhsOpp :: PP_Doc
_lhsOpp = rule122 _tpIpp arg_name_ arg_params_
_tpOnested = rule123 _lhsInested
!__result_ = T_Decl_vOut19 _lhsOpp
in __result_ )
in C_Decl_s20 v19
{-# INLINE rule122 #-}
{-# LINE 120 "src-ag/PrintCode.ag" #-}
rule122 = \ ((_tpIpp) :: PP_Doc) name_ params_ ->
{-# LINE 120 "src-ag/PrintCode.ag" #-}
"type" >#< hv_sp (name_ : params_) >#< "=" >#< _tpIpp
{-# LINE 1185 "src-generated/PrintCode.hs" #-}
{-# INLINE rule123 #-}
rule123 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Decl_TSig #-}
sem_Decl_TSig :: (String) -> T_Type -> T_Decl
sem_Decl_TSig !arg_name_ arg_tp_ = T_Decl (return st20) where
{-# NOINLINE st20 #-}
!st20 = let
v19 :: T_Decl_v19
v19 = \ !(T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_tpX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_tp_))
(T_Type_vOut49 _tpIpp _tpIprec) = inv_Type_s50 _tpX50 (T_Type_vIn49 _tpOnested)
_lhsOpp :: PP_Doc
_lhsOpp = rule124 _tpIpp arg_name_
_tpOnested = rule125 _lhsInested
!__result_ = T_Decl_vOut19 _lhsOpp
in __result_ )
in C_Decl_s20 v19
{-# INLINE rule124 #-}
{-# LINE 121 "src-ag/PrintCode.ag" #-}
rule124 = \ ((_tpIpp) :: PP_Doc) name_ ->
{-# LINE 121 "src-ag/PrintCode.ag" #-}
name_ >#< "::" >#< _tpIpp
{-# LINE 1209 "src-generated/PrintCode.hs" #-}
{-# INLINE rule125 #-}
rule125 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Decl_Comment #-}
sem_Decl_Comment :: (String) -> T_Decl
sem_Decl_Comment !arg_txt_ = T_Decl (return st20) where
{-# NOINLINE st20 #-}
!st20 = let
v19 :: T_Decl_v19
v19 = \ !(T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_lhsOpp :: PP_Doc
_lhsOpp = rule126 arg_txt_
!__result_ = T_Decl_vOut19 _lhsOpp
in __result_ )
in C_Decl_s20 v19
{-# INLINE rule126 #-}
{-# LINE 122 "src-ag/PrintCode.ag" #-}
rule126 = \ txt_ ->
{-# LINE 122 "src-ag/PrintCode.ag" #-}
if '\n' `elem` txt_
then "{-" >-< vlist (lines txt_) >-< "-}"
else "--" >#< txt_
{-# LINE 1232 "src-generated/PrintCode.hs" #-}
{-# NOINLINE sem_Decl_PragmaDecl #-}
sem_Decl_PragmaDecl :: (String) -> T_Decl
sem_Decl_PragmaDecl !arg_txt_ = T_Decl (return st20) where
{-# NOINLINE st20 #-}
!st20 = let
v19 :: T_Decl_v19
v19 = \ !(T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_lhsOpp :: PP_Doc
_lhsOpp = rule127 arg_txt_
!__result_ = T_Decl_vOut19 _lhsOpp
in __result_ )
in C_Decl_s20 v19
{-# INLINE rule127 #-}
{-# LINE 125 "src-ag/PrintCode.ag" #-}
rule127 = \ txt_ ->
{-# LINE 125 "src-ag/PrintCode.ag" #-}
"{-#" >#< text txt_ >#< "#-}"
{-# LINE 1250 "src-generated/PrintCode.hs" #-}
{-# NOINLINE sem_Decl_Resume #-}
sem_Decl_Resume :: (Bool) -> (String) -> T_Lhs -> T_Expr -> T_Decl
sem_Decl_Resume !arg_monadic_ _ arg_left_ arg_rhs_ = T_Decl (return st20) where
{-# NOINLINE st20 #-}
!st20 = let
v19 :: T_Decl_v19
v19 = \ !(T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_leftX32 = Control.Monad.Identity.runIdentity (attach_T_Lhs (arg_left_))
_rhsX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_rhs_))
(T_Lhs_vOut31 _leftIpp) = inv_Lhs_s32 _leftX32 (T_Lhs_vIn31 _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile)
(T_Expr_vOut25 _rhsIpp) = inv_Expr_s26 _rhsX26 (T_Expr_vIn25 _rhsOnested _rhsOoptions _rhsOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule128 _leftIpp _rhsIpp arg_monadic_
_leftOisDeclOfLet = rule129 _lhsIisDeclOfLet
_leftOnested = rule130 _lhsInested
_leftOoptions = rule131 _lhsIoptions
_leftOoutputfile = rule132 _lhsIoutputfile
_rhsOnested = rule133 _lhsInested
_rhsOoptions = rule134 _lhsIoptions
_rhsOoutputfile = rule135 _lhsIoutputfile
!__result_ = T_Decl_vOut19 _lhsOpp
in __result_ )
in C_Decl_s20 v19
{-# INLINE rule128 #-}
{-# LINE 126 "src-ag/PrintCode.ag" #-}
rule128 = \ ((_leftIpp) :: PP_Doc) ((_rhsIpp) :: PP_Doc) monadic_ ->
{-# LINE 126 "src-ag/PrintCode.ag" #-}
if monadic_
then _leftIpp >#< "<-" >#< _rhsIpp
else _leftIpp >#< "=" >-< indent 4 _rhsIpp
{-# LINE 1281 "src-generated/PrintCode.hs" #-}
{-# INLINE rule129 #-}
rule129 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule130 #-}
rule130 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule131 #-}
rule131 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule132 #-}
rule132 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule133 #-}
rule133 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule134 #-}
rule134 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule135 #-}
rule135 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Decl_EvalDecl #-}
sem_Decl_EvalDecl :: (String) -> T_Lhs -> T_Expr -> T_Decl
sem_Decl_EvalDecl !arg_nt_ arg_left_ arg_rhs_ = T_Decl (return st20) where
{-# NOINLINE st20 #-}
!st20 = let
v19 :: T_Decl_v19
v19 = \ !(T_Decl_vIn19 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_leftX32 = Control.Monad.Identity.runIdentity (attach_T_Lhs (arg_left_))
_rhsX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_rhs_))
(T_Lhs_vOut31 _leftIpp) = inv_Lhs_s32 _leftX32 (T_Lhs_vIn31 _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile)
(T_Expr_vOut25 _rhsIpp) = inv_Expr_s26 _rhsX26 (T_Expr_vIn25 _rhsOnested _rhsOoptions _rhsOoutputfile)
_strat = rule136 _lhsIoptions
_lhsOpp :: PP_Doc
_lhsOpp = rule137 _leftIpp _lhsIoptions _rhsIpp _strat arg_nt_
_leftOisDeclOfLet = rule138 _lhsIisDeclOfLet
_leftOnested = rule139 _lhsInested
_leftOoptions = rule140 _lhsIoptions
_leftOoutputfile = rule141 _lhsIoutputfile
_rhsOnested = rule142 _lhsInested
_rhsOoptions = rule143 _lhsIoptions
_rhsOoutputfile = rule144 _lhsIoutputfile
!__result_ = T_Decl_vOut19 _lhsOpp
in __result_ )
in C_Decl_s20 v19
{-# INLINE rule136 #-}
{-# LINE 129 "src-ag/PrintCode.ag" #-}
rule136 = \ ((_lhsIoptions) :: Options) ->
{-# LINE 129 "src-ag/PrintCode.ag" #-}
if breadthFirstStrict _lhsIoptions
then "stepwiseEval"
else "lazyEval"
{-# LINE 1334 "src-generated/PrintCode.hs" #-}
{-# INLINE rule137 #-}
{-# LINE 132 "src-ag/PrintCode.ag" #-}
rule137 = \ ((_leftIpp) :: PP_Doc) ((_lhsIoptions) :: Options) ((_rhsIpp) :: PP_Doc) _strat nt_ ->
{-# LINE 132 "src-ag/PrintCode.ag" #-}
if breadthFirst _lhsIoptions
then _leftIpp >#< "=" >#< "case" >#< _strat >#< pp_parens _rhsIpp >#< "of"
>-< indent 4 (
pp_parens (nt_ >|< "_Syn" >#< "_val") >#< "-> _val"
)
else _leftIpp >#< "=" >#< _rhsIpp
{-# LINE 1345 "src-generated/PrintCode.hs" #-}
{-# INLINE rule138 #-}
rule138 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule139 #-}
rule139 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule140 #-}
rule140 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule141 #-}
rule141 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule142 #-}
rule142 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule143 #-}
rule143 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule144 #-}
rule144 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
-- Decls -------------------------------------------------------
-- wrapper
data Inh_Decls = Inh_Decls { isDeclOfLet_Inh_Decls :: !(Bool), nested_Inh_Decls :: !(Bool), options_Inh_Decls :: !(Options), outputfile_Inh_Decls :: !(String) }
data Syn_Decls = Syn_Decls { pps_Syn_Decls :: !(PP_Docs) }
{-# INLINABLE wrap_Decls #-}
wrap_Decls :: T_Decls -> Inh_Decls -> (Syn_Decls )
wrap_Decls !(T_Decls act) !(Inh_Decls _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg22 = T_Decls_vIn22 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile
!(T_Decls_vOut22 _lhsOpps) <- return (inv_Decls_s23 sem arg22)
return (Syn_Decls _lhsOpps)
)
-- cata
{-# NOINLINE sem_Decls #-}
sem_Decls :: Decls -> T_Decls
sem_Decls list = Prelude.foldr sem_Decls_Cons sem_Decls_Nil (Prelude.map sem_Decl list)
-- semantic domain
newtype T_Decls = T_Decls {
attach_T_Decls :: Identity (T_Decls_s23 )
}
newtype T_Decls_s23 = C_Decls_s23 {
inv_Decls_s23 :: (T_Decls_v22 )
}
data T_Decls_s24 = C_Decls_s24
type T_Decls_v22 = (T_Decls_vIn22 ) -> (T_Decls_vOut22 )
data T_Decls_vIn22 = T_Decls_vIn22 (Bool) (Bool) (Options) (String)
data T_Decls_vOut22 = T_Decls_vOut22 (PP_Docs)
{-# NOINLINE sem_Decls_Cons #-}
sem_Decls_Cons :: T_Decl -> T_Decls -> T_Decls
sem_Decls_Cons arg_hd_ arg_tl_ = T_Decls (return st23) where
{-# NOINLINE st23 #-}
!st23 = let
v22 :: T_Decls_v22
v22 = \ !(T_Decls_vIn22 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_hdX20 = Control.Monad.Identity.runIdentity (attach_T_Decl (arg_hd_))
_tlX23 = Control.Monad.Identity.runIdentity (attach_T_Decls (arg_tl_))
(T_Decl_vOut19 _hdIpp) = inv_Decl_s20 _hdX20 (T_Decl_vIn19 _hdOisDeclOfLet _hdOnested _hdOoptions _hdOoutputfile)
(T_Decls_vOut22 _tlIpps) = inv_Decls_s23 _tlX23 (T_Decls_vIn22 _tlOisDeclOfLet _tlOnested _tlOoptions _tlOoutputfile)
_lhsOpps :: PP_Docs
_lhsOpps = rule145 _hdIpp _tlIpps
_hdOisDeclOfLet = rule146 _lhsIisDeclOfLet
_hdOnested = rule147 _lhsInested
_hdOoptions = rule148 _lhsIoptions
_hdOoutputfile = rule149 _lhsIoutputfile
_tlOisDeclOfLet = rule150 _lhsIisDeclOfLet
_tlOnested = rule151 _lhsInested
_tlOoptions = rule152 _lhsIoptions
_tlOoutputfile = rule153 _lhsIoutputfile
!__result_ = T_Decls_vOut22 _lhsOpps
in __result_ )
in C_Decls_s23 v22
{-# INLINE rule145 #-}
{-# LINE 84 "src-ag/PrintCode.ag" #-}
rule145 = \ ((_hdIpp) :: PP_Doc) ((_tlIpps) :: PP_Docs) ->
{-# LINE 84 "src-ag/PrintCode.ag" #-}
_hdIpp : _tlIpps
{-# LINE 1427 "src-generated/PrintCode.hs" #-}
{-# INLINE rule146 #-}
rule146 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule147 #-}
rule147 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule148 #-}
rule148 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule149 #-}
rule149 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule150 #-}
rule150 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule151 #-}
rule151 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule152 #-}
rule152 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule153 #-}
rule153 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Decls_Nil #-}
sem_Decls_Nil :: T_Decls
sem_Decls_Nil = T_Decls (return st23) where
{-# NOINLINE st23 #-}
!st23 = let
v22 :: T_Decls_v22
v22 = \ !(T_Decls_vIn22 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_lhsOpps :: PP_Docs
_lhsOpps = rule154 ()
!__result_ = T_Decls_vOut22 _lhsOpps
in __result_ )
in C_Decls_s23 v22
{-# INLINE rule154 #-}
{-# LINE 85 "src-ag/PrintCode.ag" #-}
rule154 = \ (_ :: ()) ->
{-# LINE 85 "src-ag/PrintCode.ag" #-}
[]
{-# LINE 1469 "src-generated/PrintCode.hs" #-}
-- Expr --------------------------------------------------------
-- wrapper
data Inh_Expr = Inh_Expr { nested_Inh_Expr :: !(Bool), options_Inh_Expr :: !(Options), outputfile_Inh_Expr :: !(String) }
data Syn_Expr = Syn_Expr { pp_Syn_Expr :: !(PP_Doc) }
{-# INLINABLE wrap_Expr #-}
wrap_Expr :: T_Expr -> Inh_Expr -> (Syn_Expr )
wrap_Expr !(T_Expr act) !(Inh_Expr _lhsInested _lhsIoptions _lhsIoutputfile) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg25 = T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile
!(T_Expr_vOut25 _lhsOpp) <- return (inv_Expr_s26 sem arg25)
return (Syn_Expr _lhsOpp)
)
-- cata
{-# NOINLINE sem_Expr #-}
sem_Expr :: Expr -> T_Expr
sem_Expr ( Let decls_ body_ ) = sem_Expr_Let ( sem_Decls decls_ ) ( sem_Expr body_ )
sem_Expr ( Case expr_ alts_ ) = sem_Expr_Case ( sem_Expr expr_ ) ( sem_CaseAlts alts_ )
sem_Expr ( Do stmts_ body_ ) = sem_Expr_Do ( sem_Decls stmts_ ) ( sem_Expr body_ )
sem_Expr ( Lambda args_ body_ ) = sem_Expr_Lambda ( sem_Exprs args_ ) ( sem_Expr body_ )
sem_Expr ( TupleExpr exprs_ ) = sem_Expr_TupleExpr ( sem_Exprs exprs_ )
sem_Expr ( UnboxedTupleExpr exprs_ ) = sem_Expr_UnboxedTupleExpr ( sem_Exprs exprs_ )
sem_Expr ( App !name_ args_ ) = sem_Expr_App name_ ( sem_Exprs args_ )
sem_Expr ( SimpleExpr !txt_ ) = sem_Expr_SimpleExpr txt_
sem_Expr ( TextExpr !lns_ ) = sem_Expr_TextExpr lns_
sem_Expr ( Trace !txt_ expr_ ) = sem_Expr_Trace txt_ ( sem_Expr expr_ )
sem_Expr ( PragmaExpr !onLeftSide_ !onNewLine_ !txt_ expr_ ) = sem_Expr_PragmaExpr onLeftSide_ onNewLine_ txt_ ( sem_Expr expr_ )
sem_Expr ( LineExpr expr_ ) = sem_Expr_LineExpr ( sem_Expr expr_ )
sem_Expr ( TypedExpr expr_ tp_ ) = sem_Expr_TypedExpr ( sem_Expr expr_ ) ( sem_Type tp_ )
sem_Expr ( ResultExpr !nt_ expr_ ) = sem_Expr_ResultExpr nt_ ( sem_Expr expr_ )
sem_Expr ( InvokeExpr !nt_ expr_ args_ ) = sem_Expr_InvokeExpr nt_ ( sem_Expr expr_ ) ( sem_Exprs args_ )
sem_Expr ( ResumeExpr !nt_ expr_ left_ rhs_ ) = sem_Expr_ResumeExpr nt_ ( sem_Expr expr_ ) ( sem_Lhs left_ ) ( sem_Expr rhs_ )
sem_Expr ( SemFun !nt_ args_ body_ ) = sem_Expr_SemFun nt_ ( sem_Exprs args_ ) ( sem_Expr body_ )
-- semantic domain
newtype T_Expr = T_Expr {
attach_T_Expr :: Identity (T_Expr_s26 )
}
newtype T_Expr_s26 = C_Expr_s26 {
inv_Expr_s26 :: (T_Expr_v25 )
}
data T_Expr_s27 = C_Expr_s27
type T_Expr_v25 = (T_Expr_vIn25 ) -> (T_Expr_vOut25 )
data T_Expr_vIn25 = T_Expr_vIn25 (Bool) (Options) (String)
data T_Expr_vOut25 = T_Expr_vOut25 (PP_Doc)
{-# NOINLINE sem_Expr_Let #-}
sem_Expr_Let :: T_Decls -> T_Expr -> T_Expr
sem_Expr_Let arg_decls_ arg_body_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_declsX23 = Control.Monad.Identity.runIdentity (attach_T_Decls (arg_decls_))
_bodyX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_body_))
(T_Decls_vOut22 _declsIpps) = inv_Decls_s23 _declsX23 (T_Decls_vIn22 _declsOisDeclOfLet _declsOnested _declsOoptions _declsOoutputfile)
(T_Expr_vOut25 _bodyIpp) = inv_Expr_s26 _bodyX26 (T_Expr_vIn25 _bodyOnested _bodyOoptions _bodyOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule155 _bodyIpp _declsIpps
_declsOisDeclOfLet = rule156 ()
_declsOnested = rule157 _lhsInested
_declsOoptions = rule158 _lhsIoptions
_declsOoutputfile = rule159 _lhsIoutputfile
_bodyOnested = rule160 _lhsInested
_bodyOoptions = rule161 _lhsIoptions
_bodyOoutputfile = rule162 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule155 #-}
{-# LINE 140 "src-ag/PrintCode.ag" #-}
rule155 = \ ((_bodyIpp) :: PP_Doc) ((_declsIpps) :: PP_Docs) ->
{-# LINE 140 "src-ag/PrintCode.ag" #-}
pp_parens ( "let" >#< (vlist _declsIpps)
>-< "in " >#< _bodyIpp
)
{-# LINE 1547 "src-generated/PrintCode.hs" #-}
{-# INLINE rule156 #-}
{-# LINE 420 "src-ag/PrintCode.ag" #-}
rule156 = \ (_ :: ()) ->
{-# LINE 420 "src-ag/PrintCode.ag" #-}
True
{-# LINE 1553 "src-generated/PrintCode.hs" #-}
{-# INLINE rule157 #-}
rule157 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule158 #-}
rule158 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule159 #-}
rule159 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule160 #-}
rule160 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule161 #-}
rule161 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule162 #-}
rule162 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_Case #-}
sem_Expr_Case :: T_Expr -> T_CaseAlts -> T_Expr
sem_Expr_Case arg_expr_ arg_alts_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_exprX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_expr_))
_altsX5 = Control.Monad.Identity.runIdentity (attach_T_CaseAlts (arg_alts_))
(T_Expr_vOut25 _exprIpp) = inv_Expr_s26 _exprX26 (T_Expr_vIn25 _exprOnested _exprOoptions _exprOoutputfile)
(T_CaseAlts_vOut4 _altsIpps) = inv_CaseAlts_s5 _altsX5 (T_CaseAlts_vIn4 _altsOnested _altsOoptions _altsOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule163 _altsIpps _exprIpp
_exprOnested = rule164 _lhsInested
_exprOoptions = rule165 _lhsIoptions
_exprOoutputfile = rule166 _lhsIoutputfile
_altsOnested = rule167 _lhsInested
_altsOoptions = rule168 _lhsIoptions
_altsOoutputfile = rule169 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule163 #-}
{-# LINE 143 "src-ag/PrintCode.ag" #-}
rule163 = \ ((_altsIpps) :: PP_Docs) ((_exprIpp) :: PP_Doc) ->
{-# LINE 143 "src-ag/PrintCode.ag" #-}
pp_parens ( "case" >#< pp_parens _exprIpp >#< "of"
>-< (vlist _altsIpps)
)
{-# LINE 1601 "src-generated/PrintCode.hs" #-}
{-# INLINE rule164 #-}
rule164 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule165 #-}
rule165 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule166 #-}
rule166 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule167 #-}
rule167 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule168 #-}
rule168 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule169 #-}
rule169 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_Do #-}
sem_Expr_Do :: T_Decls -> T_Expr -> T_Expr
sem_Expr_Do arg_stmts_ arg_body_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_stmtsX23 = Control.Monad.Identity.runIdentity (attach_T_Decls (arg_stmts_))
_bodyX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_body_))
(T_Decls_vOut22 _stmtsIpps) = inv_Decls_s23 _stmtsX23 (T_Decls_vIn22 _stmtsOisDeclOfLet _stmtsOnested _stmtsOoptions _stmtsOoutputfile)
(T_Expr_vOut25 _bodyIpp) = inv_Expr_s26 _bodyX26 (T_Expr_vIn25 _bodyOnested _bodyOoptions _bodyOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule170 _bodyIpp _stmtsIpps
_stmtsOisDeclOfLet = rule171 ()
_stmtsOnested = rule172 _lhsInested
_stmtsOoptions = rule173 _lhsIoptions
_stmtsOoutputfile = rule174 _lhsIoutputfile
_bodyOnested = rule175 _lhsInested
_bodyOoptions = rule176 _lhsIoptions
_bodyOoutputfile = rule177 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule170 #-}
{-# LINE 146 "src-ag/PrintCode.ag" #-}
rule170 = \ ((_bodyIpp) :: PP_Doc) ((_stmtsIpps) :: PP_Docs) ->
{-# LINE 146 "src-ag/PrintCode.ag" #-}
pp_parens ( "do" >#< ( vlist _stmtsIpps
>-< ("return" >#< _bodyIpp))
)
{-# LINE 1650 "src-generated/PrintCode.hs" #-}
{-# INLINE rule171 #-}
{-# LINE 422 "src-ag/PrintCode.ag" #-}
rule171 = \ (_ :: ()) ->
{-# LINE 422 "src-ag/PrintCode.ag" #-}
False
{-# LINE 1656 "src-generated/PrintCode.hs" #-}
{-# INLINE rule172 #-}
rule172 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule173 #-}
rule173 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule174 #-}
rule174 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule175 #-}
rule175 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule176 #-}
rule176 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule177 #-}
rule177 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_Lambda #-}
sem_Expr_Lambda :: T_Exprs -> T_Expr -> T_Expr
sem_Expr_Lambda arg_args_ arg_body_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_argsX29 = Control.Monad.Identity.runIdentity (attach_T_Exprs (arg_args_))
_bodyX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_body_))
(T_Exprs_vOut28 _argsIpps) = inv_Exprs_s29 _argsX29 (T_Exprs_vIn28 _argsOnested _argsOoptions _argsOoutputfile)
(T_Expr_vOut25 _bodyIpp) = inv_Expr_s26 _bodyX26 (T_Expr_vIn25 _bodyOnested _bodyOoptions _bodyOoutputfile)
_strictParams = rule178 _argsIpps _lhsIoptions
_addBang = rule179 _lhsIoptions
_lhsOpp :: PP_Doc
_lhsOpp = rule180 _addBang _argsIpps _bodyIpp _strictParams
_argsOnested = rule181 _lhsInested
_argsOoptions = rule182 _lhsIoptions
_argsOoutputfile = rule183 _lhsIoutputfile
_bodyOnested = rule184 _lhsInested
_bodyOoptions = rule185 _lhsIoptions
_bodyOoutputfile = rule186 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule178 #-}
{-# LINE 149 "src-ag/PrintCode.ag" #-}
rule178 = \ ((_argsIpps) :: PP_Docs) ((_lhsIoptions) :: Options) ->
{-# LINE 149 "src-ag/PrintCode.ag" #-}
if strictSems _lhsIoptions
then _argsIpps
else []
{-# LINE 1706 "src-generated/PrintCode.hs" #-}
{-# INLINE rule179 #-}
{-# LINE 152 "src-ag/PrintCode.ag" #-}
rule179 = \ ((_lhsIoptions) :: Options) ->
{-# LINE 152 "src-ag/PrintCode.ag" #-}
if bangpats _lhsIoptions
then \p -> pp_parens ("!" >|< p)
else id
{-# LINE 1714 "src-generated/PrintCode.hs" #-}
{-# INLINE rule180 #-}
{-# LINE 155 "src-ag/PrintCode.ag" #-}
rule180 = \ _addBang ((_argsIpps) :: PP_Docs) ((_bodyIpp) :: PP_Doc) _strictParams ->
{-# LINE 155 "src-ag/PrintCode.ag" #-}
pp_parens ( "\\" >#< (vlist (map _addBang _argsIpps)) >#< "->"
>-< indent 4 (_strictParams `ppMultiSeqV` _bodyIpp)
)
{-# LINE 1722 "src-generated/PrintCode.hs" #-}
{-# INLINE rule181 #-}
rule181 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule182 #-}
rule182 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule183 #-}
rule183 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule184 #-}
rule184 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule185 #-}
rule185 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule186 #-}
rule186 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_TupleExpr #-}
sem_Expr_TupleExpr :: T_Exprs -> T_Expr
sem_Expr_TupleExpr arg_exprs_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_exprsX29 = Control.Monad.Identity.runIdentity (attach_T_Exprs (arg_exprs_))
(T_Exprs_vOut28 _exprsIpps) = inv_Exprs_s29 _exprsX29 (T_Exprs_vIn28 _exprsOnested _exprsOoptions _exprsOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule187 _exprsIpps _lhsInested
_exprsOnested = rule188 _lhsInested
_exprsOoptions = rule189 _lhsIoptions
_exprsOoutputfile = rule190 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule187 #-}
{-# LINE 158 "src-ag/PrintCode.ag" #-}
rule187 = \ ((_exprsIpps) :: PP_Docs) ((_lhsInested) :: Bool) ->
{-# LINE 158 "src-ag/PrintCode.ag" #-}
ppTuple _lhsInested _exprsIpps
{-# LINE 1763 "src-generated/PrintCode.hs" #-}
{-# INLINE rule188 #-}
rule188 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule189 #-}
rule189 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule190 #-}
rule190 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_UnboxedTupleExpr #-}
sem_Expr_UnboxedTupleExpr :: T_Exprs -> T_Expr
sem_Expr_UnboxedTupleExpr arg_exprs_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_exprsX29 = Control.Monad.Identity.runIdentity (attach_T_Exprs (arg_exprs_))
(T_Exprs_vOut28 _exprsIpps) = inv_Exprs_s29 _exprsX29 (T_Exprs_vIn28 _exprsOnested _exprsOoptions _exprsOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule191 _exprsIpps _lhsInested
_exprsOnested = rule192 _lhsInested
_exprsOoptions = rule193 _lhsIoptions
_exprsOoutputfile = rule194 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule191 #-}
{-# LINE 159 "src-ag/PrintCode.ag" #-}
rule191 = \ ((_exprsIpps) :: PP_Docs) ((_lhsInested) :: Bool) ->
{-# LINE 159 "src-ag/PrintCode.ag" #-}
ppUnboxedTuple _lhsInested _exprsIpps
{-# LINE 1795 "src-generated/PrintCode.hs" #-}
{-# INLINE rule192 #-}
rule192 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule193 #-}
rule193 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule194 #-}
rule194 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_App #-}
sem_Expr_App :: (String) -> T_Exprs -> T_Expr
sem_Expr_App !arg_name_ arg_args_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_argsX29 = Control.Monad.Identity.runIdentity (attach_T_Exprs (arg_args_))
(T_Exprs_vOut28 _argsIpps) = inv_Exprs_s29 _argsX29 (T_Exprs_vIn28 _argsOnested _argsOoptions _argsOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule195 _argsIpps arg_name_
_argsOnested = rule196 _lhsInested
_argsOoptions = rule197 _lhsIoptions
_argsOoutputfile = rule198 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule195 #-}
{-# LINE 160 "src-ag/PrintCode.ag" #-}
rule195 = \ ((_argsIpps) :: PP_Docs) name_ ->
{-# LINE 160 "src-ag/PrintCode.ag" #-}
pp_parens $ name_ >#< hv_sp _argsIpps
{-# LINE 1827 "src-generated/PrintCode.hs" #-}
{-# INLINE rule196 #-}
rule196 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule197 #-}
rule197 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule198 #-}
rule198 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_SimpleExpr #-}
sem_Expr_SimpleExpr :: (String) -> T_Expr
sem_Expr_SimpleExpr !arg_txt_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_lhsOpp :: PP_Doc
_lhsOpp = rule199 arg_txt_
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule199 #-}
{-# LINE 161 "src-ag/PrintCode.ag" #-}
rule199 = \ txt_ ->
{-# LINE 161 "src-ag/PrintCode.ag" #-}
text txt_
{-# LINE 1854 "src-generated/PrintCode.hs" #-}
{-# NOINLINE sem_Expr_TextExpr #-}
sem_Expr_TextExpr :: ([String]) -> T_Expr
sem_Expr_TextExpr !arg_lns_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_lhsOpp :: PP_Doc
_lhsOpp = rule200 arg_lns_
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule200 #-}
{-# LINE 162 "src-ag/PrintCode.ag" #-}
rule200 = \ lns_ ->
{-# LINE 162 "src-ag/PrintCode.ag" #-}
vlist (map text lns_)
{-# LINE 1872 "src-generated/PrintCode.hs" #-}
{-# NOINLINE sem_Expr_Trace #-}
sem_Expr_Trace :: (String) -> T_Expr -> T_Expr
sem_Expr_Trace !arg_txt_ arg_expr_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_exprX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_expr_))
(T_Expr_vOut25 _exprIpp) = inv_Expr_s26 _exprX26 (T_Expr_vIn25 _exprOnested _exprOoptions _exprOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule201 _exprIpp arg_txt_
_exprOnested = rule202 _lhsInested
_exprOoptions = rule203 _lhsIoptions
_exprOoutputfile = rule204 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule201 #-}
{-# LINE 163 "src-ag/PrintCode.ag" #-}
rule201 = \ ((_exprIpp) :: PP_Doc) txt_ ->
{-# LINE 163 "src-ag/PrintCode.ag" #-}
"trace" >#< ( pp_parens ("\"" >|< text txt_ >|< "\"")
>-< pp_parens _exprIpp
)
{-# LINE 1897 "src-generated/PrintCode.hs" #-}
{-# INLINE rule202 #-}
rule202 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule203 #-}
rule203 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule204 #-}
rule204 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_PragmaExpr #-}
sem_Expr_PragmaExpr :: (Bool) -> (Bool) -> (String) -> T_Expr -> T_Expr
sem_Expr_PragmaExpr !arg_onLeftSide_ !arg_onNewLine_ !arg_txt_ arg_expr_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_exprX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_expr_))
(T_Expr_vOut25 _exprIpp) = inv_Expr_s26 _exprX26 (T_Expr_vIn25 _exprOnested _exprOoptions _exprOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule205 _exprIpp arg_onLeftSide_ arg_onNewLine_ arg_txt_
_exprOnested = rule206 _lhsInested
_exprOoptions = rule207 _lhsIoptions
_exprOoutputfile = rule208 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule205 #-}
{-# LINE 166 "src-ag/PrintCode.ag" #-}
rule205 = \ ((_exprIpp) :: PP_Doc) onLeftSide_ onNewLine_ txt_ ->
{-# LINE 166 "src-ag/PrintCode.ag" #-}
let pragmaDoc = "{-#" >#< txt_ >#< "#-}"
op = if onNewLine_
then (>-<)
else (>#<)
leftOp x y = if onLeftSide_
then x `op` y
else y
rightOp x y = if onLeftSide_
then x
else x `op` y
in pp_parens (pragmaDoc `leftOp` _exprIpp `rightOp` pragmaDoc)
{-# LINE 1939 "src-generated/PrintCode.hs" #-}
{-# INLINE rule206 #-}
rule206 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule207 #-}
rule207 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule208 #-}
rule208 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_LineExpr #-}
sem_Expr_LineExpr :: T_Expr -> T_Expr
sem_Expr_LineExpr arg_expr_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_exprX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_expr_))
(T_Expr_vOut25 _exprIpp) = inv_Expr_s26 _exprX26 (T_Expr_vIn25 _exprOnested _exprOoptions _exprOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule209 _exprIpp _lhsIoutputfile
_exprOnested = rule210 _lhsInested
_exprOoptions = rule211 _lhsIoptions
_exprOoutputfile = rule212 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule209 #-}
{-# LINE 177 "src-ag/PrintCode.ag" #-}
rule209 = \ ((_exprIpp) :: PP_Doc) ((_lhsIoutputfile) :: String) ->
{-# LINE 177 "src-ag/PrintCode.ag" #-}
_exprIpp >-< "{-# LINE" >#< ppWithLineNr (\n -> pp $ show $ n + 1) >#< show _lhsIoutputfile >#< "#-}"
>-< ""
{-# LINE 1972 "src-generated/PrintCode.hs" #-}
{-# INLINE rule210 #-}
rule210 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule211 #-}
rule211 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule212 #-}
rule212 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_TypedExpr #-}
sem_Expr_TypedExpr :: T_Expr -> T_Type -> T_Expr
sem_Expr_TypedExpr arg_expr_ arg_tp_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_exprX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_expr_))
_tpX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_tp_))
(T_Expr_vOut25 _exprIpp) = inv_Expr_s26 _exprX26 (T_Expr_vIn25 _exprOnested _exprOoptions _exprOoutputfile)
(T_Type_vOut49 _tpIpp _tpIprec) = inv_Type_s50 _tpX50 (T_Type_vIn49 _tpOnested)
_lhsOpp :: PP_Doc
_lhsOpp = rule213 _exprIpp _tpIpp
_exprOnested = rule214 _lhsInested
_exprOoptions = rule215 _lhsIoptions
_exprOoutputfile = rule216 _lhsIoutputfile
_tpOnested = rule217 _lhsInested
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule213 #-}
{-# LINE 179 "src-ag/PrintCode.ag" #-}
rule213 = \ ((_exprIpp) :: PP_Doc) ((_tpIpp) :: PP_Doc) ->
{-# LINE 179 "src-ag/PrintCode.ag" #-}
pp_parens (_exprIpp >#< "::" >#< _tpIpp)
{-# LINE 2007 "src-generated/PrintCode.hs" #-}
{-# INLINE rule214 #-}
rule214 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule215 #-}
rule215 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule216 #-}
rule216 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule217 #-}
rule217 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Expr_ResultExpr #-}
sem_Expr_ResultExpr :: (String) -> T_Expr -> T_Expr
sem_Expr_ResultExpr !arg_nt_ arg_expr_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_exprX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_expr_))
(T_Expr_vOut25 _exprIpp) = inv_Expr_s26 _exprX26 (T_Expr_vIn25 _exprOnested _exprOoptions _exprOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule218 _exprIpp _lhsIoptions arg_nt_
_exprOnested = rule219 _lhsInested
_exprOoptions = rule220 _lhsIoptions
_exprOoutputfile = rule221 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule218 #-}
{-# LINE 180 "src-ag/PrintCode.ag" #-}
rule218 = \ ((_exprIpp) :: PP_Doc) ((_lhsIoptions) :: Options) nt_ ->
{-# LINE 180 "src-ag/PrintCode.ag" #-}
if breadthFirst _lhsIoptions
then "final" >#<
pp_parens (nt_ >|< "_Syn" >#< pp_parens _exprIpp)
else _exprIpp
{-# LINE 2045 "src-generated/PrintCode.hs" #-}
{-# INLINE rule219 #-}
rule219 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule220 #-}
rule220 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule221 #-}
rule221 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_InvokeExpr #-}
sem_Expr_InvokeExpr :: (String) -> T_Expr -> T_Exprs -> T_Expr
sem_Expr_InvokeExpr !arg_nt_ arg_expr_ arg_args_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_exprX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_expr_))
_argsX29 = Control.Monad.Identity.runIdentity (attach_T_Exprs (arg_args_))
(T_Expr_vOut25 _exprIpp) = inv_Expr_s26 _exprX26 (T_Expr_vIn25 _exprOnested _exprOoptions _exprOoutputfile)
(T_Exprs_vOut28 _argsIpps) = inv_Exprs_s29 _argsX29 (T_Exprs_vIn28 _argsOnested _argsOoptions _argsOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule222 _argsIpps _exprIpp _lhsIoptions arg_nt_
_exprOnested = rule223 _lhsInested
_exprOoptions = rule224 _lhsIoptions
_exprOoutputfile = rule225 _lhsIoutputfile
_argsOnested = rule226 _lhsInested
_argsOoptions = rule227 _lhsIoptions
_argsOoutputfile = rule228 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule222 #-}
{-# LINE 184 "src-ag/PrintCode.ag" #-}
rule222 = \ ((_argsIpps) :: PP_Docs) ((_exprIpp) :: PP_Doc) ((_lhsIoptions) :: Options) nt_ ->
{-# LINE 184 "src-ag/PrintCode.ag" #-}
if breadthFirst _lhsIoptions
then "invoke" >#< pp_parens _exprIpp >#< pp_parens (
nt_ >|< "_Inh" >#< pp_parens (ppTuple False _argsIpps))
else _exprIpp >#< hv_sp _argsIpps
{-# LINE 2085 "src-generated/PrintCode.hs" #-}
{-# INLINE rule223 #-}
rule223 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule224 #-}
rule224 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule225 #-}
rule225 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule226 #-}
rule226 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule227 #-}
rule227 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule228 #-}
rule228 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_ResumeExpr #-}
sem_Expr_ResumeExpr :: (String) -> T_Expr -> T_Lhs -> T_Expr -> T_Expr
sem_Expr_ResumeExpr !arg_nt_ arg_expr_ arg_left_ arg_rhs_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_exprX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_expr_))
_leftX32 = Control.Monad.Identity.runIdentity (attach_T_Lhs (arg_left_))
_rhsX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_rhs_))
(T_Expr_vOut25 _exprIpp) = inv_Expr_s26 _exprX26 (T_Expr_vIn25 _exprOnested _exprOoptions _exprOoutputfile)
(T_Lhs_vOut31 _leftIpp) = inv_Lhs_s32 _leftX32 (T_Lhs_vIn31 _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile)
(T_Expr_vOut25 _rhsIpp) = inv_Expr_s26 _rhsX26 (T_Expr_vIn25 _rhsOnested _rhsOoptions _rhsOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule229 _exprIpp _leftIpp _lhsIoptions _rhsIpp arg_nt_
_leftOisDeclOfLet = rule230 ()
_exprOnested = rule231 _lhsInested
_exprOoptions = rule232 _lhsIoptions
_exprOoutputfile = rule233 _lhsIoutputfile
_leftOnested = rule234 _lhsInested
_leftOoptions = rule235 _lhsIoptions
_leftOoutputfile = rule236 _lhsIoutputfile
_rhsOnested = rule237 _lhsInested
_rhsOoptions = rule238 _lhsIoptions
_rhsOoutputfile = rule239 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule229 #-}
{-# LINE 188 "src-ag/PrintCode.ag" #-}
rule229 = \ ((_exprIpp) :: PP_Doc) ((_leftIpp) :: PP_Doc) ((_lhsIoptions) :: Options) ((_rhsIpp) :: PP_Doc) nt_ ->
{-# LINE 188 "src-ag/PrintCode.ag" #-}
if breadthFirst _lhsIoptions
then pp_parens ("resume" >#< pp_parens _exprIpp
>-< indent 2 (pp_parens ( "\\" >|<
pp_parens ("~" >|< pp_parens (nt_ >|< "_Syn" >#< "_inh_arg"))
>#< "->"
>-< indent 2 ( "let" >#< _leftIpp >#< "= _inh_arg"
>-< indent 2 ("in" >#< _rhsIpp)
))))
else pp_parens ( "case" >#< pp_parens _exprIpp >#< "of"
>-< ("{" >#< _leftIpp >#< "->")
>-< indent 4 (_rhsIpp >#< "}")
)
{-# LINE 2148 "src-generated/PrintCode.hs" #-}
{-# INLINE rule230 #-}
{-# LINE 424 "src-ag/PrintCode.ag" #-}
rule230 = \ (_ :: ()) ->
{-# LINE 424 "src-ag/PrintCode.ag" #-}
False
{-# LINE 2154 "src-generated/PrintCode.hs" #-}
{-# INLINE rule231 #-}
rule231 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule232 #-}
rule232 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule233 #-}
rule233 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule234 #-}
rule234 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule235 #-}
rule235 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule236 #-}
rule236 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule237 #-}
rule237 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule238 #-}
rule238 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule239 #-}
rule239 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Expr_SemFun #-}
sem_Expr_SemFun :: (String) -> T_Exprs -> T_Expr -> T_Expr
sem_Expr_SemFun !arg_nt_ arg_args_ arg_body_ = T_Expr (return st26) where
{-# NOINLINE st26 #-}
!st26 = let
v25 :: T_Expr_v25
v25 = \ !(T_Expr_vIn25 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_argsX29 = Control.Monad.Identity.runIdentity (attach_T_Exprs (arg_args_))
_bodyX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_body_))
(T_Exprs_vOut28 _argsIpps) = inv_Exprs_s29 _argsX29 (T_Exprs_vIn28 _argsOnested _argsOoptions _argsOoutputfile)
(T_Expr_vOut25 _bodyIpp) = inv_Expr_s26 _bodyX26 (T_Expr_vIn25 _bodyOnested _bodyOoptions _bodyOoutputfile)
_strictParams = rule240 _argsIpps _lhsIoptions
_addBang = rule241 _lhsIoptions
_lhsOpp :: PP_Doc
_lhsOpp = rule242 _addBang _argsIpps _bodyIpp _lhsIoptions _strictParams arg_nt_
_argsOnested = rule243 _lhsInested
_argsOoptions = rule244 _lhsIoptions
_argsOoutputfile = rule245 _lhsIoutputfile
_bodyOnested = rule246 _lhsInested
_bodyOoptions = rule247 _lhsIoptions
_bodyOoutputfile = rule248 _lhsIoutputfile
!__result_ = T_Expr_vOut25 _lhsOpp
in __result_ )
in C_Expr_s26 v25
{-# INLINE rule240 #-}
{-# LINE 200 "src-ag/PrintCode.ag" #-}
rule240 = \ ((_argsIpps) :: PP_Docs) ((_lhsIoptions) :: Options) ->
{-# LINE 200 "src-ag/PrintCode.ag" #-}
if strictSems _lhsIoptions
then _argsIpps
else []
{-# LINE 2213 "src-generated/PrintCode.hs" #-}
{-# INLINE rule241 #-}
{-# LINE 203 "src-ag/PrintCode.ag" #-}
rule241 = \ ((_lhsIoptions) :: Options) ->
{-# LINE 203 "src-ag/PrintCode.ag" #-}
if bangpats _lhsIoptions
then \p -> pp_parens ("!" >|< p)
else id
{-# LINE 2221 "src-generated/PrintCode.hs" #-}
{-# INLINE rule242 #-}
{-# LINE 206 "src-ag/PrintCode.ag" #-}
rule242 = \ _addBang ((_argsIpps) :: PP_Docs) ((_bodyIpp) :: PP_Doc) ((_lhsIoptions) :: Options) _strictParams nt_ ->
{-# LINE 206 "src-ag/PrintCode.ag" #-}
if breadthFirst _lhsIoptions
then "Child" >#< pp_parens ( "\\" >|<
pp_parens (nt_ >|< "_Inh" >#<
ppTuple False (map _addBang _argsIpps)) >#< "->"
>-< indent 2 (_strictParams `ppMultiSeqV` _bodyIpp))
else if null _argsIpps
then _bodyIpp
else pp_parens ( "\\" >#< (vlist (map _addBang _argsIpps)) >#< "->"
>-< indent 4 (_strictParams `ppMultiSeqV` _bodyIpp)
)
{-# LINE 2236 "src-generated/PrintCode.hs" #-}
{-# INLINE rule243 #-}
rule243 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule244 #-}
rule244 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule245 #-}
rule245 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule246 #-}
rule246 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule247 #-}
rule247 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule248 #-}
rule248 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
-- Exprs -------------------------------------------------------
-- wrapper
data Inh_Exprs = Inh_Exprs { nested_Inh_Exprs :: !(Bool), options_Inh_Exprs :: !(Options), outputfile_Inh_Exprs :: !(String) }
data Syn_Exprs = Syn_Exprs { pps_Syn_Exprs :: !(PP_Docs) }
{-# INLINABLE wrap_Exprs #-}
wrap_Exprs :: T_Exprs -> Inh_Exprs -> (Syn_Exprs )
wrap_Exprs !(T_Exprs act) !(Inh_Exprs _lhsInested _lhsIoptions _lhsIoutputfile) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg28 = T_Exprs_vIn28 _lhsInested _lhsIoptions _lhsIoutputfile
!(T_Exprs_vOut28 _lhsOpps) <- return (inv_Exprs_s29 sem arg28)
return (Syn_Exprs _lhsOpps)
)
-- cata
{-# NOINLINE sem_Exprs #-}
sem_Exprs :: Exprs -> T_Exprs
sem_Exprs list = Prelude.foldr sem_Exprs_Cons sem_Exprs_Nil (Prelude.map sem_Expr list)
-- semantic domain
newtype T_Exprs = T_Exprs {
attach_T_Exprs :: Identity (T_Exprs_s29 )
}
newtype T_Exprs_s29 = C_Exprs_s29 {
inv_Exprs_s29 :: (T_Exprs_v28 )
}
data T_Exprs_s30 = C_Exprs_s30
type T_Exprs_v28 = (T_Exprs_vIn28 ) -> (T_Exprs_vOut28 )
data T_Exprs_vIn28 = T_Exprs_vIn28 (Bool) (Options) (String)
data T_Exprs_vOut28 = T_Exprs_vOut28 (PP_Docs)
{-# NOINLINE sem_Exprs_Cons #-}
sem_Exprs_Cons :: T_Expr -> T_Exprs -> T_Exprs
sem_Exprs_Cons arg_hd_ arg_tl_ = T_Exprs (return st29) where
{-# NOINLINE st29 #-}
!st29 = let
v28 :: T_Exprs_v28
v28 = \ !(T_Exprs_vIn28 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_hdX26 = Control.Monad.Identity.runIdentity (attach_T_Expr (arg_hd_))
_tlX29 = Control.Monad.Identity.runIdentity (attach_T_Exprs (arg_tl_))
(T_Expr_vOut25 _hdIpp) = inv_Expr_s26 _hdX26 (T_Expr_vIn25 _hdOnested _hdOoptions _hdOoutputfile)
(T_Exprs_vOut28 _tlIpps) = inv_Exprs_s29 _tlX29 (T_Exprs_vIn28 _tlOnested _tlOoptions _tlOoutputfile)
_lhsOpps :: PP_Docs
_lhsOpps = rule249 _hdIpp _tlIpps
_hdOnested = rule250 _lhsInested
_hdOoptions = rule251 _lhsIoptions
_hdOoutputfile = rule252 _lhsIoutputfile
_tlOnested = rule253 _lhsInested
_tlOoptions = rule254 _lhsIoptions
_tlOoutputfile = rule255 _lhsIoutputfile
!__result_ = T_Exprs_vOut28 _lhsOpps
in __result_ )
in C_Exprs_s29 v28
{-# INLINE rule249 #-}
{-# LINE 64 "src-ag/PrintCode.ag" #-}
rule249 = \ ((_hdIpp) :: PP_Doc) ((_tlIpps) :: PP_Docs) ->
{-# LINE 64 "src-ag/PrintCode.ag" #-}
_hdIpp : _tlIpps
{-# LINE 2313 "src-generated/PrintCode.hs" #-}
{-# INLINE rule250 #-}
rule250 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule251 #-}
rule251 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule252 #-}
rule252 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# INLINE rule253 #-}
rule253 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule254 #-}
rule254 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule255 #-}
rule255 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Exprs_Nil #-}
sem_Exprs_Nil :: T_Exprs
sem_Exprs_Nil = T_Exprs (return st29) where
{-# NOINLINE st29 #-}
!st29 = let
v28 :: T_Exprs_v28
v28 = \ !(T_Exprs_vIn28 _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_lhsOpps :: PP_Docs
_lhsOpps = rule256 ()
!__result_ = T_Exprs_vOut28 _lhsOpps
in __result_ )
in C_Exprs_s29 v28
{-# INLINE rule256 #-}
{-# LINE 65 "src-ag/PrintCode.ag" #-}
rule256 = \ (_ :: ()) ->
{-# LINE 65 "src-ag/PrintCode.ag" #-}
[]
{-# LINE 2349 "src-generated/PrintCode.hs" #-}
-- Lhs ---------------------------------------------------------
-- wrapper
data Inh_Lhs = Inh_Lhs { isDeclOfLet_Inh_Lhs :: !(Bool), nested_Inh_Lhs :: !(Bool), options_Inh_Lhs :: !(Options), outputfile_Inh_Lhs :: !(String) }
data Syn_Lhs = Syn_Lhs { pp_Syn_Lhs :: !(PP_Doc) }
{-# INLINABLE wrap_Lhs #-}
wrap_Lhs :: T_Lhs -> Inh_Lhs -> (Syn_Lhs )
wrap_Lhs !(T_Lhs act) !(Inh_Lhs _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg31 = T_Lhs_vIn31 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile
!(T_Lhs_vOut31 _lhsOpp) <- return (inv_Lhs_s32 sem arg31)
return (Syn_Lhs _lhsOpp)
)
-- cata
{-# NOINLINE sem_Lhs #-}
sem_Lhs :: Lhs -> T_Lhs
sem_Lhs ( Pattern3 pat3_ ) = sem_Lhs_Pattern3 ( sem_Pattern pat3_ )
sem_Lhs ( Pattern3SM pat3_ ) = sem_Lhs_Pattern3SM ( sem_Pattern pat3_ )
sem_Lhs ( TupleLhs !comps_ ) = sem_Lhs_TupleLhs comps_
sem_Lhs ( UnboxedTupleLhs !comps_ ) = sem_Lhs_UnboxedTupleLhs comps_
sem_Lhs ( Fun !name_ args_ ) = sem_Lhs_Fun name_ ( sem_Exprs args_ )
sem_Lhs ( Unwrap !name_ sub_ ) = sem_Lhs_Unwrap name_ ( sem_Lhs sub_ )
-- semantic domain
newtype T_Lhs = T_Lhs {
attach_T_Lhs :: Identity (T_Lhs_s32 )
}
newtype T_Lhs_s32 = C_Lhs_s32 {
inv_Lhs_s32 :: (T_Lhs_v31 )
}
data T_Lhs_s33 = C_Lhs_s33
type T_Lhs_v31 = (T_Lhs_vIn31 ) -> (T_Lhs_vOut31 )
data T_Lhs_vIn31 = T_Lhs_vIn31 (Bool) (Bool) (Options) (String)
data T_Lhs_vOut31 = T_Lhs_vOut31 (PP_Doc)
{-# NOINLINE sem_Lhs_Pattern3 #-}
sem_Lhs_Pattern3 :: T_Pattern -> T_Lhs
sem_Lhs_Pattern3 arg_pat3_ = T_Lhs (return st32) where
{-# NOINLINE st32 #-}
!st32 = let
v31 :: T_Lhs_v31
v31 = \ !(T_Lhs_vIn31 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_pat3X41 = Control.Monad.Identity.runIdentity (attach_T_Pattern (arg_pat3_))
(T_Pattern_vOut40 _pat3Icopy _pat3IisUnderscore _pat3Ipp _pat3Ipp' _pat3IstrictVars) = inv_Pattern_s41 _pat3X41 (T_Pattern_vIn40 _pat3ObelowIrrefutable _pat3OisDeclOfLet _pat3Ooptions)
_addStrictGuard = rule257 _hasStrictVars _lhsIoptions _strictGuard
_strictGuard = rule258 _pat3IstrictVars
_hasStrictVars = rule259 _pat3IstrictVars
_lhsOpp :: PP_Doc
_lhsOpp = rule260 _addStrictGuard _pat3Ipp
_pat3ObelowIrrefutable = rule261 ()
_pat3OisDeclOfLet = rule262 _lhsIisDeclOfLet
_pat3Ooptions = rule263 _lhsIoptions
!__result_ = T_Lhs_vOut31 _lhsOpp
in __result_ )
in C_Lhs_s32 v31
{-# INLINE rule257 #-}
{-# LINE 231 "src-ag/PrintCode.ag" #-}
rule257 = \ _hasStrictVars ((_lhsIoptions) :: Options) _strictGuard ->
{-# LINE 231 "src-ag/PrintCode.ag" #-}
if strictCases _lhsIoptions && _hasStrictVars then \v -> v >#< "|" >#< _strictGuard else id
{-# LINE 2411 "src-generated/PrintCode.hs" #-}
{-# INLINE rule258 #-}
{-# LINE 233 "src-ag/PrintCode.ag" #-}
rule258 = \ ((_pat3IstrictVars) :: [PP_Doc]) ->
{-# LINE 233 "src-ag/PrintCode.ag" #-}
_pat3IstrictVars `ppMultiSeqH` (pp "True")
{-# LINE 2417 "src-generated/PrintCode.hs" #-}
{-# INLINE rule259 #-}
{-# LINE 234 "src-ag/PrintCode.ag" #-}
rule259 = \ ((_pat3IstrictVars) :: [PP_Doc]) ->
{-# LINE 234 "src-ag/PrintCode.ag" #-}
not (null _pat3IstrictVars)
{-# LINE 2423 "src-generated/PrintCode.hs" #-}
{-# INLINE rule260 #-}
{-# LINE 251 "src-ag/PrintCode.ag" #-}
rule260 = \ _addStrictGuard ((_pat3Ipp) :: PP_Doc) ->
{-# LINE 251 "src-ag/PrintCode.ag" #-}
_addStrictGuard _pat3Ipp
{-# LINE 2429 "src-generated/PrintCode.hs" #-}
{-# INLINE rule261 #-}
{-# LINE 385 "src-ag/PrintCode.ag" #-}
rule261 = \ (_ :: ()) ->
{-# LINE 385 "src-ag/PrintCode.ag" #-}
False
{-# LINE 2435 "src-generated/PrintCode.hs" #-}
{-# INLINE rule262 #-}
rule262 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule263 #-}
rule263 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# NOINLINE sem_Lhs_Pattern3SM #-}
sem_Lhs_Pattern3SM :: T_Pattern -> T_Lhs
sem_Lhs_Pattern3SM arg_pat3_ = T_Lhs (return st32) where
{-# NOINLINE st32 #-}
!st32 = let
v31 :: T_Lhs_v31
v31 = \ !(T_Lhs_vIn31 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_pat3X41 = Control.Monad.Identity.runIdentity (attach_T_Pattern (arg_pat3_))
(T_Pattern_vOut40 _pat3Icopy _pat3IisUnderscore _pat3Ipp _pat3Ipp' _pat3IstrictVars) = inv_Pattern_s41 _pat3X41 (T_Pattern_vIn40 _pat3ObelowIrrefutable _pat3OisDeclOfLet _pat3Ooptions)
_lhsOpp :: PP_Doc
_lhsOpp = rule264 _pat3Ipp'
_pat3ObelowIrrefutable = rule265 ()
_pat3OisDeclOfLet = rule266 _lhsIisDeclOfLet
_pat3Ooptions = rule267 _lhsIoptions
!__result_ = T_Lhs_vOut31 _lhsOpp
in __result_ )
in C_Lhs_s32 v31
{-# INLINE rule264 #-}
{-# LINE 252 "src-ag/PrintCode.ag" #-}
rule264 = \ ((_pat3Ipp') :: PP_Doc) ->
{-# LINE 252 "src-ag/PrintCode.ag" #-}
_pat3Ipp'
{-# LINE 2464 "src-generated/PrintCode.hs" #-}
{-# INLINE rule265 #-}
{-# LINE 385 "src-ag/PrintCode.ag" #-}
rule265 = \ (_ :: ()) ->
{-# LINE 385 "src-ag/PrintCode.ag" #-}
False
{-# LINE 2470 "src-generated/PrintCode.hs" #-}
{-# INLINE rule266 #-}
rule266 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule267 #-}
rule267 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# NOINLINE sem_Lhs_TupleLhs #-}
sem_Lhs_TupleLhs :: ([String]) -> T_Lhs
sem_Lhs_TupleLhs !arg_comps_ = T_Lhs (return st32) where
{-# NOINLINE st32 #-}
!st32 = let
v31 :: T_Lhs_v31
v31 = \ !(T_Lhs_vIn31 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_addStrictGuard = rule268 _hasStrictVars _lhsIoptions _strictGuard
_strictGuard = rule269 _lhsIisDeclOfLet _lhsIoptions arg_comps_
_hasStrictVars = rule270 arg_comps_
_addBang = rule271 _lhsIoptions
_lhsOpp :: PP_Doc
_lhsOpp = rule272 _addBang _addStrictGuard _lhsInested arg_comps_
!__result_ = T_Lhs_vOut31 _lhsOpp
in __result_ )
in C_Lhs_s32 v31
{-# INLINE rule268 #-}
{-# LINE 231 "src-ag/PrintCode.ag" #-}
rule268 = \ _hasStrictVars ((_lhsIoptions) :: Options) _strictGuard ->
{-# LINE 231 "src-ag/PrintCode.ag" #-}
if strictCases _lhsIoptions && _hasStrictVars then \v -> v >#< "|" >#< _strictGuard else id
{-# LINE 2498 "src-generated/PrintCode.hs" #-}
{-# INLINE rule269 #-}
{-# LINE 236 "src-ag/PrintCode.ag" #-}
rule269 = \ ((_lhsIisDeclOfLet) :: Bool) ((_lhsIoptions) :: Options) comps_ ->
{-# LINE 236 "src-ag/PrintCode.ag" #-}
if stricterCases _lhsIoptions && not _lhsIisDeclOfLet
then map text comps_ `ppMultiSeqH` (pp "True")
else pp "True"
{-# LINE 2506 "src-generated/PrintCode.hs" #-}
{-# INLINE rule270 #-}
{-# LINE 239 "src-ag/PrintCode.ag" #-}
rule270 = \ comps_ ->
{-# LINE 239 "src-ag/PrintCode.ag" #-}
not (null comps_)
{-# LINE 2512 "src-generated/PrintCode.hs" #-}
{-# INLINE rule271 #-}
{-# LINE 247 "src-ag/PrintCode.ag" #-}
rule271 = \ ((_lhsIoptions) :: Options) ->
{-# LINE 247 "src-ag/PrintCode.ag" #-}
if bangpats _lhsIoptions
then \p -> "!" >|< p
else id
{-# LINE 2520 "src-generated/PrintCode.hs" #-}
{-# INLINE rule272 #-}
{-# LINE 253 "src-ag/PrintCode.ag" #-}
rule272 = \ _addBang _addStrictGuard ((_lhsInested) :: Bool) comps_ ->
{-# LINE 253 "src-ag/PrintCode.ag" #-}
_addStrictGuard $ ppTuple _lhsInested (map (_addBang . text) comps_)
{-# LINE 2526 "src-generated/PrintCode.hs" #-}
{-# NOINLINE sem_Lhs_UnboxedTupleLhs #-}
sem_Lhs_UnboxedTupleLhs :: ([String]) -> T_Lhs
sem_Lhs_UnboxedTupleLhs !arg_comps_ = T_Lhs (return st32) where
{-# NOINLINE st32 #-}
!st32 = let
v31 :: T_Lhs_v31
v31 = \ !(T_Lhs_vIn31 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_addStrictGuard = rule273 _hasStrictVars _lhsIoptions _strictGuard
_strictGuard = rule274 _lhsIisDeclOfLet _lhsIoptions arg_comps_
_hasStrictVars = rule275 arg_comps_
_addBang = rule276 _lhsIoptions
_lhsOpp :: PP_Doc
_lhsOpp = rule277 _addBang _addStrictGuard _lhsInested arg_comps_
!__result_ = T_Lhs_vOut31 _lhsOpp
in __result_ )
in C_Lhs_s32 v31
{-# INLINE rule273 #-}
{-# LINE 231 "src-ag/PrintCode.ag" #-}
rule273 = \ _hasStrictVars ((_lhsIoptions) :: Options) _strictGuard ->
{-# LINE 231 "src-ag/PrintCode.ag" #-}
if strictCases _lhsIoptions && _hasStrictVars then \v -> v >#< "|" >#< _strictGuard else id
{-# LINE 2548 "src-generated/PrintCode.hs" #-}
{-# INLINE rule274 #-}
{-# LINE 236 "src-ag/PrintCode.ag" #-}
rule274 = \ ((_lhsIisDeclOfLet) :: Bool) ((_lhsIoptions) :: Options) comps_ ->
{-# LINE 236 "src-ag/PrintCode.ag" #-}
if stricterCases _lhsIoptions && not _lhsIisDeclOfLet
then map text comps_ `ppMultiSeqH` (pp "True")
else pp "True"
{-# LINE 2556 "src-generated/PrintCode.hs" #-}
{-# INLINE rule275 #-}
{-# LINE 239 "src-ag/PrintCode.ag" #-}
rule275 = \ comps_ ->
{-# LINE 239 "src-ag/PrintCode.ag" #-}
not (null comps_)
{-# LINE 2562 "src-generated/PrintCode.hs" #-}
{-# INLINE rule276 #-}
{-# LINE 247 "src-ag/PrintCode.ag" #-}
rule276 = \ ((_lhsIoptions) :: Options) ->
{-# LINE 247 "src-ag/PrintCode.ag" #-}
if bangpats _lhsIoptions
then \p -> "!" >|< p
else id
{-# LINE 2570 "src-generated/PrintCode.hs" #-}
{-# INLINE rule277 #-}
{-# LINE 254 "src-ag/PrintCode.ag" #-}
rule277 = \ _addBang _addStrictGuard ((_lhsInested) :: Bool) comps_ ->
{-# LINE 254 "src-ag/PrintCode.ag" #-}
_addStrictGuard $ ppUnboxedTuple _lhsInested (map (_addBang . text) comps_)
{-# LINE 2576 "src-generated/PrintCode.hs" #-}
{-# NOINLINE sem_Lhs_Fun #-}
sem_Lhs_Fun :: (String) -> T_Exprs -> T_Lhs
sem_Lhs_Fun !arg_name_ arg_args_ = T_Lhs (return st32) where
{-# NOINLINE st32 #-}
!st32 = let
v31 :: T_Lhs_v31
v31 = \ !(T_Lhs_vIn31 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_argsX29 = Control.Monad.Identity.runIdentity (attach_T_Exprs (arg_args_))
(T_Exprs_vOut28 _argsIpps) = inv_Exprs_s29 _argsX29 (T_Exprs_vIn28 _argsOnested _argsOoptions _argsOoutputfile)
_addStrictGuard = rule278 _hasStrictVars _lhsIoptions _strictGuard
_hasStrictVars = rule279 _argsIpps
_strictGuard = rule280 _argsIpps
_addBang = rule281 _lhsIoptions
_lhsOpp :: PP_Doc
_lhsOpp = rule282 _addBang _addStrictGuard _argsIpps arg_name_
_argsOnested = rule283 _lhsInested
_argsOoptions = rule284 _lhsIoptions
_argsOoutputfile = rule285 _lhsIoutputfile
!__result_ = T_Lhs_vOut31 _lhsOpp
in __result_ )
in C_Lhs_s32 v31
{-# INLINE rule278 #-}
{-# LINE 242 "src-ag/PrintCode.ag" #-}
rule278 = \ _hasStrictVars ((_lhsIoptions) :: Options) _strictGuard ->
{-# LINE 242 "src-ag/PrintCode.ag" #-}
if strictSems _lhsIoptions && _hasStrictVars then \v -> v >#< "|" >#< _strictGuard else id
{-# LINE 2603 "src-generated/PrintCode.hs" #-}
{-# INLINE rule279 #-}
{-# LINE 243 "src-ag/PrintCode.ag" #-}
rule279 = \ ((_argsIpps) :: PP_Docs) ->
{-# LINE 243 "src-ag/PrintCode.ag" #-}
not (null _argsIpps)
{-# LINE 2609 "src-generated/PrintCode.hs" #-}
{-# INLINE rule280 #-}
{-# LINE 244 "src-ag/PrintCode.ag" #-}
rule280 = \ ((_argsIpps) :: PP_Docs) ->
{-# LINE 244 "src-ag/PrintCode.ag" #-}
_argsIpps `ppMultiSeqH` (pp "True")
{-# LINE 2615 "src-generated/PrintCode.hs" #-}
{-# INLINE rule281 #-}
{-# LINE 247 "src-ag/PrintCode.ag" #-}
rule281 = \ ((_lhsIoptions) :: Options) ->
{-# LINE 247 "src-ag/PrintCode.ag" #-}
if bangpats _lhsIoptions
then \p -> "!" >|< p
else id
{-# LINE 2623 "src-generated/PrintCode.hs" #-}
{-# INLINE rule282 #-}
{-# LINE 255 "src-ag/PrintCode.ag" #-}
rule282 = \ _addBang _addStrictGuard ((_argsIpps) :: PP_Docs) name_ ->
{-# LINE 255 "src-ag/PrintCode.ag" #-}
_addStrictGuard (name_ >#< hv_sp (map _addBang _argsIpps))
{-# LINE 2629 "src-generated/PrintCode.hs" #-}
{-# INLINE rule283 #-}
rule283 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule284 #-}
rule284 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule285 #-}
rule285 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
{-# NOINLINE sem_Lhs_Unwrap #-}
sem_Lhs_Unwrap :: (String) -> T_Lhs -> T_Lhs
sem_Lhs_Unwrap !arg_name_ arg_sub_ = T_Lhs (return st32) where
{-# NOINLINE st32 #-}
!st32 = let
v31 :: T_Lhs_v31
v31 = \ !(T_Lhs_vIn31 _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile) -> ( let
_subX32 = Control.Monad.Identity.runIdentity (attach_T_Lhs (arg_sub_))
(T_Lhs_vOut31 _subIpp) = inv_Lhs_s32 _subX32 (T_Lhs_vIn31 _subOisDeclOfLet _subOnested _subOoptions _subOoutputfile)
_lhsOpp :: PP_Doc
_lhsOpp = rule286 _subIpp arg_name_
_subOisDeclOfLet = rule287 _lhsIisDeclOfLet
_subOnested = rule288 _lhsInested
_subOoptions = rule289 _lhsIoptions
_subOoutputfile = rule290 _lhsIoutputfile
!__result_ = T_Lhs_vOut31 _lhsOpp
in __result_ )
in C_Lhs_s32 v31
{-# INLINE rule286 #-}
{-# LINE 256 "src-ag/PrintCode.ag" #-}
rule286 = \ ((_subIpp) :: PP_Doc) name_ ->
{-# LINE 256 "src-ag/PrintCode.ag" #-}
pp_parens (name_ >#< _subIpp)
{-# LINE 2662 "src-generated/PrintCode.hs" #-}
{-# INLINE rule287 #-}
rule287 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule288 #-}
rule288 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule289 #-}
rule289 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule290 #-}
rule290 = \ ((_lhsIoutputfile) :: String) ->
_lhsIoutputfile
-- NamedType ---------------------------------------------------
-- wrapper
data Inh_NamedType = Inh_NamedType { nested_Inh_NamedType :: !(Bool) }
data Syn_NamedType = Syn_NamedType { pp_Syn_NamedType :: !(PP_Doc) }
{-# INLINABLE wrap_NamedType #-}
wrap_NamedType :: T_NamedType -> Inh_NamedType -> (Syn_NamedType )
wrap_NamedType !(T_NamedType act) !(Inh_NamedType _lhsInested) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg34 = T_NamedType_vIn34 _lhsInested
!(T_NamedType_vOut34 _lhsOpp) <- return (inv_NamedType_s35 sem arg34)
return (Syn_NamedType _lhsOpp)
)
-- cata
{-# INLINE sem_NamedType #-}
sem_NamedType :: NamedType -> T_NamedType
sem_NamedType ( Named !strict_ !name_ tp_ ) = sem_NamedType_Named strict_ name_ ( sem_Type tp_ )
-- semantic domain
newtype T_NamedType = T_NamedType {
attach_T_NamedType :: Identity (T_NamedType_s35 )
}
newtype T_NamedType_s35 = C_NamedType_s35 {
inv_NamedType_s35 :: (T_NamedType_v34 )
}
data T_NamedType_s36 = C_NamedType_s36
type T_NamedType_v34 = (T_NamedType_vIn34 ) -> (T_NamedType_vOut34 )
data T_NamedType_vIn34 = T_NamedType_vIn34 (Bool)
data T_NamedType_vOut34 = T_NamedType_vOut34 (PP_Doc)
{-# NOINLINE sem_NamedType_Named #-}
sem_NamedType_Named :: (Bool) -> (String) -> T_Type -> T_NamedType
sem_NamedType_Named !arg_strict_ !arg_name_ arg_tp_ = T_NamedType (return st35) where
{-# NOINLINE st35 #-}
!st35 = let
v34 :: T_NamedType_v34
v34 = \ !(T_NamedType_vIn34 _lhsInested) -> ( let
_tpX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_tp_))
(T_Type_vOut49 _tpIpp _tpIprec) = inv_Type_s50 _tpX50 (T_Type_vIn49 _tpOnested)
_lhsOpp :: PP_Doc
_lhsOpp = rule291 _tpIpp arg_name_ arg_strict_
_tpOnested = rule292 _lhsInested
!__result_ = T_NamedType_vOut34 _lhsOpp
in __result_ )
in C_NamedType_s35 v34
{-# INLINE rule291 #-}
{-# LINE 225 "src-ag/PrintCode.ag" #-}
rule291 = \ ((_tpIpp) :: PP_Doc) name_ strict_ ->
{-# LINE 225 "src-ag/PrintCode.ag" #-}
if strict_
then name_ >#< "::" >#< "!" >|< pp_parens _tpIpp
else name_ >#< "::" >#< _tpIpp
{-# LINE 2728 "src-generated/PrintCode.hs" #-}
{-# INLINE rule292 #-}
rule292 = \ ((_lhsInested) :: Bool) ->
_lhsInested
-- NamedTypes --------------------------------------------------
-- wrapper
data Inh_NamedTypes = Inh_NamedTypes { nested_Inh_NamedTypes :: !(Bool) }
data Syn_NamedTypes = Syn_NamedTypes { pps_Syn_NamedTypes :: !(PP_Docs) }
{-# INLINABLE wrap_NamedTypes #-}
wrap_NamedTypes :: T_NamedTypes -> Inh_NamedTypes -> (Syn_NamedTypes )
wrap_NamedTypes !(T_NamedTypes act) !(Inh_NamedTypes _lhsInested) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg37 = T_NamedTypes_vIn37 _lhsInested
!(T_NamedTypes_vOut37 _lhsOpps) <- return (inv_NamedTypes_s38 sem arg37)
return (Syn_NamedTypes _lhsOpps)
)
-- cata
{-# NOINLINE sem_NamedTypes #-}
sem_NamedTypes :: NamedTypes -> T_NamedTypes
sem_NamedTypes list = Prelude.foldr sem_NamedTypes_Cons sem_NamedTypes_Nil (Prelude.map sem_NamedType list)
-- semantic domain
newtype T_NamedTypes = T_NamedTypes {
attach_T_NamedTypes :: Identity (T_NamedTypes_s38 )
}
newtype T_NamedTypes_s38 = C_NamedTypes_s38 {
inv_NamedTypes_s38 :: (T_NamedTypes_v37 )
}
data T_NamedTypes_s39 = C_NamedTypes_s39
type T_NamedTypes_v37 = (T_NamedTypes_vIn37 ) -> (T_NamedTypes_vOut37 )
data T_NamedTypes_vIn37 = T_NamedTypes_vIn37 (Bool)
data T_NamedTypes_vOut37 = T_NamedTypes_vOut37 (PP_Docs)
{-# NOINLINE sem_NamedTypes_Cons #-}
sem_NamedTypes_Cons :: T_NamedType -> T_NamedTypes -> T_NamedTypes
sem_NamedTypes_Cons arg_hd_ arg_tl_ = T_NamedTypes (return st38) where
{-# NOINLINE st38 #-}
!st38 = let
v37 :: T_NamedTypes_v37
v37 = \ !(T_NamedTypes_vIn37 _lhsInested) -> ( let
_hdX35 = Control.Monad.Identity.runIdentity (attach_T_NamedType (arg_hd_))
_tlX38 = Control.Monad.Identity.runIdentity (attach_T_NamedTypes (arg_tl_))
(T_NamedType_vOut34 _hdIpp) = inv_NamedType_s35 _hdX35 (T_NamedType_vIn34 _hdOnested)
(T_NamedTypes_vOut37 _tlIpps) = inv_NamedTypes_s38 _tlX38 (T_NamedTypes_vIn37 _tlOnested)
_lhsOpps :: PP_Docs
_lhsOpps = rule293 _hdIpp _tlIpps
_hdOnested = rule294 _lhsInested
_tlOnested = rule295 _lhsInested
!__result_ = T_NamedTypes_vOut37 _lhsOpps
in __result_ )
in C_NamedTypes_s38 v37
{-# INLINE rule293 #-}
{-# LINE 80 "src-ag/PrintCode.ag" #-}
rule293 = \ ((_hdIpp) :: PP_Doc) ((_tlIpps) :: PP_Docs) ->
{-# LINE 80 "src-ag/PrintCode.ag" #-}
_hdIpp : _tlIpps
{-# LINE 2786 "src-generated/PrintCode.hs" #-}
{-# INLINE rule294 #-}
rule294 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule295 #-}
rule295 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_NamedTypes_Nil #-}
sem_NamedTypes_Nil :: T_NamedTypes
sem_NamedTypes_Nil = T_NamedTypes (return st38) where
{-# NOINLINE st38 #-}
!st38 = let
v37 :: T_NamedTypes_v37
v37 = \ !(T_NamedTypes_vIn37 _lhsInested) -> ( let
_lhsOpps :: PP_Docs
_lhsOpps = rule296 ()
!__result_ = T_NamedTypes_vOut37 _lhsOpps
in __result_ )
in C_NamedTypes_s38 v37
{-# INLINE rule296 #-}
{-# LINE 81 "src-ag/PrintCode.ag" #-}
rule296 = \ (_ :: ()) ->
{-# LINE 81 "src-ag/PrintCode.ag" #-}
[]
{-# LINE 2810 "src-generated/PrintCode.hs" #-}
-- Pattern -----------------------------------------------------
-- wrapper
data Inh_Pattern = Inh_Pattern { belowIrrefutable_Inh_Pattern :: !(Bool), isDeclOfLet_Inh_Pattern :: !(Bool), options_Inh_Pattern :: !(Options) }
data Syn_Pattern = Syn_Pattern { copy_Syn_Pattern :: !(Pattern), isUnderscore_Syn_Pattern :: !(Bool), pp_Syn_Pattern :: !(PP_Doc), pp'_Syn_Pattern :: !(PP_Doc), strictVars_Syn_Pattern :: !([PP_Doc]) }
{-# INLINABLE wrap_Pattern #-}
wrap_Pattern :: T_Pattern -> Inh_Pattern -> (Syn_Pattern )
wrap_Pattern !(T_Pattern act) !(Inh_Pattern _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg40 = T_Pattern_vIn40 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions
!(T_Pattern_vOut40 _lhsOcopy _lhsOisUnderscore _lhsOpp _lhsOpp' _lhsOstrictVars) <- return (inv_Pattern_s41 sem arg40)
return (Syn_Pattern _lhsOcopy _lhsOisUnderscore _lhsOpp _lhsOpp' _lhsOstrictVars)
)
-- cata
{-# NOINLINE sem_Pattern #-}
sem_Pattern :: Pattern -> T_Pattern
sem_Pattern ( Constr !name_ pats_ ) = sem_Pattern_Constr name_ ( sem_Patterns pats_ )
sem_Pattern ( Product !pos_ pats_ ) = sem_Pattern_Product pos_ ( sem_Patterns pats_ )
sem_Pattern ( Alias !field_ !attr_ pat_ ) = sem_Pattern_Alias field_ attr_ ( sem_Pattern pat_ )
sem_Pattern ( Irrefutable pat_ ) = sem_Pattern_Irrefutable ( sem_Pattern pat_ )
sem_Pattern ( Underscore !pos_ ) = sem_Pattern_Underscore pos_
-- semantic domain
newtype T_Pattern = T_Pattern {
attach_T_Pattern :: Identity (T_Pattern_s41 )
}
newtype T_Pattern_s41 = C_Pattern_s41 {
inv_Pattern_s41 :: (T_Pattern_v40 )
}
data T_Pattern_s42 = C_Pattern_s42
type T_Pattern_v40 = (T_Pattern_vIn40 ) -> (T_Pattern_vOut40 )
data T_Pattern_vIn40 = T_Pattern_vIn40 (Bool) (Bool) (Options)
data T_Pattern_vOut40 = T_Pattern_vOut40 (Pattern) (Bool) (PP_Doc) (PP_Doc) ([PP_Doc])
{-# NOINLINE sem_Pattern_Constr #-}
sem_Pattern_Constr :: (ConstructorIdent) -> T_Patterns -> T_Pattern
sem_Pattern_Constr !arg_name_ arg_pats_ = T_Pattern (return st41) where
{-# NOINLINE st41 #-}
!st41 = let
v40 :: T_Pattern_v40
v40 = \ !(T_Pattern_vIn40 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions) -> ( let
_patsX44 = Control.Monad.Identity.runIdentity (attach_T_Patterns (arg_pats_))
(T_Patterns_vOut43 _patsIcopy _patsIpps _patsIpps' _patsIstrictVars) = inv_Patterns_s44 _patsX44 (T_Patterns_vIn43 _patsObelowIrrefutable _patsOisDeclOfLet _patsOoptions)
_addBang = rule297 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions
_lhsOpp :: PP_Doc
_lhsOpp = rule298 _addBang _patsIpps arg_name_
_lhsOisUnderscore :: Bool
_lhsOisUnderscore = rule299 ()
_lhsOpp' :: PP_Doc
_lhsOpp' = rule300 _patsIpps' arg_name_
_lhsOstrictVars :: [PP_Doc]
_lhsOstrictVars = rule301 _patsIstrictVars
_copy = rule302 _patsIcopy arg_name_
_lhsOcopy :: Pattern
_lhsOcopy = rule303 _copy
_patsObelowIrrefutable = rule304 _lhsIbelowIrrefutable
_patsOisDeclOfLet = rule305 _lhsIisDeclOfLet
_patsOoptions = rule306 _lhsIoptions
!__result_ = T_Pattern_vOut40 _lhsOcopy _lhsOisUnderscore _lhsOpp _lhsOpp' _lhsOstrictVars
in __result_ )
in C_Pattern_s41 v40
{-# INLINE rule297 #-}
{-# LINE 357 "src-ag/PrintCode.ag" #-}
rule297 = \ ((_lhsIbelowIrrefutable) :: Bool) ((_lhsIisDeclOfLet) :: Bool) ((_lhsIoptions) :: Options) ->
{-# LINE 357 "src-ag/PrintCode.ag" #-}
if bangpats _lhsIoptions && not _lhsIisDeclOfLet && not _lhsIbelowIrrefutable
then \p -> "!" >|< p
else id
{-# LINE 2880 "src-generated/PrintCode.hs" #-}
{-# INLINE rule298 #-}
{-# LINE 362 "src-ag/PrintCode.ag" #-}
rule298 = \ _addBang ((_patsIpps) :: [PP_Doc]) name_ ->
{-# LINE 362 "src-ag/PrintCode.ag" #-}
_addBang $ pp_parens $ name_ >#< hv_sp _patsIpps
{-# LINE 2886 "src-generated/PrintCode.hs" #-}
{-# INLINE rule299 #-}
{-# LINE 373 "src-ag/PrintCode.ag" #-}
rule299 = \ (_ :: ()) ->
{-# LINE 373 "src-ag/PrintCode.ag" #-}
False
{-# LINE 2892 "src-generated/PrintCode.hs" #-}
{-# INLINE rule300 #-}
{-# LINE 396 "src-ag/PrintCode.ag" #-}
rule300 = \ ((_patsIpps') :: [PP_Doc]) name_ ->
{-# LINE 396 "src-ag/PrintCode.ag" #-}
pp_parens $ name_ >#< hv_sp (map pp_parens _patsIpps')
{-# LINE 2898 "src-generated/PrintCode.hs" #-}
{-# INLINE rule301 #-}
rule301 = \ ((_patsIstrictVars) :: [PP_Doc]) ->
_patsIstrictVars
{-# INLINE rule302 #-}
rule302 = \ ((_patsIcopy) :: Patterns) name_ ->
Constr name_ _patsIcopy
{-# INLINE rule303 #-}
rule303 = \ _copy ->
_copy
{-# INLINE rule304 #-}
rule304 = \ ((_lhsIbelowIrrefutable) :: Bool) ->
_lhsIbelowIrrefutable
{-# INLINE rule305 #-}
rule305 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule306 #-}
rule306 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# NOINLINE sem_Pattern_Product #-}
sem_Pattern_Product :: (Pos) -> T_Patterns -> T_Pattern
sem_Pattern_Product !arg_pos_ arg_pats_ = T_Pattern (return st41) where
{-# NOINLINE st41 #-}
!st41 = let
v40 :: T_Pattern_v40
v40 = \ !(T_Pattern_vIn40 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions) -> ( let
_patsX44 = Control.Monad.Identity.runIdentity (attach_T_Patterns (arg_pats_))
(T_Patterns_vOut43 _patsIcopy _patsIpps _patsIpps' _patsIstrictVars) = inv_Patterns_s44 _patsX44 (T_Patterns_vIn43 _patsObelowIrrefutable _patsOisDeclOfLet _patsOoptions)
_addBang = rule307 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions
_lhsOpp :: PP_Doc
_lhsOpp = rule308 _addBang _patsIpps
_lhsOisUnderscore :: Bool
_lhsOisUnderscore = rule309 ()
_lhsOpp' :: PP_Doc
_lhsOpp' = rule310 _patsIpps'
_lhsOstrictVars :: [PP_Doc]
_lhsOstrictVars = rule311 _patsIstrictVars
_copy = rule312 _patsIcopy arg_pos_
_lhsOcopy :: Pattern
_lhsOcopy = rule313 _copy
_patsObelowIrrefutable = rule314 _lhsIbelowIrrefutable
_patsOisDeclOfLet = rule315 _lhsIisDeclOfLet
_patsOoptions = rule316 _lhsIoptions
!__result_ = T_Pattern_vOut40 _lhsOcopy _lhsOisUnderscore _lhsOpp _lhsOpp' _lhsOstrictVars
in __result_ )
in C_Pattern_s41 v40
{-# INLINE rule307 #-}
{-# LINE 357 "src-ag/PrintCode.ag" #-}
rule307 = \ ((_lhsIbelowIrrefutable) :: Bool) ((_lhsIisDeclOfLet) :: Bool) ((_lhsIoptions) :: Options) ->
{-# LINE 357 "src-ag/PrintCode.ag" #-}
if bangpats _lhsIoptions && not _lhsIisDeclOfLet && not _lhsIbelowIrrefutable
then \p -> "!" >|< p
else id
{-# LINE 2951 "src-generated/PrintCode.hs" #-}
{-# INLINE rule308 #-}
{-# LINE 363 "src-ag/PrintCode.ag" #-}
rule308 = \ _addBang ((_patsIpps) :: [PP_Doc]) ->
{-# LINE 363 "src-ag/PrintCode.ag" #-}
_addBang $ pp_block "(" ")" "," _patsIpps
{-# LINE 2957 "src-generated/PrintCode.hs" #-}
{-# INLINE rule309 #-}
{-# LINE 374 "src-ag/PrintCode.ag" #-}
rule309 = \ (_ :: ()) ->
{-# LINE 374 "src-ag/PrintCode.ag" #-}
False
{-# LINE 2963 "src-generated/PrintCode.hs" #-}
{-# INLINE rule310 #-}
{-# LINE 397 "src-ag/PrintCode.ag" #-}
rule310 = \ ((_patsIpps') :: [PP_Doc]) ->
{-# LINE 397 "src-ag/PrintCode.ag" #-}
pp_block "(" ")" "," _patsIpps'
{-# LINE 2969 "src-generated/PrintCode.hs" #-}
{-# INLINE rule311 #-}
rule311 = \ ((_patsIstrictVars) :: [PP_Doc]) ->
_patsIstrictVars
{-# INLINE rule312 #-}
rule312 = \ ((_patsIcopy) :: Patterns) pos_ ->
Product pos_ _patsIcopy
{-# INLINE rule313 #-}
rule313 = \ _copy ->
_copy
{-# INLINE rule314 #-}
rule314 = \ ((_lhsIbelowIrrefutable) :: Bool) ->
_lhsIbelowIrrefutable
{-# INLINE rule315 #-}
rule315 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule316 #-}
rule316 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# NOINLINE sem_Pattern_Alias #-}
sem_Pattern_Alias :: (Identifier) -> (Identifier) -> T_Pattern -> T_Pattern
sem_Pattern_Alias !arg_field_ !arg_attr_ arg_pat_ = T_Pattern (return st41) where
{-# NOINLINE st41 #-}
!st41 = let
v40 :: T_Pattern_v40
v40 = \ !(T_Pattern_vIn40 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions) -> ( let
_patX41 = Control.Monad.Identity.runIdentity (attach_T_Pattern (arg_pat_))
(T_Pattern_vOut40 _patIcopy _patIisUnderscore _patIpp _patIpp' _patIstrictVars) = inv_Pattern_s41 _patX41 (T_Pattern_vIn40 _patObelowIrrefutable _patOisDeclOfLet _patOoptions)
_strictVar = rule317 _lhsIisDeclOfLet _lhsIoptions _ppVar
_strictPatVars = rule318 _lhsIisDeclOfLet _lhsIoptions _patIstrictVars
_lhsOstrictVars :: [PP_Doc]
_lhsOstrictVars = rule319 _strictPatVars _strictVar
_addBang = rule320 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions
_ppVar = rule321 _lhsIoptions arg_attr_ arg_field_
_ppVarBang = rule322 _addBang _ppVar
_lhsOpp :: PP_Doc
_lhsOpp = rule323 _patIisUnderscore _patIpp _ppVarBang
_lhsOisUnderscore :: Bool
_lhsOisUnderscore = rule324 ()
_lhsOpp' :: PP_Doc
_lhsOpp' = rule325 _lhsIoptions _patIpp' arg_attr_ arg_field_
_copy = rule326 _patIcopy arg_attr_ arg_field_
_lhsOcopy :: Pattern
_lhsOcopy = rule327 _copy
_patObelowIrrefutable = rule328 _lhsIbelowIrrefutable
_patOisDeclOfLet = rule329 _lhsIisDeclOfLet
_patOoptions = rule330 _lhsIoptions
!__result_ = T_Pattern_vOut40 _lhsOcopy _lhsOisUnderscore _lhsOpp _lhsOpp' _lhsOstrictVars
in __result_ )
in C_Pattern_s41 v40
{-# INLINE rule317 #-}
{-# LINE 335 "src-ag/PrintCode.ag" #-}
rule317 = \ ((_lhsIisDeclOfLet) :: Bool) ((_lhsIoptions) :: Options) _ppVar ->
{-# LINE 335 "src-ag/PrintCode.ag" #-}
if strictCases _lhsIoptions && not _lhsIisDeclOfLet
then [_ppVar ]
else []
{-# LINE 3026 "src-generated/PrintCode.hs" #-}
{-# INLINE rule318 #-}
{-# LINE 339 "src-ag/PrintCode.ag" #-}
rule318 = \ ((_lhsIisDeclOfLet) :: Bool) ((_lhsIoptions) :: Options) ((_patIstrictVars) :: [PP_Doc]) ->
{-# LINE 339 "src-ag/PrintCode.ag" #-}
if stricterCases _lhsIoptions && not _lhsIisDeclOfLet
then _patIstrictVars
else []
{-# LINE 3034 "src-generated/PrintCode.hs" #-}
{-# INLINE rule319 #-}
{-# LINE 343 "src-ag/PrintCode.ag" #-}
rule319 = \ _strictPatVars _strictVar ->
{-# LINE 343 "src-ag/PrintCode.ag" #-}
_strictVar ++ _strictPatVars
{-# LINE 3040 "src-generated/PrintCode.hs" #-}
{-# INLINE rule320 #-}
{-# LINE 357 "src-ag/PrintCode.ag" #-}
rule320 = \ ((_lhsIbelowIrrefutable) :: Bool) ((_lhsIisDeclOfLet) :: Bool) ((_lhsIoptions) :: Options) ->
{-# LINE 357 "src-ag/PrintCode.ag" #-}
if bangpats _lhsIoptions && not _lhsIisDeclOfLet && not _lhsIbelowIrrefutable
then \p -> "!" >|< p
else id
{-# LINE 3048 "src-generated/PrintCode.hs" #-}
{-# INLINE rule321 #-}
{-# LINE 364 "src-ag/PrintCode.ag" #-}
rule321 = \ ((_lhsIoptions) :: Options) attr_ field_ ->
{-# LINE 364 "src-ag/PrintCode.ag" #-}
pp (attrname _lhsIoptions False field_ attr_)
{-# LINE 3054 "src-generated/PrintCode.hs" #-}
{-# INLINE rule322 #-}
{-# LINE 365 "src-ag/PrintCode.ag" #-}
rule322 = \ _addBang _ppVar ->
{-# LINE 365 "src-ag/PrintCode.ag" #-}
_addBang $ _ppVar
{-# LINE 3060 "src-generated/PrintCode.hs" #-}
{-# INLINE rule323 #-}
{-# LINE 366 "src-ag/PrintCode.ag" #-}
rule323 = \ ((_patIisUnderscore) :: Bool) ((_patIpp) :: PP_Doc) _ppVarBang ->
{-# LINE 366 "src-ag/PrintCode.ag" #-}
if _patIisUnderscore
then _ppVarBang
else _ppVarBang >|< "@" >|< _patIpp
{-# LINE 3068 "src-generated/PrintCode.hs" #-}
{-# INLINE rule324 #-}
{-# LINE 375 "src-ag/PrintCode.ag" #-}
rule324 = \ (_ :: ()) ->
{-# LINE 375 "src-ag/PrintCode.ag" #-}
False
{-# LINE 3074 "src-generated/PrintCode.hs" #-}
{-# INLINE rule325 #-}
{-# LINE 398 "src-ag/PrintCode.ag" #-}
rule325 = \ ((_lhsIoptions) :: Options) ((_patIpp') :: PP_Doc) attr_ field_ ->
{-# LINE 398 "src-ag/PrintCode.ag" #-}
let attribute | field_ == _LOC || field_ == nullIdent = locname' attr_
| otherwise = attrname _lhsIoptions False field_ attr_
in attribute >|< "@" >|< _patIpp'
{-# LINE 3082 "src-generated/PrintCode.hs" #-}
{-# INLINE rule326 #-}
rule326 = \ ((_patIcopy) :: Pattern) attr_ field_ ->
Alias field_ attr_ _patIcopy
{-# INLINE rule327 #-}
rule327 = \ _copy ->
_copy
{-# INLINE rule328 #-}
rule328 = \ ((_lhsIbelowIrrefutable) :: Bool) ->
_lhsIbelowIrrefutable
{-# INLINE rule329 #-}
rule329 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule330 #-}
rule330 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# NOINLINE sem_Pattern_Irrefutable #-}
sem_Pattern_Irrefutable :: T_Pattern -> T_Pattern
sem_Pattern_Irrefutable arg_pat_ = T_Pattern (return st41) where
{-# NOINLINE st41 #-}
!st41 = let
v40 :: T_Pattern_v40
v40 = \ !(T_Pattern_vIn40 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions) -> ( let
_patX41 = Control.Monad.Identity.runIdentity (attach_T_Pattern (arg_pat_))
(T_Pattern_vOut40 _patIcopy _patIisUnderscore _patIpp _patIpp' _patIstrictVars) = inv_Pattern_s41 _patX41 (T_Pattern_vIn40 _patObelowIrrefutable _patOisDeclOfLet _patOoptions)
_lhsOstrictVars :: [PP_Doc]
_lhsOstrictVars = rule331 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule332 _patIpp
_patObelowIrrefutable = rule333 ()
_lhsOpp' :: PP_Doc
_lhsOpp' = rule334 _patIpp
_copy = rule335 _patIcopy
_lhsOcopy :: Pattern
_lhsOcopy = rule336 _copy
_lhsOisUnderscore :: Bool
_lhsOisUnderscore = rule337 _patIisUnderscore
_patOisDeclOfLet = rule338 _lhsIisDeclOfLet
_patOoptions = rule339 _lhsIoptions
!__result_ = T_Pattern_vOut40 _lhsOcopy _lhsOisUnderscore _lhsOpp _lhsOpp' _lhsOstrictVars
in __result_ )
in C_Pattern_s41 v40
{-# INLINE rule331 #-}
{-# LINE 345 "src-ag/PrintCode.ag" #-}
rule331 = \ (_ :: ()) ->
{-# LINE 345 "src-ag/PrintCode.ag" #-}
[]
{-# LINE 3129 "src-generated/PrintCode.hs" #-}
{-# INLINE rule332 #-}
{-# LINE 369 "src-ag/PrintCode.ag" #-}
rule332 = \ ((_patIpp) :: PP_Doc) ->
{-# LINE 369 "src-ag/PrintCode.ag" #-}
text "~" >|< pp_parens _patIpp
{-# LINE 3135 "src-generated/PrintCode.hs" #-}
{-# INLINE rule333 #-}
{-# LINE 381 "src-ag/PrintCode.ag" #-}
rule333 = \ (_ :: ()) ->
{-# LINE 381 "src-ag/PrintCode.ag" #-}
True
{-# LINE 3141 "src-generated/PrintCode.hs" #-}
{-# INLINE rule334 #-}
{-# LINE 401 "src-ag/PrintCode.ag" #-}
rule334 = \ ((_patIpp) :: PP_Doc) ->
{-# LINE 401 "src-ag/PrintCode.ag" #-}
text "~" >|< pp_parens _patIpp
{-# LINE 3147 "src-generated/PrintCode.hs" #-}
{-# INLINE rule335 #-}
rule335 = \ ((_patIcopy) :: Pattern) ->
Irrefutable _patIcopy
{-# INLINE rule336 #-}
rule336 = \ _copy ->
_copy
{-# INLINE rule337 #-}
rule337 = \ ((_patIisUnderscore) :: Bool) ->
_patIisUnderscore
{-# INLINE rule338 #-}
rule338 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule339 #-}
rule339 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# NOINLINE sem_Pattern_Underscore #-}
sem_Pattern_Underscore :: (Pos) -> T_Pattern
sem_Pattern_Underscore !arg_pos_ = T_Pattern (return st41) where
{-# NOINLINE st41 #-}
!st41 = let
v40 :: T_Pattern_v40
v40 = \ !(T_Pattern_vIn40 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions) -> ( let
_lhsOpp :: PP_Doc
_lhsOpp = rule340 ()
_lhsOisUnderscore :: Bool
_lhsOisUnderscore = rule341 ()
_lhsOpp' :: PP_Doc
_lhsOpp' = rule342 ()
_lhsOstrictVars :: [PP_Doc]
_lhsOstrictVars = rule343 ()
_copy = rule344 arg_pos_
_lhsOcopy :: Pattern
_lhsOcopy = rule345 _copy
!__result_ = T_Pattern_vOut40 _lhsOcopy _lhsOisUnderscore _lhsOpp _lhsOpp' _lhsOstrictVars
in __result_ )
in C_Pattern_s41 v40
{-# INLINE rule340 #-}
{-# LINE 370 "src-ag/PrintCode.ag" #-}
rule340 = \ (_ :: ()) ->
{-# LINE 370 "src-ag/PrintCode.ag" #-}
text "_"
{-# LINE 3189 "src-generated/PrintCode.hs" #-}
{-# INLINE rule341 #-}
{-# LINE 376 "src-ag/PrintCode.ag" #-}
rule341 = \ (_ :: ()) ->
{-# LINE 376 "src-ag/PrintCode.ag" #-}
True
{-# LINE 3195 "src-generated/PrintCode.hs" #-}
{-# INLINE rule342 #-}
{-# LINE 402 "src-ag/PrintCode.ag" #-}
rule342 = \ (_ :: ()) ->
{-# LINE 402 "src-ag/PrintCode.ag" #-}
text "_"
{-# LINE 3201 "src-generated/PrintCode.hs" #-}
{-# INLINE rule343 #-}
rule343 = \ (_ :: ()) ->
[]
{-# INLINE rule344 #-}
rule344 = \ pos_ ->
Underscore pos_
{-# INLINE rule345 #-}
rule345 = \ _copy ->
_copy
-- Patterns ----------------------------------------------------
-- wrapper
data Inh_Patterns = Inh_Patterns { belowIrrefutable_Inh_Patterns :: !(Bool), isDeclOfLet_Inh_Patterns :: !(Bool), options_Inh_Patterns :: !(Options) }
data Syn_Patterns = Syn_Patterns { copy_Syn_Patterns :: !(Patterns), pps_Syn_Patterns :: !([PP_Doc]), pps'_Syn_Patterns :: !([PP_Doc]), strictVars_Syn_Patterns :: !([PP_Doc]) }
{-# INLINABLE wrap_Patterns #-}
wrap_Patterns :: T_Patterns -> Inh_Patterns -> (Syn_Patterns )
wrap_Patterns !(T_Patterns act) !(Inh_Patterns _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg43 = T_Patterns_vIn43 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions
!(T_Patterns_vOut43 _lhsOcopy _lhsOpps _lhsOpps' _lhsOstrictVars) <- return (inv_Patterns_s44 sem arg43)
return (Syn_Patterns _lhsOcopy _lhsOpps _lhsOpps' _lhsOstrictVars)
)
-- cata
{-# NOINLINE sem_Patterns #-}
sem_Patterns :: Patterns -> T_Patterns
sem_Patterns list = Prelude.foldr sem_Patterns_Cons sem_Patterns_Nil (Prelude.map sem_Pattern list)
-- semantic domain
newtype T_Patterns = T_Patterns {
attach_T_Patterns :: Identity (T_Patterns_s44 )
}
newtype T_Patterns_s44 = C_Patterns_s44 {
inv_Patterns_s44 :: (T_Patterns_v43 )
}
data T_Patterns_s45 = C_Patterns_s45
type T_Patterns_v43 = (T_Patterns_vIn43 ) -> (T_Patterns_vOut43 )
data T_Patterns_vIn43 = T_Patterns_vIn43 (Bool) (Bool) (Options)
data T_Patterns_vOut43 = T_Patterns_vOut43 (Patterns) ([PP_Doc]) ([PP_Doc]) ([PP_Doc])
{-# NOINLINE sem_Patterns_Cons #-}
sem_Patterns_Cons :: T_Pattern -> T_Patterns -> T_Patterns
sem_Patterns_Cons arg_hd_ arg_tl_ = T_Patterns (return st44) where
{-# NOINLINE st44 #-}
!st44 = let
v43 :: T_Patterns_v43
v43 = \ !(T_Patterns_vIn43 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions) -> ( let
_hdX41 = Control.Monad.Identity.runIdentity (attach_T_Pattern (arg_hd_))
_tlX44 = Control.Monad.Identity.runIdentity (attach_T_Patterns (arg_tl_))
(T_Pattern_vOut40 _hdIcopy _hdIisUnderscore _hdIpp _hdIpp' _hdIstrictVars) = inv_Pattern_s41 _hdX41 (T_Pattern_vIn40 _hdObelowIrrefutable _hdOisDeclOfLet _hdOoptions)
(T_Patterns_vOut43 _tlIcopy _tlIpps _tlIpps' _tlIstrictVars) = inv_Patterns_s44 _tlX44 (T_Patterns_vIn43 _tlObelowIrrefutable _tlOisDeclOfLet _tlOoptions)
_lhsOpps :: [PP_Doc]
_lhsOpps = rule346 _hdIpp _tlIpps
_lhsOpps' :: [PP_Doc]
_lhsOpps' = rule347 _hdIpp' _tlIpps'
_lhsOstrictVars :: [PP_Doc]
_lhsOstrictVars = rule348 _hdIstrictVars _tlIstrictVars
_copy = rule349 _hdIcopy _tlIcopy
_lhsOcopy :: Patterns
_lhsOcopy = rule350 _copy
_hdObelowIrrefutable = rule351 _lhsIbelowIrrefutable
_hdOisDeclOfLet = rule352 _lhsIisDeclOfLet
_hdOoptions = rule353 _lhsIoptions
_tlObelowIrrefutable = rule354 _lhsIbelowIrrefutable
_tlOisDeclOfLet = rule355 _lhsIisDeclOfLet
_tlOoptions = rule356 _lhsIoptions
!__result_ = T_Patterns_vOut43 _lhsOcopy _lhsOpps _lhsOpps' _lhsOstrictVars
in __result_ )
in C_Patterns_s44 v43
{-# INLINE rule346 #-}
{-# LINE 352 "src-ag/PrintCode.ag" #-}
rule346 = \ ((_hdIpp) :: PP_Doc) ((_tlIpps) :: [PP_Doc]) ->
{-# LINE 352 "src-ag/PrintCode.ag" #-}
_hdIpp : _tlIpps
{-# LINE 3276 "src-generated/PrintCode.hs" #-}
{-# INLINE rule347 #-}
{-# LINE 392 "src-ag/PrintCode.ag" #-}
rule347 = \ ((_hdIpp') :: PP_Doc) ((_tlIpps') :: [PP_Doc]) ->
{-# LINE 392 "src-ag/PrintCode.ag" #-}
_hdIpp' : _tlIpps'
{-# LINE 3282 "src-generated/PrintCode.hs" #-}
{-# INLINE rule348 #-}
rule348 = \ ((_hdIstrictVars) :: [PP_Doc]) ((_tlIstrictVars) :: [PP_Doc]) ->
_hdIstrictVars ++ _tlIstrictVars
{-# INLINE rule349 #-}
rule349 = \ ((_hdIcopy) :: Pattern) ((_tlIcopy) :: Patterns) ->
(:) _hdIcopy _tlIcopy
{-# INLINE rule350 #-}
rule350 = \ _copy ->
_copy
{-# INLINE rule351 #-}
rule351 = \ ((_lhsIbelowIrrefutable) :: Bool) ->
_lhsIbelowIrrefutable
{-# INLINE rule352 #-}
rule352 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule353 #-}
rule353 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# INLINE rule354 #-}
rule354 = \ ((_lhsIbelowIrrefutable) :: Bool) ->
_lhsIbelowIrrefutable
{-# INLINE rule355 #-}
rule355 = \ ((_lhsIisDeclOfLet) :: Bool) ->
_lhsIisDeclOfLet
{-# INLINE rule356 #-}
rule356 = \ ((_lhsIoptions) :: Options) ->
_lhsIoptions
{-# NOINLINE sem_Patterns_Nil #-}
sem_Patterns_Nil :: T_Patterns
sem_Patterns_Nil = T_Patterns (return st44) where
{-# NOINLINE st44 #-}
!st44 = let
v43 :: T_Patterns_v43
v43 = \ !(T_Patterns_vIn43 _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions) -> ( let
_lhsOpps :: [PP_Doc]
_lhsOpps = rule357 ()
_lhsOpps' :: [PP_Doc]
_lhsOpps' = rule358 ()
_lhsOstrictVars :: [PP_Doc]
_lhsOstrictVars = rule359 ()
_copy = rule360 ()
_lhsOcopy :: Patterns
_lhsOcopy = rule361 _copy
!__result_ = T_Patterns_vOut43 _lhsOcopy _lhsOpps _lhsOpps' _lhsOstrictVars
in __result_ )
in C_Patterns_s44 v43
{-# INLINE rule357 #-}
{-# LINE 353 "src-ag/PrintCode.ag" #-}
rule357 = \ (_ :: ()) ->
{-# LINE 353 "src-ag/PrintCode.ag" #-}
[]
{-# LINE 3334 "src-generated/PrintCode.hs" #-}
{-# INLINE rule358 #-}
{-# LINE 393 "src-ag/PrintCode.ag" #-}
rule358 = \ (_ :: ()) ->
{-# LINE 393 "src-ag/PrintCode.ag" #-}
[]
{-# LINE 3340 "src-generated/PrintCode.hs" #-}
{-# INLINE rule359 #-}
rule359 = \ (_ :: ()) ->
[]
{-# INLINE rule360 #-}
rule360 = \ (_ :: ()) ->
[]
{-# INLINE rule361 #-}
rule361 = \ _copy ->
_copy
-- Program -----------------------------------------------------
-- wrapper
data Inh_Program = Inh_Program { importBlocks_Inh_Program :: !(PP_Doc), mainBlocksDoc_Inh_Program :: !(PP_Doc), mainFile_Inh_Program :: !(String), mainName_Inh_Program :: !(String), moduleHeader_Inh_Program :: !(String -> String -> String -> Bool -> String), options_Inh_Program :: !(Options), optionsLine_Inh_Program :: !(String), pragmaBlocks_Inh_Program :: !(String), textBlockMap_Inh_Program :: !(Map BlockInfo PP_Doc), textBlocks_Inh_Program :: !(PP_Doc) }
data Syn_Program = Syn_Program { genIO_Syn_Program :: !(IO ()), output_Syn_Program :: !(PP_Docs) }
{-# INLINABLE wrap_Program #-}
wrap_Program :: T_Program -> Inh_Program -> (Syn_Program )
wrap_Program !(T_Program act) !(Inh_Program _lhsIimportBlocks _lhsImainBlocksDoc _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg46 = T_Program_vIn46 _lhsIimportBlocks _lhsImainBlocksDoc _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks
!(T_Program_vOut46 _lhsOgenIO _lhsOoutput) <- return (inv_Program_s47 sem arg46)
return (Syn_Program _lhsOgenIO _lhsOoutput)
)
-- cata
{-# INLINE sem_Program #-}
sem_Program :: Program -> T_Program
sem_Program ( Program chunks_ !ordered_ ) = sem_Program_Program ( sem_Chunks chunks_ ) ordered_
-- semantic domain
newtype T_Program = T_Program {
attach_T_Program :: Identity (T_Program_s47 )
}
newtype T_Program_s47 = C_Program_s47 {
inv_Program_s47 :: (T_Program_v46 )
}
data T_Program_s48 = C_Program_s48
type T_Program_v46 = (T_Program_vIn46 ) -> (T_Program_vOut46 )
data T_Program_vIn46 = T_Program_vIn46 (PP_Doc) (PP_Doc) (String) (String) (String -> String -> String -> Bool -> String) (Options) (String) (String) (Map BlockInfo PP_Doc) (PP_Doc)
data T_Program_vOut46 = T_Program_vOut46 (IO ()) (PP_Docs)
{-# NOINLINE sem_Program_Program #-}
sem_Program_Program :: T_Chunks -> (Bool) -> T_Program
sem_Program_Program arg_chunks_ !arg_ordered_ = T_Program (return st47) where
{-# NOINLINE st47 #-}
!st47 = let
v46 :: T_Program_v46
v46 = \ !(T_Program_vIn46 _lhsIimportBlocks _lhsImainBlocksDoc _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks) -> ( let
_chunksX11 = Control.Monad.Identity.runIdentity (attach_T_Chunks (arg_chunks_))
(T_Chunks_vOut10 _chunksIappendCommon _chunksIappendMain _chunksIgenSems _chunksIimports _chunksIpps) = inv_Chunks_s11 _chunksX11 (T_Chunks_vIn10 _chunksOimportBlocks _chunksOisDeclOfLet _chunksOmainFile _chunksOmainName _chunksOmoduleHeader _chunksOnested _chunksOoptions _chunksOoptionsLine _chunksOpragmaBlocks _chunksOtextBlockMap _chunksOtextBlocks)
_options = rule362 _lhsIoptions arg_ordered_
_chunksOnested = rule363 _lhsIoptions
_lhsOoutput :: PP_Docs
_lhsOoutput = rule364 _chunksIpps
_chunksOisDeclOfLet = rule365 ()
_mainModuleFile = rule366 _lhsImainFile
_genMainModule = rule367 _chunksIappendMain _chunksIimports _lhsImainBlocksDoc _lhsImainName _lhsImoduleHeader _lhsIoptionsLine _lhsIpragmaBlocks _mainModuleFile
_commonFile = rule368 _lhsImainFile
_genCommonModule = rule369 _chunksIappendCommon _commonFile _lhsIimportBlocks _lhsImainName _lhsImoduleHeader _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlocks
_lhsOgenIO :: IO ()
_lhsOgenIO = rule370 _chunksIgenSems _genCommonModule _genMainModule
_chunksOimportBlocks = rule371 _lhsIimportBlocks
_chunksOmainFile = rule372 _lhsImainFile
_chunksOmainName = rule373 _lhsImainName
_chunksOmoduleHeader = rule374 _lhsImoduleHeader
_chunksOoptions = rule375 _options
_chunksOoptionsLine = rule376 _lhsIoptionsLine
_chunksOpragmaBlocks = rule377 _lhsIpragmaBlocks
_chunksOtextBlockMap = rule378 _lhsItextBlockMap
_chunksOtextBlocks = rule379 _lhsItextBlocks
!__result_ = T_Program_vOut46 _lhsOgenIO _lhsOoutput
in __result_ )
in C_Program_s47 v46
{-# INLINE rule362 #-}
{-# LINE 58 "src-ag/PrintCode.ag" #-}
rule362 = \ ((_lhsIoptions) :: Options) ordered_ ->
{-# LINE 58 "src-ag/PrintCode.ag" #-}
_lhsIoptions { breadthFirst = breadthFirst _lhsIoptions && visit _lhsIoptions && cases _lhsIoptions && ordered_ }
{-# LINE 3418 "src-generated/PrintCode.hs" #-}
{-# INLINE rule363 #-}
{-# LINE 61 "src-ag/PrintCode.ag" #-}
rule363 = \ ((_lhsIoptions) :: Options) ->
{-# LINE 61 "src-ag/PrintCode.ag" #-}
nest _lhsIoptions
{-# LINE 3424 "src-generated/PrintCode.hs" #-}
{-# INLINE rule364 #-}
{-# LINE 93 "src-ag/PrintCode.ag" #-}
rule364 = \ ((_chunksIpps) :: PP_Docs) ->
{-# LINE 93 "src-ag/PrintCode.ag" #-}
_chunksIpps
{-# LINE 3430 "src-generated/PrintCode.hs" #-}
{-# INLINE rule365 #-}
{-# LINE 416 "src-ag/PrintCode.ag" #-}
rule365 = \ (_ :: ()) ->
{-# LINE 416 "src-ag/PrintCode.ag" #-}
False
{-# LINE 3436 "src-generated/PrintCode.hs" #-}
{-# INLINE rule366 #-}
{-# LINE 450 "src-ag/PrintCode.ag" #-}
rule366 = \ ((_lhsImainFile) :: String) ->
{-# LINE 450 "src-ag/PrintCode.ag" #-}
_lhsImainFile
{-# LINE 3442 "src-generated/PrintCode.hs" #-}
{-# INLINE rule367 #-}
{-# LINE 452 "src-ag/PrintCode.ag" #-}
rule367 = \ ((_chunksIappendMain) :: [[PP_Doc]]) ((_chunksIimports) :: [String]) ((_lhsImainBlocksDoc) :: PP_Doc) ((_lhsImainName) :: String) ((_lhsImoduleHeader) :: String -> String -> String -> Bool -> String) ((_lhsIoptionsLine) :: String) ((_lhsIpragmaBlocks) :: String) _mainModuleFile ->
{-# LINE 452 "src-ag/PrintCode.ag" #-}
writeModule _mainModuleFile
( [ pp $ _lhsIpragmaBlocks
, pp $ _lhsIoptionsLine
, pp $ _lhsImoduleHeader _lhsImainName "" "" False
, pp $ ("import " ++ _lhsImainName ++ "_common\n")
]
++ map pp _chunksIimports
++ map vlist _chunksIappendMain
++ [_lhsImainBlocksDoc]
)
{-# LINE 3457 "src-generated/PrintCode.hs" #-}
{-# INLINE rule368 #-}
{-# LINE 463 "src-ag/PrintCode.ag" #-}
rule368 = \ ((_lhsImainFile) :: String) ->
{-# LINE 463 "src-ag/PrintCode.ag" #-}
replaceBaseName _lhsImainFile (takeBaseName _lhsImainFile ++ "_common")
{-# LINE 3463 "src-generated/PrintCode.hs" #-}
{-# INLINE rule369 #-}
{-# LINE 465 "src-ag/PrintCode.ag" #-}
rule369 = \ ((_chunksIappendCommon) :: [[PP_Doc]]) _commonFile ((_lhsIimportBlocks) :: PP_Doc) ((_lhsImainName) :: String) ((_lhsImoduleHeader) :: String -> String -> String -> Bool -> String) ((_lhsIoptionsLine) :: String) ((_lhsIpragmaBlocks) :: String) ((_lhsItextBlocks) :: PP_Doc) ->
{-# LINE 465 "src-ag/PrintCode.ag" #-}
writeModule _commonFile
( [ pp $ _lhsIpragmaBlocks
, pp $ _lhsIoptionsLine
, pp $ _lhsImoduleHeader _lhsImainName "_common" "" True
, _lhsIimportBlocks
, _lhsItextBlocks
]
++ map vlist _chunksIappendCommon
)
{-# LINE 3477 "src-generated/PrintCode.hs" #-}
{-# INLINE rule370 #-}
{-# LINE 475 "src-ag/PrintCode.ag" #-}
rule370 = \ ((_chunksIgenSems) :: IO ()) _genCommonModule _genMainModule ->
{-# LINE 475 "src-ag/PrintCode.ag" #-}
do _genMainModule
_genCommonModule
_chunksIgenSems
{-# LINE 3485 "src-generated/PrintCode.hs" #-}
{-# INLINE rule371 #-}
rule371 = \ ((_lhsIimportBlocks) :: PP_Doc) ->
_lhsIimportBlocks
{-# INLINE rule372 #-}
rule372 = \ ((_lhsImainFile) :: String) ->
_lhsImainFile
{-# INLINE rule373 #-}
rule373 = \ ((_lhsImainName) :: String) ->
_lhsImainName
{-# INLINE rule374 #-}
rule374 = \ ((_lhsImoduleHeader) :: String -> String -> String -> Bool -> String) ->
_lhsImoduleHeader
{-# INLINE rule375 #-}
rule375 = \ _options ->
_options
{-# INLINE rule376 #-}
rule376 = \ ((_lhsIoptionsLine) :: String) ->
_lhsIoptionsLine
{-# INLINE rule377 #-}
rule377 = \ ((_lhsIpragmaBlocks) :: String) ->
_lhsIpragmaBlocks
{-# INLINE rule378 #-}
rule378 = \ ((_lhsItextBlockMap) :: Map BlockInfo PP_Doc) ->
_lhsItextBlockMap
{-# INLINE rule379 #-}
rule379 = \ ((_lhsItextBlocks) :: PP_Doc) ->
_lhsItextBlocks
-- Type --------------------------------------------------------
-- wrapper
data Inh_Type = Inh_Type { nested_Inh_Type :: !(Bool) }
data Syn_Type = Syn_Type { pp_Syn_Type :: !(PP_Doc), prec_Syn_Type :: !(Int) }
{-# INLINABLE wrap_Type #-}
wrap_Type :: T_Type -> Inh_Type -> (Syn_Type )
wrap_Type !(T_Type act) !(Inh_Type _lhsInested) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg49 = T_Type_vIn49 _lhsInested
!(T_Type_vOut49 _lhsOpp _lhsOprec) <- return (inv_Type_s50 sem arg49)
return (Syn_Type _lhsOpp _lhsOprec)
)
-- cata
{-# NOINLINE sem_Type #-}
sem_Type :: Type -> T_Type
sem_Type ( Arr left_ right_ ) = sem_Type_Arr ( sem_Type left_ ) ( sem_Type right_ )
sem_Type ( CtxApp !left_ right_ ) = sem_Type_CtxApp left_ ( sem_Type right_ )
sem_Type ( QuantApp !left_ right_ ) = sem_Type_QuantApp left_ ( sem_Type right_ )
sem_Type ( TypeApp func_ args_ ) = sem_Type_TypeApp ( sem_Type func_ ) ( sem_Types args_ )
sem_Type ( TupleType tps_ ) = sem_Type_TupleType ( sem_Types tps_ )
sem_Type ( UnboxedTupleType tps_ ) = sem_Type_UnboxedTupleType ( sem_Types tps_ )
sem_Type ( List tp_ ) = sem_Type_List ( sem_Type tp_ )
sem_Type ( SimpleType !txt_ ) = sem_Type_SimpleType txt_
sem_Type ( NontermType !name_ !params_ !deforested_ ) = sem_Type_NontermType name_ params_ deforested_
sem_Type ( TMaybe tp_ ) = sem_Type_TMaybe ( sem_Type tp_ )
sem_Type ( TEither left_ right_ ) = sem_Type_TEither ( sem_Type left_ ) ( sem_Type right_ )
sem_Type ( TMap key_ value_ ) = sem_Type_TMap ( sem_Type key_ ) ( sem_Type value_ )
sem_Type ( TIntMap value_ ) = sem_Type_TIntMap ( sem_Type value_ )
sem_Type ( TSet tp_ ) = sem_Type_TSet ( sem_Type tp_ )
sem_Type ( TIntSet ) = sem_Type_TIntSet
-- semantic domain
newtype T_Type = T_Type {
attach_T_Type :: Identity (T_Type_s50 )
}
newtype T_Type_s50 = C_Type_s50 {
inv_Type_s50 :: (T_Type_v49 )
}
data T_Type_s51 = C_Type_s51
type T_Type_v49 = (T_Type_vIn49 ) -> (T_Type_vOut49 )
data T_Type_vIn49 = T_Type_vIn49 (Bool)
data T_Type_vOut49 = T_Type_vOut49 (PP_Doc) (Int)
{-# NOINLINE sem_Type_Arr #-}
sem_Type_Arr :: T_Type -> T_Type -> T_Type
sem_Type_Arr arg_left_ arg_right_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_leftX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_left_))
_rightX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_right_))
(T_Type_vOut49 _leftIpp _leftIprec) = inv_Type_s50 _leftX50 (T_Type_vIn49 _leftOnested)
(T_Type_vOut49 _rightIpp _rightIprec) = inv_Type_s50 _rightX50 (T_Type_vIn49 _rightOnested)
_lhsOprec :: Int
_lhsOprec = rule380 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule381 _l _r
_l = rule382 _leftIpp _leftIprec
_r = rule383 _rightIpp _rightIprec
_leftOnested = rule384 _lhsInested
_rightOnested = rule385 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule380 #-}
{-# LINE 259 "src-ag/PrintCode.ag" #-}
rule380 = \ (_ :: ()) ->
{-# LINE 259 "src-ag/PrintCode.ag" #-}
2
{-# LINE 3585 "src-generated/PrintCode.hs" #-}
{-# INLINE rule381 #-}
{-# LINE 260 "src-ag/PrintCode.ag" #-}
rule381 = \ _l _r ->
{-# LINE 260 "src-ag/PrintCode.ag" #-}
_l >#< "->" >-< _r
{-# LINE 3591 "src-generated/PrintCode.hs" #-}
{-# INLINE rule382 #-}
{-# LINE 261 "src-ag/PrintCode.ag" #-}
rule382 = \ ((_leftIpp) :: PP_Doc) ((_leftIprec) :: Int) ->
{-# LINE 261 "src-ag/PrintCode.ag" #-}
if _leftIprec <= 2 then pp_parens _leftIpp else _leftIpp
{-# LINE 3597 "src-generated/PrintCode.hs" #-}
{-# INLINE rule383 #-}
{-# LINE 262 "src-ag/PrintCode.ag" #-}
rule383 = \ ((_rightIpp) :: PP_Doc) ((_rightIprec) :: Int) ->
{-# LINE 262 "src-ag/PrintCode.ag" #-}
if _rightIprec < 2 then pp_parens _rightIpp else _rightIpp
{-# LINE 3603 "src-generated/PrintCode.hs" #-}
{-# INLINE rule384 #-}
rule384 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule385 #-}
rule385 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_CtxApp #-}
sem_Type_CtxApp :: ([(String, [String])]) -> T_Type -> T_Type
sem_Type_CtxApp !arg_left_ arg_right_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_rightX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_right_))
(T_Type_vOut49 _rightIpp _rightIprec) = inv_Type_s50 _rightX50 (T_Type_vIn49 _rightOnested)
_lhsOpp :: PP_Doc
_lhsOpp = rule386 _rightIpp arg_left_
_lhsOprec :: Int
_lhsOprec = rule387 _rightIprec
_rightOnested = rule388 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule386 #-}
{-# LINE 268 "src-ag/PrintCode.ag" #-}
rule386 = \ ((_rightIpp) :: PP_Doc) left_ ->
{-# LINE 268 "src-ag/PrintCode.ag" #-}
(pp_block "(" ")" "," $ map (\(n,ns) -> hv_sp $ map pp (n:ns)) left_) >#< "=>" >#< _rightIpp
{-# LINE 3632 "src-generated/PrintCode.hs" #-}
{-# INLINE rule387 #-}
rule387 = \ ((_rightIprec) :: Int) ->
_rightIprec
{-# INLINE rule388 #-}
rule388 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_QuantApp #-}
sem_Type_QuantApp :: (String) -> T_Type -> T_Type
sem_Type_QuantApp !arg_left_ arg_right_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_rightX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_right_))
(T_Type_vOut49 _rightIpp _rightIprec) = inv_Type_s50 _rightX50 (T_Type_vIn49 _rightOnested)
_lhsOpp :: PP_Doc
_lhsOpp = rule389 _rightIpp arg_left_
_lhsOprec :: Int
_lhsOprec = rule390 _rightIprec
_rightOnested = rule391 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule389 #-}
{-# LINE 270 "src-ag/PrintCode.ag" #-}
rule389 = \ ((_rightIpp) :: PP_Doc) left_ ->
{-# LINE 270 "src-ag/PrintCode.ag" #-}
left_ >#< _rightIpp
{-# LINE 3661 "src-generated/PrintCode.hs" #-}
{-# INLINE rule390 #-}
rule390 = \ ((_rightIprec) :: Int) ->
_rightIprec
{-# INLINE rule391 #-}
rule391 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_TypeApp #-}
sem_Type_TypeApp :: T_Type -> T_Types -> T_Type
sem_Type_TypeApp arg_func_ arg_args_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_funcX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_func_))
_argsX53 = Control.Monad.Identity.runIdentity (attach_T_Types (arg_args_))
(T_Type_vOut49 _funcIpp _funcIprec) = inv_Type_s50 _funcX50 (T_Type_vIn49 _funcOnested)
(T_Types_vOut52 _argsIpps) = inv_Types_s53 _argsX53 (T_Types_vIn52 _argsOnested)
_lhsOpp :: PP_Doc
_lhsOpp = rule392 _argsIpps _funcIpp
_lhsOprec :: Int
_lhsOprec = rule393 _funcIprec
_funcOnested = rule394 _lhsInested
_argsOnested = rule395 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule392 #-}
{-# LINE 265 "src-ag/PrintCode.ag" #-}
rule392 = \ ((_argsIpps) :: PP_Docs) ((_funcIpp) :: PP_Doc) ->
{-# LINE 265 "src-ag/PrintCode.ag" #-}
hv_sp (_funcIpp : _argsIpps)
{-# LINE 3693 "src-generated/PrintCode.hs" #-}
{-# INLINE rule393 #-}
rule393 = \ ((_funcIprec) :: Int) ->
_funcIprec
{-# INLINE rule394 #-}
rule394 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule395 #-}
rule395 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_TupleType #-}
sem_Type_TupleType :: T_Types -> T_Type
sem_Type_TupleType arg_tps_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_tpsX53 = Control.Monad.Identity.runIdentity (attach_T_Types (arg_tps_))
(T_Types_vOut52 _tpsIpps) = inv_Types_s53 _tpsX53 (T_Types_vIn52 _tpsOnested)
_lhsOprec :: Int
_lhsOprec = rule396 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule397 _lhsInested _tpsIpps
_tpsOnested = rule398 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule396 #-}
{-# LINE 272 "src-ag/PrintCode.ag" #-}
rule396 = \ (_ :: ()) ->
{-# LINE 272 "src-ag/PrintCode.ag" #-}
5
{-# LINE 3725 "src-generated/PrintCode.hs" #-}
{-# INLINE rule397 #-}
{-# LINE 273 "src-ag/PrintCode.ag" #-}
rule397 = \ ((_lhsInested) :: Bool) ((_tpsIpps) :: PP_Docs) ->
{-# LINE 273 "src-ag/PrintCode.ag" #-}
ppTuple _lhsInested _tpsIpps
{-# LINE 3731 "src-generated/PrintCode.hs" #-}
{-# INLINE rule398 #-}
rule398 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_UnboxedTupleType #-}
sem_Type_UnboxedTupleType :: T_Types -> T_Type
sem_Type_UnboxedTupleType arg_tps_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_tpsX53 = Control.Monad.Identity.runIdentity (attach_T_Types (arg_tps_))
(T_Types_vOut52 _tpsIpps) = inv_Types_s53 _tpsX53 (T_Types_vIn52 _tpsOnested)
_lhsOprec :: Int
_lhsOprec = rule399 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule400 _lhsInested _tpsIpps
_tpsOnested = rule401 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule399 #-}
{-# LINE 275 "src-ag/PrintCode.ag" #-}
rule399 = \ (_ :: ()) ->
{-# LINE 275 "src-ag/PrintCode.ag" #-}
5
{-# LINE 3757 "src-generated/PrintCode.hs" #-}
{-# INLINE rule400 #-}
{-# LINE 276 "src-ag/PrintCode.ag" #-}
rule400 = \ ((_lhsInested) :: Bool) ((_tpsIpps) :: PP_Docs) ->
{-# LINE 276 "src-ag/PrintCode.ag" #-}
ppUnboxedTuple _lhsInested _tpsIpps
{-# LINE 3763 "src-generated/PrintCode.hs" #-}
{-# INLINE rule401 #-}
rule401 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_List #-}
sem_Type_List :: T_Type -> T_Type
sem_Type_List arg_tp_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_tpX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_tp_))
(T_Type_vOut49 _tpIpp _tpIprec) = inv_Type_s50 _tpX50 (T_Type_vIn49 _tpOnested)
_lhsOprec :: Int
_lhsOprec = rule402 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule403 _tpIpp
_tpOnested = rule404 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule402 #-}
{-# LINE 278 "src-ag/PrintCode.ag" #-}
rule402 = \ (_ :: ()) ->
{-# LINE 278 "src-ag/PrintCode.ag" #-}
5
{-# LINE 3789 "src-generated/PrintCode.hs" #-}
{-# INLINE rule403 #-}
{-# LINE 279 "src-ag/PrintCode.ag" #-}
rule403 = \ ((_tpIpp) :: PP_Doc) ->
{-# LINE 279 "src-ag/PrintCode.ag" #-}
"[" >|< _tpIpp >|< "]"
{-# LINE 3795 "src-generated/PrintCode.hs" #-}
{-# INLINE rule404 #-}
rule404 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_SimpleType #-}
sem_Type_SimpleType :: (String) -> T_Type
sem_Type_SimpleType !arg_txt_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_lhsOprec :: Int
_lhsOprec = rule405 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule406 arg_txt_
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule405 #-}
{-# LINE 281 "src-ag/PrintCode.ag" #-}
rule405 = \ (_ :: ()) ->
{-# LINE 281 "src-ag/PrintCode.ag" #-}
5
{-# LINE 3818 "src-generated/PrintCode.hs" #-}
{-# INLINE rule406 #-}
{-# LINE 282 "src-ag/PrintCode.ag" #-}
rule406 = \ txt_ ->
{-# LINE 282 "src-ag/PrintCode.ag" #-}
if reallySimple txt_ then text txt_ else pp_parens (text txt_)
{-# LINE 3824 "src-generated/PrintCode.hs" #-}
{-# NOINLINE sem_Type_NontermType #-}
sem_Type_NontermType :: (String) -> ([String]) -> (Bool) -> T_Type
sem_Type_NontermType !arg_name_ !arg_params_ !arg_deforested_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_lhsOprec :: Int
_lhsOprec = rule407 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule408 _prefix arg_name_ arg_params_
_prefix = rule409 arg_deforested_
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule407 #-}
{-# LINE 284 "src-ag/PrintCode.ag" #-}
rule407 = \ (_ :: ()) ->
{-# LINE 284 "src-ag/PrintCode.ag" #-}
5
{-# LINE 3845 "src-generated/PrintCode.hs" #-}
{-# INLINE rule408 #-}
{-# LINE 285 "src-ag/PrintCode.ag" #-}
rule408 = \ _prefix name_ params_ ->
{-# LINE 285 "src-ag/PrintCode.ag" #-}
_prefix >|< text name_ >#< hv_sp params_
{-# LINE 3851 "src-generated/PrintCode.hs" #-}
{-# INLINE rule409 #-}
{-# LINE 286 "src-ag/PrintCode.ag" #-}
rule409 = \ deforested_ ->
{-# LINE 286 "src-ag/PrintCode.ag" #-}
if deforested_
then text "T_"
else empty
{-# LINE 3859 "src-generated/PrintCode.hs" #-}
{-# NOINLINE sem_Type_TMaybe #-}
sem_Type_TMaybe :: T_Type -> T_Type
sem_Type_TMaybe arg_tp_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_tpX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_tp_))
(T_Type_vOut49 _tpIpp _tpIprec) = inv_Type_s50 _tpX50 (T_Type_vIn49 _tpOnested)
_lhsOprec :: Int
_lhsOprec = rule410 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule411 _tpIpp
_tpOnested = rule412 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule410 #-}
{-# LINE 289 "src-ag/PrintCode.ag" #-}
rule410 = \ (_ :: ()) ->
{-# LINE 289 "src-ag/PrintCode.ag" #-}
5
{-# LINE 3882 "src-generated/PrintCode.hs" #-}
{-# INLINE rule411 #-}
{-# LINE 290 "src-ag/PrintCode.ag" #-}
rule411 = \ ((_tpIpp) :: PP_Doc) ->
{-# LINE 290 "src-ag/PrintCode.ag" #-}
text "Maybe" >#< pp_parens _tpIpp
{-# LINE 3888 "src-generated/PrintCode.hs" #-}
{-# INLINE rule412 #-}
rule412 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_TEither #-}
sem_Type_TEither :: T_Type -> T_Type -> T_Type
sem_Type_TEither arg_left_ arg_right_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_leftX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_left_))
_rightX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_right_))
(T_Type_vOut49 _leftIpp _leftIprec) = inv_Type_s50 _leftX50 (T_Type_vIn49 _leftOnested)
(T_Type_vOut49 _rightIpp _rightIprec) = inv_Type_s50 _rightX50 (T_Type_vIn49 _rightOnested)
_lhsOprec :: Int
_lhsOprec = rule413 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule414 _leftIpp _rightIpp
_leftOnested = rule415 _lhsInested
_rightOnested = rule416 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule413 #-}
{-# LINE 291 "src-ag/PrintCode.ag" #-}
rule413 = \ (_ :: ()) ->
{-# LINE 291 "src-ag/PrintCode.ag" #-}
5
{-# LINE 3917 "src-generated/PrintCode.hs" #-}
{-# INLINE rule414 #-}
{-# LINE 292 "src-ag/PrintCode.ag" #-}
rule414 = \ ((_leftIpp) :: PP_Doc) ((_rightIpp) :: PP_Doc) ->
{-# LINE 292 "src-ag/PrintCode.ag" #-}
text "Either" >#< pp_parens _leftIpp >#< pp_parens _rightIpp
{-# LINE 3923 "src-generated/PrintCode.hs" #-}
{-# INLINE rule415 #-}
rule415 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule416 #-}
rule416 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_TMap #-}
sem_Type_TMap :: T_Type -> T_Type -> T_Type
sem_Type_TMap arg_key_ arg_value_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_keyX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_key_))
_valueX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_value_))
(T_Type_vOut49 _keyIpp _keyIprec) = inv_Type_s50 _keyX50 (T_Type_vIn49 _keyOnested)
(T_Type_vOut49 _valueIpp _valueIprec) = inv_Type_s50 _valueX50 (T_Type_vIn49 _valueOnested)
_lhsOprec :: Int
_lhsOprec = rule417 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule418 _keyIpp _valueIpp
_keyOnested = rule419 _lhsInested
_valueOnested = rule420 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule417 #-}
{-# LINE 293 "src-ag/PrintCode.ag" #-}
rule417 = \ (_ :: ()) ->
{-# LINE 293 "src-ag/PrintCode.ag" #-}
5
{-# LINE 3955 "src-generated/PrintCode.hs" #-}
{-# INLINE rule418 #-}
{-# LINE 294 "src-ag/PrintCode.ag" #-}
rule418 = \ ((_keyIpp) :: PP_Doc) ((_valueIpp) :: PP_Doc) ->
{-# LINE 294 "src-ag/PrintCode.ag" #-}
text "Data.Map.Map" >#< pp_parens _keyIpp >#< pp_parens _valueIpp
{-# LINE 3961 "src-generated/PrintCode.hs" #-}
{-# INLINE rule419 #-}
rule419 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule420 #-}
rule420 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_TIntMap #-}
sem_Type_TIntMap :: T_Type -> T_Type
sem_Type_TIntMap arg_value_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_valueX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_value_))
(T_Type_vOut49 _valueIpp _valueIprec) = inv_Type_s50 _valueX50 (T_Type_vIn49 _valueOnested)
_lhsOprec :: Int
_lhsOprec = rule421 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule422 _valueIpp
_valueOnested = rule423 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule421 #-}
{-# LINE 295 "src-ag/PrintCode.ag" #-}
rule421 = \ (_ :: ()) ->
{-# LINE 295 "src-ag/PrintCode.ag" #-}
5
{-# LINE 3990 "src-generated/PrintCode.hs" #-}
{-# INLINE rule422 #-}
{-# LINE 296 "src-ag/PrintCode.ag" #-}
rule422 = \ ((_valueIpp) :: PP_Doc) ->
{-# LINE 296 "src-ag/PrintCode.ag" #-}
text "Data.IntMap.IntMap" >#< pp_parens _valueIpp
{-# LINE 3996 "src-generated/PrintCode.hs" #-}
{-# INLINE rule423 #-}
rule423 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_TSet #-}
sem_Type_TSet :: T_Type -> T_Type
sem_Type_TSet arg_tp_ = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_tpX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_tp_))
(T_Type_vOut49 _tpIpp _tpIprec) = inv_Type_s50 _tpX50 (T_Type_vIn49 _tpOnested)
_lhsOprec :: Int
_lhsOprec = rule424 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule425 _tpIpp
_tpOnested = rule426 _lhsInested
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule424 #-}
{-# LINE 297 "src-ag/PrintCode.ag" #-}
rule424 = \ (_ :: ()) ->
{-# LINE 297 "src-ag/PrintCode.ag" #-}
5
{-# LINE 4022 "src-generated/PrintCode.hs" #-}
{-# INLINE rule425 #-}
{-# LINE 298 "src-ag/PrintCode.ag" #-}
rule425 = \ ((_tpIpp) :: PP_Doc) ->
{-# LINE 298 "src-ag/PrintCode.ag" #-}
text "Data.Set.Set" >#< pp_parens _tpIpp
{-# LINE 4028 "src-generated/PrintCode.hs" #-}
{-# INLINE rule426 #-}
rule426 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Type_TIntSet #-}
sem_Type_TIntSet :: T_Type
sem_Type_TIntSet = T_Type (return st50) where
{-# NOINLINE st50 #-}
!st50 = let
v49 :: T_Type_v49
v49 = \ !(T_Type_vIn49 _lhsInested) -> ( let
_lhsOprec :: Int
_lhsOprec = rule427 ()
_lhsOpp :: PP_Doc
_lhsOpp = rule428 ()
!__result_ = T_Type_vOut49 _lhsOpp _lhsOprec
in __result_ )
in C_Type_s50 v49
{-# INLINE rule427 #-}
{-# LINE 299 "src-ag/PrintCode.ag" #-}
rule427 = \ (_ :: ()) ->
{-# LINE 299 "src-ag/PrintCode.ag" #-}
5
{-# LINE 4051 "src-generated/PrintCode.hs" #-}
{-# INLINE rule428 #-}
{-# LINE 300 "src-ag/PrintCode.ag" #-}
rule428 = \ (_ :: ()) ->
{-# LINE 300 "src-ag/PrintCode.ag" #-}
text "Data.IntSet.IntSet"
{-# LINE 4057 "src-generated/PrintCode.hs" #-}
-- Types -------------------------------------------------------
-- wrapper
data Inh_Types = Inh_Types { nested_Inh_Types :: !(Bool) }
data Syn_Types = Syn_Types { pps_Syn_Types :: !(PP_Docs) }
{-# INLINABLE wrap_Types #-}
wrap_Types :: T_Types -> Inh_Types -> (Syn_Types )
wrap_Types !(T_Types act) !(Inh_Types _lhsInested) =
Control.Monad.Identity.runIdentity (
do !sem <- act
let arg52 = T_Types_vIn52 _lhsInested
!(T_Types_vOut52 _lhsOpps) <- return (inv_Types_s53 sem arg52)
return (Syn_Types _lhsOpps)
)
-- cata
{-# NOINLINE sem_Types #-}
sem_Types :: Types -> T_Types
sem_Types list = Prelude.foldr sem_Types_Cons sem_Types_Nil (Prelude.map sem_Type list)
-- semantic domain
newtype T_Types = T_Types {
attach_T_Types :: Identity (T_Types_s53 )
}
newtype T_Types_s53 = C_Types_s53 {
inv_Types_s53 :: (T_Types_v52 )
}
data T_Types_s54 = C_Types_s54
type T_Types_v52 = (T_Types_vIn52 ) -> (T_Types_vOut52 )
data T_Types_vIn52 = T_Types_vIn52 (Bool)
data T_Types_vOut52 = T_Types_vOut52 (PP_Docs)
{-# NOINLINE sem_Types_Cons #-}
sem_Types_Cons :: T_Type -> T_Types -> T_Types
sem_Types_Cons arg_hd_ arg_tl_ = T_Types (return st53) where
{-# NOINLINE st53 #-}
!st53 = let
v52 :: T_Types_v52
v52 = \ !(T_Types_vIn52 _lhsInested) -> ( let
_hdX50 = Control.Monad.Identity.runIdentity (attach_T_Type (arg_hd_))
_tlX53 = Control.Monad.Identity.runIdentity (attach_T_Types (arg_tl_))
(T_Type_vOut49 _hdIpp _hdIprec) = inv_Type_s50 _hdX50 (T_Type_vIn49 _hdOnested)
(T_Types_vOut52 _tlIpps) = inv_Types_s53 _tlX53 (T_Types_vIn52 _tlOnested)
_lhsOpps :: PP_Docs
_lhsOpps = rule429 _hdIpp _tlIpps
_hdOnested = rule430 _lhsInested
_tlOnested = rule431 _lhsInested
!__result_ = T_Types_vOut52 _lhsOpps
in __result_ )
in C_Types_s53 v52
{-# INLINE rule429 #-}
{-# LINE 76 "src-ag/PrintCode.ag" #-}
rule429 = \ ((_hdIpp) :: PP_Doc) ((_tlIpps) :: PP_Docs) ->
{-# LINE 76 "src-ag/PrintCode.ag" #-}
_hdIpp : _tlIpps
{-# LINE 4112 "src-generated/PrintCode.hs" #-}
{-# INLINE rule430 #-}
rule430 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# INLINE rule431 #-}
rule431 = \ ((_lhsInested) :: Bool) ->
_lhsInested
{-# NOINLINE sem_Types_Nil #-}
sem_Types_Nil :: T_Types
sem_Types_Nil = T_Types (return st53) where
{-# NOINLINE st53 #-}
!st53 = let
v52 :: T_Types_v52
v52 = \ !(T_Types_vIn52 _lhsInested) -> ( let
_lhsOpps :: PP_Docs
_lhsOpps = rule432 ()
!__result_ = T_Types_vOut52 _lhsOpps
in __result_ )
in C_Types_s53 v52
{-# INLINE rule432 #-}
{-# LINE 77 "src-ag/PrintCode.ag" #-}
rule432 = \ (_ :: ()) ->
{-# LINE 77 "src-ag/PrintCode.ag" #-}
[]
{-# LINE 4136 "src-generated/PrintCode.hs" #-}
|