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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- $Id: ast_strict.html,v 6.15 2012-01-09 14:22:20 deraugla Exp $ -->
<!-- Copyright (c) INRIA 2007-2012 -->
<title>AST - strict</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<link rel="stylesheet" type="text/css" href="styles/base.css"
title="Normal" />
<style type="text/css">
.nodelist { margin-left: 2cm }
table { margin-left: 1cm }
td { padding-right: 2mm }
</style>
</head>
<body>
<div id="menu">
</div>
<div id="content">
<h1 class="top">Syntax tree - strict mode</h1>
<p>This chapter presents the Camlp5 syntax tree when Camlp5 is installed
in <em>strict</em> mode.</p>
<div id="tableofcontents">
</div>
<h2>Introduction</h2>
<p>This syntax tree is defined in the module "<tt>MLast</tt>" provided
by Camlp5. Each node corresponds to a syntactic entity of the
corresponding type.</p>
<p>For example, the syntax tree of the statement "<tt>if</tt>" can
be written:</p>
<pre>
MLast.ExIfe loc e1 e2 e3
</pre>
<p>where "<tt>loc</tt>" is the location in the source, and
"<tt>e1</tt>", "<tt>e2</tt>" and "<tt>e3</tt>" are
respectively the expression after the "<tt>if</tt>", the one after
the "<tt>then</tt>" and the one after the "<tt>else</tt>".</p>
<p>If a program needs to manipulate syntax trees, it can use the nodes
defined in the module "<tt>MLast</tt>". The programmer must know how
the concrete syntax is transformed into this abstract syntax.</p>
<p>A simpler solution is to use one of the quotation kits
"<tt>q_MLast.cmo</tt>" or "<tt>q_ast.cmo</tt>". Both propose
<a href="quot.html">quotations</a> which represent the abstract
syntax (the nodes of the module "<tt>MLast</tt>") into concrete
syntax with antiquotations to bind variables inside. The example
above can be written:</p>
<pre>
<:expr< if $e1$ then $e2$ else $e3$ >>
</pre>
<p>This representation is very interesting when one wants to
manipulate complicated syntax trees. Here is an example taken from
the Camlp5 sources themselves:</p>
<pre>
<:expr<
match try Some $f$ with [ Stream.Failure -> None ] with
[ Some $p$ -> $e$
| _ -> raise (Stream.Error $e2$) ]
>>
</pre>
<p>This example was in a position of a pattern. In abstract syntax, it
should have been written:</p>
<pre>
MLast.ExMat _
(MLast.ExTry _ (MLast.ExApp _ (MLast.ExUid _ (Ploc.VaVal "Some")) f)
(Ploc.VaVal
[(MLast.PaAcc _ (MLast.PaUid _ (Ploc.VaVal "Stream"))
(MLast.PaUid _ (Ploc.VaVal "Failure")),
Ploc.VaVal None, MLast.ExUid _ (Ploc.VaVal "None"))]))
(Ploc.VaVal
[(MLast.PaApp _ (MLast.PaUid _ (Ploc.VaVal "Some")) p,
Ploc.VaVal None, e);
(MLast.PaAny _, Ploc.VaVal None,
MLast.ExApp _ (MLast.ExLid _ (Ploc.VaVal "raise"))
(MLast.ExApp _
(MLast.ExAcc _ (MLast.ExUid _ (Ploc.VaVal "Stream"))
(MLast.ExUid _ (Ploc.VaVal "Error")))
e2))])
</pre>
<p>Which is less readable and much more complicated to build and
update.</p>
<p>Instead of thinking of "a syntax tree", the programmer can think of
"a piece of program".</p>
<h2>Location</h2>
<p>In all syntax tree nodes, the first parameter is the source
location of the node.</p>
<h3>In expressions</h3>
<p>When a quotation is in the context of an expression, the location
parameter is "<tt>loc</tt>" in the node and in all its possible
sub-nodes. Example: if we consider the quotation:</p>
<pre>
<:sig_item< value foo : int -> bool >>
</pre>
<p>This quotation, in a context of an expression, is equivalent
to:</p>
<pre>
MLast.SgVal loc (Ploc.VaVal "foo")
(MLast.TyArr loc (MLast.TyLid loc (Ploc.VaVal "int"))
(MLast.TyLid loc (Ploc.VaVal "bool")));
</pre>
<p>The name "<tt>loc</tt>" is predefined. However, it is possible to
change it, using the argument "<tt>-loc</tt>" of the Camlp5 shell
commands.</p>
<p>Consequently, if there is no variable "<tt>loc</tt>" defined in the
context of the quotation, or if it is not of the good type, a
semantic error occur in the OCaml compiler ("Unbound value
loc").</p>
<p>Note that in the <a href="grammars.html">extensible grammars</a>,
the variable "<tt>loc</tt>" is bound, in all semantic actions, to
the location of the rule.</p>
<p>If the created node has no location, the programmer can define a
variable named "<tt>loc</tt>" equal to "<tt>Ploc.dummy</tt>".</p>
<h3>In patterns</h3>
<p>When a quotation is in the context of a pattern, the location
parameter of all nodes and possible sub-nodes is set to the wildcard
("<tt>_</tt>"). The same example above:</p>
<pre>
<:sig_item< value foo : int -> bool >>
</pre>
<p>is equivalent, in a pattern, to:</p>
<pre>
MLast.SgVal _ (Ploc.VaVal "foo")
(MLast.TyArr _ (MLast.TyLid _ (Ploc.VaVal "int"))
(MLast.TyLid _ (Ploc.VaVal "bool")))
</pre>
<p>However, it is possible to generate a binding of the variable
"<tt>loc</tt>" on the top node by writing a "colon" before the
"less" in the quotation. The same example:</p>
<pre>
<:sig_item:< value foo : int -> bool >>
</pre>
<p>is equivalent to:</p>
<pre>
MLast.SgVal loc (Ploc.VaVal "foo")
(MLast.TyArr _ (MLast.TyLid _ (Ploc.VaVal "int"))
(MLast.TyLid _ (Ploc.VaVal "bool")))
</pre>
<h2>Antiquotations</h2>
<p>The expressions or patterns between dollar ($) characters are
called <em>antiquotations</em>. In opposition to quotations which
has its own syntax rules, the antiquotation is an area in the syntax
of the enclosing context (expression or pattern). See the chapter
about <a href="quot.html">quotations</a>.</p>
<p>If a quotation is in the context of an expression, the
antiquotation must be an expression. It could be any expression,
including function calls. Examples:</p>
<pre>
value f e el = <:expr< [$e$ :: $loop False el$] >>;
value patt_list p pl = <:patt< ( $list:[p::pl]$) >>;
</pre>
<p>If a quotation is in the context of an pattern, the antiquotation
is a pattern. Any pattern is possible, including the wildcard
character ("<tt>_</tt>"). Examples:</p>
<pre>
fun [ <:expr< $lid:op$ $_$ $_$ >> -> op ]
match p with [ <:patt< $_$ | $_$ >> -> Some p ]
</pre>
<h2>Two kinds of antiquotations</h2>
<h3>Preliminary remark</h3>
<p>In strict mode, we remark that most constructors defined of the
module "<tt>MLast</tt>" are of type "<tt>Ploc.vala</tt>". This type
is defined like this:</p>
<pre>
type vala 'a =
[ VaAnt of string
| VaVal of 'a ]
;
</pre>
<p>The type argument is the real type of the node. For example, a
value of type "<tt>bool</tt>" in transitional mode is frequently
represented by a value of type "<tt>Ploc.vala bool</tt>".</p>
<p>The first case of the type "<tt>vala</tt>" corresponds to an
antiquotation in the concrete syntax. The second case to a normal
syntax situation, without antiquotation.</p>
<p>Example: in the "let" statement, the fact that it is "rec" or not
is represented by a boolean. This boolean is, in the syntax tree,
encapsulated with the type "<tt>Ploc.vala</tt>". The syntax tree of
the two following lines:</p>
<pre>
let x = y in z
let rec x = y in z
</pre>
<p>start with, respectively:</p>
<pre>
MLast.ExLet loc (Ploc.VaVal False)
... (* and so on *)
</pre>
<p>and:</p>
<pre>
MLast.ExLet loc (Ploc.VaVal True)
... (* and so on *)
</pre>
<p>The case "<tt>Ploc.VaAnt s</tt>" is internally used by the parsers
and by the quotation kit "<tt>q_ast.cmo</tt>" to record
antiquotation strings representing the expression or the patterns
having this value. For example, in this "let" statement:</p>
<pre>
MLast.ExLet loc (Ploc.VaAnt s)
... (* and so on *)
</pre>
<p>The contents of this "<tt>s</tt>" is internally handled. For
information, it contains the antiquotation string (kind included)
together with representation of the location of the antiquotation
in the quotation. See the next section.</p>
<h3>Antiquoting</h3>
<p>To antiquotate the fact that the "let" is with or without rec (a flag
of type boolean), there are two ways.</p>
<h4>direct antiquoting</h4>
<p>The first way, hidding the type "<tt>Ploc.val</tt>", can be
written with the antiquotation kind "flag":</p>
<pre>
<:expr< let $flag:rf$ x = y in z >>
</pre>
<p>This corresponds to the syntax tree:</p>
<pre>
MLast.ExLet loc (Ploc.VaVal rf)
... (* and so on *)
</pre>
<p>And, therefore, the type of the variable "<tt>rf</tt>" is simply
"<tt>bool</tt>".</p>
<h4>general antiquoting</h4>
<p>The second way, introducing variables of type "<tt>Ploc.vala</tt>"
can be written a kind prefixed by "<tt>_</tt>", namely here
"<tt>_flag</tt>":</p>
<pre>
<:expr< let $_flag:rf$ x = y in z >>
</pre>
<p>In that case, it corresponds to the syntax tree:</p>
<pre>
MLast.ExLet loc rf
... (* and so on *)
</pre>
<p>And, therefore, the type of the variable "<tt>rf</tt>" is now
"<tt>Ploc.vala bool</tt>".</p>
<h3>Remarks</h3>
<p>The first form of antiquotation ensures the compatibility with
previous versions of Camlp5. The syntax tree is <em>not</em> the
same, but the bound variables keep the same type.</p>
<p>All antiquotations kinds have these two forms: one with some name
(e.g. "flag") and one with the same name prefixed by "a"
(e.g. "aflag").</p>
<h2>Nodes and Quotations</h2>
<p>This section describes all nodes defined in the module "MLast" of
Camlp5 and how to write them with quotations. Notice that, inside
quotations, one is not restricted to these elementary cases, but
any complex value can be used, resulting on possibly complex combined
nodes.</p>
<p>The quotation forms are described here
in <a href="revsynt.html">revised syntax</a> (like the rest of
this document). In reality, it depends on which quotation kit is
loaded:</p>
<ul>
<li>If "<tt>q_MLast.cmo</tt>" is used, the revised syntax is
mandatory: the quotations must be in that syntax without any
extension.</li>
<li>If "<tt>q_ast.cmo</tt>" is used, the quotation
syntax <em>must</em> be in the current user syntax with
all extensions added to compile the file.</li>
</ul>
<p>Last remark: in the following tables, the variables names give
information of their types. The details can be found in the
distributed source file "<tt>mLast.mli</tt>".</p>
<ul>
<li><tt>e</tt>, <tt>e1</tt>, <tt>e2</tt>, <tt>e3</tt>: expr</li>
<li><tt>p</tt>, <tt>p1</tt>, <tt>p2</tt>, <tt>p3</tt>: patt</li>
<li><tt>t</tt>, <tt>t1</tt>, <tt>t2</tt>, <tt>e3</tt>: ctyp</li>
<li><tt>s</tt>: string</li>
<li><tt>b</tt>: bool</li>
<li><tt>me</tt>, <tt>me1</tt>, <tt>me2</tt>: module_expr</li>
<li><tt>mt</tt>, <tt>mt1</tt>, <tt>mt2</tt>: module_type</li>
<li><tt>le</tt>: list expr</li>
<li><tt>lp</tt>: list patt</li>
<li><tt>lt</tt>: list ctyp</li>
<li><tt>ls</tt>: list string</li>
<li><tt>lse</tt>: list (string * expr)</li>
<li><tt>lpe</tt>: list (patt * expr)</li>
<li><tt>lpp</tt>: list (patt * patt)</li>
<li><tt>lpoee</tt>: list (patt * option expr * expr)</li>
<li><tt>op</tt>: option patt</li>
<li><tt>lcstri</tt>: list class_str_item</li>
<li><tt>lcsigi</tt>: list class_sig_item</li>
</ul>
<h3>expr</h3>
<p>Expressions of the language.</p>
<dl class="nodelist">
<dt>- access</dt>
<dd>
<tt style="color:blue"><:expr< $e1$ . $e2$ >></tt><br/>
<tt style="color:red">MLast.ExAcc loc e1 e2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- antiquotation <a href="#expr_1">(1)</a></dt>
<dd>
<tt style="color:blue"><:expr< $anti:e$ >></tt><br/>
<tt style="color:red">MLast.ExAnt loc e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- application</dt>
<dd>
<tt style="color:blue"><:expr< $e1$ $e2$ >></tt><br/>
<tt style="color:red">MLast.ExApp loc e1 e2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- array element</dt>
<dd>
<tt style="color:blue"><:expr< $e1$ .( $e2$ ) >></tt><br/>
<tt style="color:red">MLast.ExAre loc e1 e2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- array</dt>
<dd>
<tt style="color:blue"><:expr< [| $list:le$ |] >></tt><br/>
<tt style="color:red">MLast.ExArr loc (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< [| $_list:le$ |] >></tt><br/>
<tt style="color:red">MLast.ExArr loc le</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- assert</dt>
<dd>
<tt style="color:blue"><:expr< assert $e$ >></tt><br/>
<tt style="color:red">MLast.ExAsr loc e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- assignment</dt>
<dd>
<tt style="color:blue"><:expr< $e1$ := $e2$ >></tt><br/>
<tt style="color:red">MLast.ExAss loc e1 e2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- big array element</dt>
<dd>
<tt style="color:blue"><:expr< $e$ .{ $list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExBae loc e (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< $e$ .{ $_list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExBae loc e le</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- character constant</dt>
<dd>
<tt style="color:blue"><:expr< $chr:s$ >></tt><br/>
<tt style="color:red">MLast.ExChr loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:expr< $_chr:s$ >></tt><br/>
<tt style="color:red">MLast.ExChr loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- coercion</dt>
<dd>
<tt style="color:blue"><:expr< ($e$ :> $t2$) >></tt><br/>
<tt style="color:red">MLast.ExCoe loc e None t2</tt>
<br/><br/>
<tt style="color:blue"><:expr< ($e$ : $t1$ :> $t2$) >></tt><br/>
<tt style="color:red">MLast.ExCoe loc e (Some t1) t2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- float constant</dt>
<dd>
<tt style="color:blue"><:expr< $flo:s$ >></tt><br/>
<tt style="color:red">MLast.ExFlo loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:expr< $_flo:s$ >></tt><br/>
<tt style="color:red">MLast.ExFlo loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- for (increasing)</dt>
<dd>
<tt style="color:blue"><:expr< for $lid:s$ = $e1$ to $e2$ do { $list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc (Ploc.VaVal s) e1 e2 (Ploc.VaVal True) (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $lid:s$ = $e1$ to $e2$ do { $_list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc (Ploc.VaVal s) e1 e2 (Ploc.VaVal True) le</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- for (decreasing)</dt>
<dd>
<tt style="color:blue"><:expr< for $lid:s$ = $e1$ downto $e2$ do { $list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc (Ploc.VaVal s) e1 e2 (Ploc.VaVal False) (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $lid:s$ = $e1$ downto $e2$ do { $_list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc (Ploc.VaVal s) e1 e2 (Ploc.VaVal False) le</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- for</dt>
<dd>
<tt style="color:blue"><:expr< for $lid:s$ = $e1$ $to:b$ $e2$ do { $list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc (Ploc.VaVal s) e1 e2 (Ploc.VaVal b) (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $lid:s$ = $e1$ $to:b$ $e2$ do { $_list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc (Ploc.VaVal s) e1 e2 (Ploc.VaVal b) le</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $lid:s$ = $e1$ $_to:b$ $e2$ do { $list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc (Ploc.VaVal s) e1 e2 b (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $lid:s$ = $e1$ $_to:b$ $e2$ do { $_list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc (Ploc.VaVal s) e1 e2 b le</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $_lid:s$ = $e1$ to $e2$ do { $list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc s e1 e2 (Ploc.VaVal True) (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $_lid:s$ = $e1$ to $e2$ do { $_list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc s e1 e2 (Ploc.VaVal True) le</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $_lid:s$ = $e1$ downto $e2$ do { $list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc s e1 e2 (Ploc.VaVal False) (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $_lid:s$ = $e1$ downto $e2$ do { $_list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc s e1 e2 (Ploc.VaVal False) le</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $_lid:s$ = $e1$ $to:b$ $e2$ do { $list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc s e1 e2 (Ploc.VaVal b) (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $_lid:s$ = $e1$ $to:b$ $e2$ do { $_list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc s e1 e2 (Ploc.VaVal b) le</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $_lid:s$ = $e1$ $_to:b$ $e2$ do { $list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc s e1 e2 b (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< for $_lid:s$ = $e1$ $_to:b$ $e2$ do { $_list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExFor loc s e1 e2 b le</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- function</dt>
<dd>
<tt style="color:blue"><:expr< fun [ $list:lpee$ ] >></tt><br/>
<tt style="color:red">MLast.ExFun loc (Ploc.VaVal lpee)</tt>
<br/><br/>
<tt style="color:blue"><:expr< fun [ $_list:lpee$ ] >></tt><br/>
<tt style="color:red">MLast.ExFun loc lpee</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- if</dt>
<dd>
<tt style="color:blue"><:expr< if $e1$ then $e2$ else $e3$ >></tt><br/>
<tt style="color:red">MLast.ExIfe loc e1 e2 e3</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- integer constant</dt>
<dd>
<tt style="color:blue"><:expr< $int:s1$ >></tt><br/>
<tt style="color:red">MLast.ExInt loc (Ploc.VaVal s1) ""</tt>
<br/><br/>
<tt style="color:blue"><:expr< $_int:s1$ >></tt><br/>
<tt style="color:red">MLast.ExInt loc s1 ""</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- integer 32 bits</dt>
<dd>
<tt style="color:blue"><:expr< $int32:s1$ >></tt><br/>
<tt style="color:red">MLast.ExInt loc (Ploc.VaVal s1) "l"</tt>
<br/><br/>
<tt style="color:blue"><:expr< $_int32:s1$ >></tt><br/>
<tt style="color:red">MLast.ExInt loc s1 "l"</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- integer 64 bits</dt>
<dd>
<tt style="color:blue"><:expr< $int64:s1$ >></tt><br/>
<tt style="color:red">MLast.ExInt loc (Ploc.VaVal s1) "L"</tt>
<br/><br/>
<tt style="color:blue"><:expr< $_int64:s1$ >></tt><br/>
<tt style="color:red">MLast.ExInt loc s1 "L"</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- native integer</dt>
<dd>
<tt style="color:blue"><:expr< $nativeint:s1$ >></tt><br/>
<tt style="color:red">MLast.ExInt loc (Ploc.VaVal s1) "n"</tt>
<br/><br/>
<tt style="color:blue"><:expr< $_nativeint:s1$ >></tt><br/>
<tt style="color:red">MLast.ExInt loc s1 "n"</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- label</dt>
<dd>
<tt style="color:blue"><:expr< ~{$p$} >></tt><br/>
<tt style="color:red">MLast.ExLab loc p (Ploc.VaVal None)</tt>
<br/><br/>
<tt style="color:blue"><:expr< ~{$p$ = $e$} >></tt><br/>
<tt style="color:red">MLast.ExLab loc p (Ploc.VaVal (Some e))</tt>
<br/><br/>
<tt style="color:blue"><:expr< ~{$p$ $opt:oe$} >></tt><br/>
<tt style="color:red">MLast.ExLab loc p (Ploc.VaVal oe)</tt>
<br/><br/>
<tt style="color:blue"><:expr< ~{$p$ $_opt:oe$} >></tt><br/>
<tt style="color:red">MLast.ExLab loc p oe</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- lazy</dt>
<dd>
<tt style="color:blue"><:expr< lazy $e$ >></tt><br/>
<tt style="color:red">MLast.ExLaz loc e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- let rec</dt>
<dd>
<tt style="color:blue"><:expr< let rec $list:lpe$ in $e$ >></tt><br/>
<tt style="color:red">MLast.ExLet loc (Ploc.VaVal True) (Ploc.VaVal lpe) e</tt>
<br/><br/>
<tt style="color:blue"><:expr< let rec $_list:lpe$ in $e$ >></tt><br/>
<tt style="color:red">MLast.ExLet loc (Ploc.VaVal True) lpe e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- let not rec</dt>
<dd>
<tt style="color:blue"><:expr< let $list:lpe$ in $e$ >></tt><br/>
<tt style="color:red">MLast.ExLet loc (Ploc.VaVal False) (Ploc.VaVal lpe) e</tt>
<br/><br/>
<tt style="color:blue"><:expr< let $_list:lpe$ in $e$ >></tt><br/>
<tt style="color:red">MLast.ExLet loc (Ploc.VaVal False) lpe e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- let</dt>
<dd>
<tt style="color:blue"><:expr< let $flag:b$ $list:lpe$ in $e$ >></tt><br/>
<tt style="color:red">MLast.ExLet loc (Ploc.VaVal b) (Ploc.VaVal lpe) e</tt>
<br/><br/>
<tt style="color:blue"><:expr< let $flag:b$ $_list:lpe$ in $e$ >></tt><br/>
<tt style="color:red">MLast.ExLet loc (Ploc.VaVal b) lpe e</tt>
<br/><br/>
<tt style="color:blue"><:expr< let $_flag:b$ $list:lpe$ in $e$ >></tt><br/>
<tt style="color:red">MLast.ExLet loc b (Ploc.VaVal lpe) e</tt>
<br/><br/>
<tt style="color:blue"><:expr< let $_flag:b$ $_list:lpe$ in $e$ >></tt><br/>
<tt style="color:red">MLast.ExLet loc b lpe e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- lowercase identifier</dt>
<dd>
<tt style="color:blue"><:expr< $lid:s$ >></tt><br/>
<tt style="color:red">MLast.ExLid loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:expr< $_lid:s$ >></tt><br/>
<tt style="color:red">MLast.ExLid loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- let module</dt>
<dd>
<tt style="color:blue"><:expr< let module $uid:s$ = $me$ in $e$ >></tt><br/>
<tt style="color:red">MLast.ExLmd loc (Ploc.VaVal s) me e</tt>
<br/><br/>
<tt style="color:blue"><:expr< let module $_uid:s$ = $me$ in $e$ >></tt><br/>
<tt style="color:red">MLast.ExLmd loc s me e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- match</dt>
<dd>
<tt style="color:blue"><:expr< match $e$ with [ $list:lpee$ ] >></tt><br/>
<tt style="color:red">MLast.ExMat loc e (Ploc.VaVal lpee)</tt>
<br/><br/>
<tt style="color:blue"><:expr< match $e$ with [ $_list:lpee$ ] >></tt><br/>
<tt style="color:red">MLast.ExMat loc e lpee</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- new</dt>
<dd>
<tt style="color:blue"><:expr< new $list:ls$ >></tt><br/>
<tt style="color:red">MLast.ExNew loc (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:expr< new $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.ExNew loc ls</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- object expression</dt>
<dd>
<tt style="color:blue"><:expr< object $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.ExObj loc (Ploc.VaVal None) (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:expr< object $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.ExObj loc (Ploc.VaVal None) lcsi</tt>
<br/><br/>
<tt style="color:blue"><:expr< object ($p$) $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.ExObj loc (Ploc.VaVal (Some p)) (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:expr< object ($p$) $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.ExObj loc (Ploc.VaVal (Some p)) lcsi</tt>
<br/><br/>
<tt style="color:blue"><:expr< object $opt:op$ $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.ExObj loc (Ploc.VaVal op) (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:expr< object $opt:op$ $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.ExObj loc (Ploc.VaVal op) lcsi</tt>
<br/><br/>
<tt style="color:blue"><:expr< object $_opt:op$ $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.ExObj loc op (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:expr< object $_opt:op$ $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.ExObj loc op lcsi</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- option label</dt>
<dd>
<tt style="color:blue"><:expr< ?{$p$} >></tt><br/>
<tt style="color:red">MLast.ExOlb loc p (Ploc.VaVal None)</tt>
<br/><br/>
<tt style="color:blue"><:expr< ?{$p$ = $e$} >></tt><br/>
<tt style="color:red">MLast.ExOlb loc p (Ploc.VaVal (Some e))</tt>
<br/><br/>
<tt style="color:blue"><:expr< ?{$p$ $opt:oe$} >></tt><br/>
<tt style="color:red">MLast.ExOlb loc p (Ploc.VaVal oe)</tt>
<br/><br/>
<tt style="color:blue"><:expr< ?{$p$ $_opt:oe$} >></tt><br/>
<tt style="color:red">MLast.ExOlb loc p oe</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- override</dt>
<dd>
<tt style="color:blue"><:expr< {< $list:lse$ >} >></tt><br/>
<tt style="color:red">MLast.ExOvr loc (Ploc.VaVal lse)</tt>
<br/><br/>
<tt style="color:blue"><:expr< {< $_list:lse$ >} >></tt><br/>
<tt style="color:red">MLast.ExOvr loc lse</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module packing</dt>
<dd>
<tt style="color:blue"><:expr< (module $me$) >></tt><br/>
<tt style="color:red">MLast.ExPck loc me None</tt>
<br/><br/>
<tt style="color:blue"><:expr< (module $me$ : $mt$) >></tt><br/>
<tt style="color:red">MLast.ExPck loc me (Some mt)</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- record</dt>
<dd>
<tt style="color:blue"><:expr< {$list:lpe$} >></tt><br/>
<tt style="color:red">MLast.ExRec loc (Ploc.VaVal lpe) None</tt>
<br/><br/>
<tt style="color:blue"><:expr< {($e$) with $list:lpe$} >></tt><br/>
<tt style="color:red">MLast.ExRec loc (Ploc.VaVal lpe) (Some e)</tt>
<br/><br/>
<tt style="color:blue"><:expr< {$_list:lpe$} >></tt><br/>
<tt style="color:red">MLast.ExRec loc lpe None</tt>
<br/><br/>
<tt style="color:blue"><:expr< {($e$) with $_list:lpe$} >></tt><br/>
<tt style="color:red">MLast.ExRec loc lpe (Some e)</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- sequence</dt>
<dd>
<tt style="color:blue"><:expr< do { $list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExSeq loc (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< do { $_list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExSeq loc le</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- method call</dt>
<dd>
<tt style="color:blue"><:expr< $e$ # $s$ >></tt><br/>
<tt style="color:red">MLast.ExSnd loc e (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:expr< $e$ # $_:s$ >></tt><br/>
<tt style="color:red">MLast.ExSnd loc e s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- string element</dt>
<dd>
<tt style="color:blue"><:expr< $e1$ .[ $e2$ ] >></tt><br/>
<tt style="color:red">MLast.ExSte loc e1 e2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- string</dt>
<dd>
<tt style="color:blue"><:expr< $str:s$ >></tt><br/>
<tt style="color:red">MLast.ExStr loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:expr< $_str:s$ >></tt><br/>
<tt style="color:red">MLast.ExStr loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- try</dt>
<dd>
<tt style="color:blue"><:expr< try $e$ with [ $list:lpee$ ] >></tt><br/>
<tt style="color:red">MLast.ExTry loc e (Ploc.VaVal lpee)</tt>
<br/><br/>
<tt style="color:blue"><:expr< try $e$ with [ $_list:lpee$ ] >></tt><br/>
<tt style="color:red">MLast.ExTry loc e lpee</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- t-uple</dt>
<dd>
<tt style="color:blue"><:expr< ($list:le$) >></tt><br/>
<tt style="color:red">MLast.ExTup loc (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< ($_list:le$) >></tt><br/>
<tt style="color:red">MLast.ExTup loc le</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- type constraint</dt>
<dd>
<tt style="color:blue"><:expr< ($e$ : $t$) >></tt><br/>
<tt style="color:red">MLast.ExTyc loc e t</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- uppercase identifier</dt>
<dd>
<tt style="color:blue"><:expr< $uid:s$ >></tt><br/>
<tt style="color:red">MLast.ExUid loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:expr< $_uid:s$ >></tt><br/>
<tt style="color:red">MLast.ExUid loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- variant</dt>
<dd>
<tt style="color:blue"><:expr< ` $s$ >></tt><br/>
<tt style="color:red">MLast.ExVrn loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:expr< ` $_:s$ >></tt><br/>
<tt style="color:red">MLast.ExVrn loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- while</dt>
<dd>
<tt style="color:blue"><:expr< while $e$ do { $list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExWhi loc e (Ploc.VaVal le)</tt>
<br/><br/>
<tt style="color:blue"><:expr< while $e$ do { $_list:le$ } >></tt><br/>
<tt style="color:red">MLast.ExWhi loc e le</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- extra node <a href="#expr_2">(2)</a></dt>
<dd>
<tt style="color:blue">... no representation ...</tt><br/>
<tt style="color:red">MLast.ExXtr loc s oe</tt>
</dd>
</dl>
<div id="expr_1" style="margin: 5mm 0 0 1cm">(1)
<p>Node used in the quotation expanders to tells at conversion to
OCaml compiler syntax tree time, that all locations of the
sub-tree is correcty located in the quotation. By default, in
quotations, the locations of all generated nodes are the location
of the whole quotation. This node allows to make an exception to
this rule, since we know that the antiquotation belongs to the
universe of the enclosing program. See the chapter
about <a href="quot.html">quotations</a> and, in particular, its
section about antiquotations.</p>
</div>
<div id="expr_2" style="margin: 5mm 0 0 1cm">(2)
<p>Extra node internally used by the quotation kit
"<tt>q_ast.cmo</tt>" to build antiquotations of expressions.</p>
</div>
<h3>patt</h3>
<p>Patterns of the language.</p>
<dl class="nodelist">
<dt>- access</dt>
<dd>
<tt style="color:blue"><:patt< $p1$ . $p2$ >></tt><br/>
<tt style="color:red">MLast.PaAcc loc p1 p2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- alias</dt>
<dd>
<tt style="color:blue"><:patt< ($p1$ as $p2$) >></tt><br/>
<tt style="color:red">MLast.PaAli loc p1 p2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- antiquotation <a href="#patt_1">(1)</a></dt>
<dd>
<tt style="color:blue"><:patt< $anti:p$ >></tt><br/>
<tt style="color:red">MLast.PaAnt loc p</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- wildcard</dt>
<dd>
<tt style="color:blue"><:patt< _ >></tt><br/>
<tt style="color:red">MLast.PaAny loc</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- application</dt>
<dd>
<tt style="color:blue"><:patt< $p1$ $p2$ >></tt><br/>
<tt style="color:red">MLast.PaApp loc p1 p2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- array</dt>
<dd>
<tt style="color:blue"><:patt< [| $list:lp$ |] >></tt><br/>
<tt style="color:red">MLast.PaArr loc (Ploc.VaVal lp)</tt>
<br/><br/>
<tt style="color:blue"><:patt< [| $_list:lp$ |] >></tt><br/>
<tt style="color:red">MLast.PaArr loc lp</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- character</dt>
<dd>
<tt style="color:blue"><:patt< $chr:s$ >></tt><br/>
<tt style="color:red">MLast.PaChr loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:patt< $_chr:s$ >></tt><br/>
<tt style="color:red">MLast.PaChr loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- float</dt>
<dd>
<tt style="color:blue"><:patt< $flo:s$ >></tt><br/>
<tt style="color:red">MLast.PaFlo loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:patt< $_flo:s$ >></tt><br/>
<tt style="color:red">MLast.PaFlo loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- integer constant</dt>
<dd>
<tt style="color:blue"><:patt< $int:s1$ >></tt><br/>
<tt style="color:red">MLast.PaInt loc (Ploc.VaVal s1) ""</tt>
<br/><br/>
<tt style="color:blue"><:patt< $_int:s1$ >></tt><br/>
<tt style="color:red">MLast.PaInt loc s1 ""</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- integer 32 bits</dt>
<dd>
<tt style="color:blue"><:patt< $int32:s1$ >></tt><br/>
<tt style="color:red">MLast.PaInt loc (Ploc.VaVal s1) "l"</tt>
<br/><br/>
<tt style="color:blue"><:patt< $_int32:s1$ >></tt><br/>
<tt style="color:red">MLast.PaInt loc s1 "l"</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- integer 64 bits</dt>
<dd>
<tt style="color:blue"><:patt< $int64:s1$ >></tt><br/>
<tt style="color:red">MLast.PaInt loc (Ploc.VaVal s1) "L"</tt>
<br/><br/>
<tt style="color:blue"><:patt< $_int64:s1$ >></tt><br/>
<tt style="color:red">MLast.PaInt loc s1 "L"</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- native integer</dt>
<dd>
<tt style="color:blue"><:patt< $nativeint:s1$ >></tt><br/>
<tt style="color:red">MLast.PaInt loc (Ploc.VaVal s1) "n"</tt>
<br/><br/>
<tt style="color:blue"><:patt< $_nativeint:s1$ >></tt><br/>
<tt style="color:red">MLast.PaInt loc s1 "n"</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- label</dt>
<dd>
<tt style="color:blue"><:patt< ~{$p1$} >></tt><br/>
<tt style="color:red">MLast.PaLab loc p1 (Ploc.VaVal None)</tt>
<br/><br/>
<tt style="color:blue"><:patt< ~{$p1$ = $p2$} >></tt><br/>
<tt style="color:red">MLast.PaLab loc p1 (Ploc.VaVal (Some p2))</tt>
<br/><br/>
<tt style="color:blue"><:patt< ~{$p1$ $opt:op2$} >></tt><br/>
<tt style="color:red">MLast.PaLab loc p1 (Ploc.VaVal op2)</tt>
<br/><br/>
<tt style="color:blue"><:patt< ~{$p1$ $_opt:op2$} >></tt><br/>
<tt style="color:red">MLast.PaLab loc p1 op2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- lazy</dt>
<dd>
<tt style="color:blue"><:patt< lazy $p$ >></tt><br/>
<tt style="color:red">MLast.PaLaz loc p</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- lowercase identifier</dt>
<dd>
<tt style="color:blue"><:patt< $lid:s$ >></tt><br/>
<tt style="color:red">MLast.PaLid loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:patt< $_lid:s$ >></tt><br/>
<tt style="color:red">MLast.PaLid loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- new type</dt>
<dd>
<tt style="color:blue"><:patt< (type $lid:s$) >></tt><br/>
<tt style="color:red">MLast.PaNty loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:patt< (type $_lid:s$) >></tt><br/>
<tt style="color:red">MLast.PaNty loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- option label</dt>
<dd>
<tt style="color:blue"><:patt< ?{$p$} >></tt><br/>
<tt style="color:red">MLast.PaOlb loc p (Ploc.VaVal None)</tt>
<br/><br/>
<tt style="color:blue"><:patt< ?{$p$ = $e$} >></tt><br/>
<tt style="color:red">MLast.PaOlb loc p (Ploc.VaVal (Some e))</tt>
<br/><br/>
<tt style="color:blue"><:patt< ?{$p$ $opt:oe$} >></tt><br/>
<tt style="color:red">MLast.PaOlb loc p (Ploc.VaVal oe)</tt>
<br/><br/>
<tt style="color:blue"><:patt< ?{$p$ $_opt:oe$} >></tt><br/>
<tt style="color:red">MLast.PaOlb loc p oe</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- or</dt>
<dd>
<tt style="color:blue"><:patt< $p1$ | $p2$ >></tt><br/>
<tt style="color:red">MLast.PaOrp loc p1 p2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- record</dt>
<dd>
<tt style="color:blue"><:patt< { $list:lpp$ } >></tt><br/>
<tt style="color:red">MLast.PaRec loc (Ploc.VaVal lpp)</tt>
<br/><br/>
<tt style="color:blue"><:patt< { $_list:lpp$ } >></tt><br/>
<tt style="color:red">MLast.PaRec loc lpp</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- range</dt>
<dd>
<tt style="color:blue"><:patt< $p1$ .. $p2$ >></tt><br/>
<tt style="color:red">MLast.PaRng loc p1 p2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- string</dt>
<dd>
<tt style="color:blue"><:patt< $str:s$ >></tt><br/>
<tt style="color:red">MLast.PaStr loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:patt< $_str:s$ >></tt><br/>
<tt style="color:red">MLast.PaStr loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- t-uple</dt>
<dd>
<tt style="color:blue"><:patt< ($list:lp$) >></tt><br/>
<tt style="color:red">MLast.PaTup loc (Ploc.VaVal lp)</tt>
<br/><br/>
<tt style="color:blue"><:patt< ($_list:lp$) >></tt><br/>
<tt style="color:red">MLast.PaTup loc lp</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- type constraint</dt>
<dd>
<tt style="color:blue"><:patt< ($p$ : $t$) >></tt><br/>
<tt style="color:red">MLast.PaTyc loc p t</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- type pattern</dt>
<dd>
<tt style="color:blue"><:patt< # $list:ls$ >></tt><br/>
<tt style="color:red">MLast.PaTyp loc (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:patt< # $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.PaTyp loc ls</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- uppercase identifier</dt>
<dd>
<tt style="color:blue"><:patt< $uid:s$ >></tt><br/>
<tt style="color:red">MLast.PaUid loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:patt< $_uid:s$ >></tt><br/>
<tt style="color:red">MLast.PaUid loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module unpacking</dt>
<dd>
<tt style="color:blue"><:patt< (module $uid:s$) >></tt><br/>
<tt style="color:red">MLast.PaUnp loc (Ploc.VaVal s) None</tt>
<br/><br/>
<tt style="color:blue"><:patt< (module $uid:s$ : $mt$) >></tt><br/>
<tt style="color:red">MLast.PaUnp loc (Ploc.VaVal s) (Some mt)</tt>
<br/><br/>
<tt style="color:blue"><:patt< (module $_uid:s$) >></tt><br/>
<tt style="color:red">MLast.PaUnp loc s None</tt>
<br/><br/>
<tt style="color:blue"><:patt< (module $_uid:s$ : $mt$) >></tt><br/>
<tt style="color:red">MLast.PaUnp loc s (Some mt)</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- variant</dt>
<dd>
<tt style="color:blue"><:patt< ` $s$ >></tt><br/>
<tt style="color:red">MLast.PaVrn loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:patt< ` $_:s$ >></tt><br/>
<tt style="color:red">MLast.PaVrn loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- extra node <a href="#patt_2">(2)</a></dt>
<dd>
<tt style="color:blue">... no representation ...</tt><br/>
<tt style="color:red">MLast.PaXtr loc s op</tt>
</dd>
</dl>
<div id="patt_1" style="margin: 5mm 0 0 1cm">(1)
Node used to specify an antiquotation area, like for the
equivalent node in expressions. See above.
</div>
<div id="patt_2" style="margin: 5mm 0 0 1cm">(2)
Extra node internally used by the quotation kit "<tt>q_ast.cmo</tt>"
to build antiquotations of patterns.
</div>
<h3>ctyp</h3>
<p>Type expressions of the language.</p>
<dl class="nodelist">
<dt>- access</dt>
<dd>
<tt style="color:blue"><:ctyp< $t1$ . $t2$ >></tt><br/>
<tt style="color:red">MLast.TyAcc loc t1 t2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- alias</dt>
<dd>
<tt style="color:blue"><:ctyp< $t1$ as $t2$ >></tt><br/>
<tt style="color:red">MLast.TyAli loc t1 t2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- wildcard</dt>
<dd>
<tt style="color:blue"><:ctyp< _ >></tt><br/>
<tt style="color:red">MLast.TyAny loc</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- application</dt>
<dd>
<tt style="color:blue"><:ctyp< $t1$ $t2$ >></tt><br/>
<tt style="color:red">MLast.TyApp loc t1 t2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- arrow</dt>
<dd>
<tt style="color:blue"><:ctyp< $t1$ -> $t2$ >></tt><br/>
<tt style="color:red">MLast.TyArr loc t1 t2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- class</dt>
<dd>
<tt style="color:blue"><:ctyp< # $list:ls$ >></tt><br/>
<tt style="color:red">MLast.TyCls loc (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< # $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.TyCls loc ls</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- label</dt>
<dd>
<tt style="color:blue"><:ctyp< ~$s$: $t$ >></tt><br/>
<tt style="color:red">MLast.TyLab loc (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< ~$_:s$: $t$ >></tt><br/>
<tt style="color:red">MLast.TyLab loc s t</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- lowercase identifier</dt>
<dd>
<tt style="color:blue"><:ctyp< $lid:s$ >></tt><br/>
<tt style="color:red">MLast.TyLid loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< $_lid:s$ >></tt><br/>
<tt style="color:red">MLast.TyLid loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- manifest</dt>
<dd>
<tt style="color:blue"><:ctyp< $t1$ == private $t2$ >></tt><br/>
<tt style="color:red">MLast.TyMan loc t1 (Ploc.VaVal True) t2</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< $t1$ == $t2$ >></tt><br/>
<tt style="color:red">MLast.TyMan loc t1 (Ploc.VaVal False) t2</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< $t1$ == $priv:b$ $t2$ >></tt><br/>
<tt style="color:red">MLast.TyMan loc t1 (Ploc.VaVal b) t2</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< $t1$ == $_priv:b$ $t2$ >></tt><br/>
<tt style="color:red">MLast.TyMan loc t1 b t2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- object</dt>
<dd>
<tt style="color:blue"><:ctyp< < $list:lst$ .. > >></tt><br/>
<tt style="color:red">MLast.TyObj loc (Ploc.VaVal lst) (Ploc.VaVal True)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< < $list:lst$ > >></tt><br/>
<tt style="color:red">MLast.TyObj loc (Ploc.VaVal lst) (Ploc.VaVal False)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< < $list:lst$ $flag:b$ > >></tt><br/>
<tt style="color:red">MLast.TyObj loc (Ploc.VaVal lst) (Ploc.VaVal b)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< < $list:lst$ $_flag:b$ > >></tt><br/>
<tt style="color:red">MLast.TyObj loc (Ploc.VaVal lst) b</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< < $_list:lst$ .. > >></tt><br/>
<tt style="color:red">MLast.TyObj loc lst (Ploc.VaVal True)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< < $_list:lst$ > >></tt><br/>
<tt style="color:red">MLast.TyObj loc lst (Ploc.VaVal False)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< < $_list:lst$ $flag:b$ > >></tt><br/>
<tt style="color:red">MLast.TyObj loc lst (Ploc.VaVal b)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< < $_list:lst$ $_flag:b$ > >></tt><br/>
<tt style="color:red">MLast.TyObj loc lst b</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- option label</dt>
<dd>
<tt style="color:blue"><:ctyp< ?$s$: $t$ >></tt><br/>
<tt style="color:red">MLast.TyOlb loc (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< ?$_:s$: $t$ >></tt><br/>
<tt style="color:red">MLast.TyOlb loc s t</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- package</dt>
<dd>
<tt style="color:blue"><:ctyp< (module $mt$) >></tt><br/>
<tt style="color:red">MLast.TyPck loc mt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- polymorph</dt>
<dd>
<tt style="color:blue"><:ctyp< ! $list:ls$ . $t$ >></tt><br/>
<tt style="color:red">MLast.TyPol loc (Ploc.VaVal ls) t</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< ! $_list:ls$ . $t$ >></tt><br/>
<tt style="color:red">MLast.TyPol loc ls t</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- variable</dt>
<dd>
<tt style="color:blue"><:ctyp< '$s$ >></tt><br/>
<tt style="color:red">MLast.TyQuo loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< '$_:s$ >></tt><br/>
<tt style="color:red">MLast.TyQuo loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- record</dt>
<dd>
<tt style="color:blue"><:ctyp< { $list:llsbt$ } >></tt><br/>
<tt style="color:red">MLast.TyRec loc (Ploc.VaVal llsbt)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< { $_list:llsbt$ } >></tt><br/>
<tt style="color:red">MLast.TyRec loc llsbt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- sum</dt>
<dd>
<tt style="color:blue"><:ctyp< [ $list:llslt$ ] >></tt><br/>
<tt style="color:red">MLast.TySum loc (Ploc.VaVal llslt)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< [ $_list:llslt$ ] >></tt><br/>
<tt style="color:red">MLast.TySum loc llslt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- t-uple</dt>
<dd>
<tt style="color:blue"><:ctyp< ( $list:lt$ ) >></tt><br/>
<tt style="color:red">MLast.TyTup loc (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< ( $_list:lt$ ) >></tt><br/>
<tt style="color:red">MLast.TyTup loc lt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- uppercase identifier</dt>
<dd>
<tt style="color:blue"><:ctyp< $uid:s$ >></tt><br/>
<tt style="color:red">MLast.TyUid loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< $_uid:s$ >></tt><br/>
<tt style="color:red">MLast.TyUid loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- variant</dt>
<dd>
<tt style="color:blue"><:ctyp< [ = $list:lpv$ ] >></tt><br/>
<tt style="color:red">MLast.TyVrn loc (Ploc.VaVal lpv) None</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< [ > $list:lpv$ ] >></tt><br/>
<tt style="color:red">MLast.TyVrn loc (Ploc.VaVal lpv) (Some None)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< [ < $list:lpv$ ] >></tt><br/>
<tt style="color:red">MLast.TyVrn loc (Ploc.VaVal lpv) (Some (Some (Ploc.VaVal [])))</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< [ < $list:lpv$ > $list:ls$ ] >></tt><br/>
<tt style="color:red">MLast.TyVrn loc (Ploc.VaVal lpv) (Some (Some (Ploc.VaVal ls)))</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< [ < $list:lpv$ > $_list:ls$ ] >></tt><br/>
<tt style="color:red">MLast.TyVrn loc (Ploc.VaVal lpv) (Some (Some ls))</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< [ = $_list:lpv$ ] >></tt><br/>
<tt style="color:red">MLast.TyVrn loc lpv None</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< [ > $_list:lpv$ ] >></tt><br/>
<tt style="color:red">MLast.TyVrn loc lpv (Some None)</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< [ < $_list:lpv$ ] >></tt><br/>
<tt style="color:red">MLast.TyVrn loc lpv (Some (Some (Ploc.VaVal [])))</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< [ < $_list:lpv$ > $list:ls$ ] >></tt><br/>
<tt style="color:red">MLast.TyVrn loc lpv (Some (Some (Ploc.VaVal ls)))</tt>
<br/><br/>
<tt style="color:blue"><:ctyp< [ < $_list:lpv$ > $_list:ls$ ] >></tt><br/>
<tt style="color:red">MLast.TyVrn loc lpv (Some (Some ls))</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- extra node <a href="#ctyp_1">(1)</a></dt>
<dd>
<tt style="color:blue">... no representation ...</tt><br/>
<tt style="color:red">MLast.TyXtr loc s ot</tt>
</dd>
</dl>
<div id="ctyp_1" style="margin: 5mm 0 0 1cm">(1)
Extra node internally used by the quotation kit "<tt>q_ast.cmo</tt>"
to build antiquotations of types.
</div>
<h3>modules...</h3>
<h4>str_item</h4>
<p>Structure items, i.e. phrases in a ".ml" file or "struct"
elements.</p>
<dl class="nodelist">
<dt>- class declaration</dt>
<dd>
<tt style="color:blue"><:str_item< class $list:lcice$ >></tt><br/>
<tt style="color:red">MLast.StCls loc (Ploc.VaVal lcice)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< class $_list:lcice$ >></tt><br/>
<tt style="color:red">MLast.StCls loc lcice</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- class type declaration</dt>
<dd>
<tt style="color:blue"><:str_item< class type $list:lcict$ >></tt><br/>
<tt style="color:red">MLast.StClt loc (Ploc.VaVal lcict)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< class type $_list:lcict$ >></tt><br/>
<tt style="color:red">MLast.StClt loc lcict</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- declare</dt>
<dd>
<tt style="color:blue"><:str_item< declare $list:lsi$ end >></tt><br/>
<tt style="color:red">MLast.StDcl loc (Ploc.VaVal lsi)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< declare $_list:lsi$ end >></tt><br/>
<tt style="color:red">MLast.StDcl loc lsi</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- directive</dt>
<dd>
<tt style="color:blue"><:str_item< # $lid:s$ >></tt><br/>
<tt style="color:red">MLast.StDir loc (Ploc.VaVal s) (Ploc.VaVal None)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< # $lid:s$ $e$ >></tt><br/>
<tt style="color:red">MLast.StDir loc (Ploc.VaVal s) (Ploc.VaVal (Some e))</tt>
<br/><br/>
<tt style="color:blue"><:str_item< # $lid:s$ $opt:oe$ >></tt><br/>
<tt style="color:red">MLast.StDir loc (Ploc.VaVal s) (Ploc.VaVal oe)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< # $lid:s$ $_opt:oe$ >></tt><br/>
<tt style="color:red">MLast.StDir loc (Ploc.VaVal s) oe</tt>
<br/><br/>
<tt style="color:blue"><:str_item< # $_lid:s$ >></tt><br/>
<tt style="color:red">MLast.StDir loc s (Ploc.VaVal None)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< # $_lid:s$ $e$ >></tt><br/>
<tt style="color:red">MLast.StDir loc s (Ploc.VaVal (Some e))</tt>
<br/><br/>
<tt style="color:blue"><:str_item< # $_lid:s$ $opt:oe$ >></tt><br/>
<tt style="color:red">MLast.StDir loc s (Ploc.VaVal oe)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< # $_lid:s$ $_opt:oe$ >></tt><br/>
<tt style="color:red">MLast.StDir loc s oe</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- exception</dt>
<dd>
<tt style="color:blue"><:str_item< exception $uid:s$ >></tt><br/>
<tt style="color:red">MLast.StExc loc (Ploc.VaVal s) (Ploc.VaVal []) (Ploc.VaVal [])</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $uid:s$ of $list:lt$ >></tt><br/>
<tt style="color:red">MLast.StExc loc (Ploc.VaVal s) (Ploc.VaVal lt) (Ploc.VaVal [])</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $uid:s$ = $list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc (Ploc.VaVal s) (Ploc.VaVal []) (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $uid:s$ of $list:lt$ = $list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc (Ploc.VaVal s) (Ploc.VaVal lt) (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $uid:s$ = $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc (Ploc.VaVal s) (Ploc.VaVal []) ls</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $uid:s$ of $list:lt$ = $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc (Ploc.VaVal s) (Ploc.VaVal lt) ls</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $uid:s$ of $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.StExc loc (Ploc.VaVal s) lt (Ploc.VaVal [])</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $uid:s$ of $_list:lt$ = $list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc (Ploc.VaVal s) lt (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $uid:s$ of $_list:lt$ = $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc (Ploc.VaVal s) lt ls</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $_uid:s$ >></tt><br/>
<tt style="color:red">MLast.StExc loc s (Ploc.VaVal []) (Ploc.VaVal [])</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $_uid:s$ of $list:lt$ >></tt><br/>
<tt style="color:red">MLast.StExc loc s (Ploc.VaVal lt) (Ploc.VaVal [])</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $_uid:s$ = $list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc s (Ploc.VaVal []) (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $_uid:s$ of $list:lt$ = $list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc s (Ploc.VaVal lt) (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $_uid:s$ = $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc s (Ploc.VaVal []) ls</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $_uid:s$ of $list:lt$ = $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc s (Ploc.VaVal lt) ls</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $_uid:s$ of $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.StExc loc s lt (Ploc.VaVal [])</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $_uid:s$ of $_list:lt$ = $list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc s lt (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< exception $_uid:s$ of $_list:lt$ = $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExc loc s lt ls</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- expression</dt>
<dd>
<tt style="color:blue"><:str_item< $exp:e$ >></tt><br/>
<tt style="color:red">MLast.StExp loc e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- external</dt>
<dd>
<tt style="color:blue"><:str_item< external $s$ : $t$ = $list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExt loc (Ploc.VaVal s) t (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< external $s$ : $t$ = $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExt loc (Ploc.VaVal s) t ls</tt>
<br/><br/>
<tt style="color:blue"><:str_item< external $_:s$ : $t$ = $list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExt loc s t (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< external $_:s$ : $t$ = $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.StExt loc s t ls</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- include</dt>
<dd>
<tt style="color:blue"><:str_item< include $me$ >></tt><br/>
<tt style="color:red">MLast.StInc loc me</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module rec</dt>
<dd>
<tt style="color:blue"><:str_item< module rec $list:lsme$ >></tt><br/>
<tt style="color:red">MLast.StMod loc (Ploc.VaVal True) (Ploc.VaVal lsme)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< module rec $_list:lsme$ >></tt><br/>
<tt style="color:red">MLast.StMod loc (Ploc.VaVal True) lsme</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module non rec</dt>
<dd>
<tt style="color:blue"><:str_item< module $list:lsme$ >></tt><br/>
<tt style="color:red">MLast.StMod loc (Ploc.VaVal False) (Ploc.VaVal lsme)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< module $_list:lsme$ >></tt><br/>
<tt style="color:red">MLast.StMod loc (Ploc.VaVal False) lsme</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module</dt>
<dd>
<tt style="color:blue"><:str_item< module $flag:b$ $list:lsme$ >></tt><br/>
<tt style="color:red">MLast.StMod loc (Ploc.VaVal b) (Ploc.VaVal lsme)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< module $flag:b$ $_list:lsme$ >></tt><br/>
<tt style="color:red">MLast.StMod loc (Ploc.VaVal b) lsme</tt>
<br/><br/>
<tt style="color:blue"><:str_item< module $_flag:b$ $list:lsme$ >></tt><br/>
<tt style="color:red">MLast.StMod loc b (Ploc.VaVal lsme)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< module $_flag:b$ $_list:lsme$ >></tt><br/>
<tt style="color:red">MLast.StMod loc b lsme</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module type</dt>
<dd>
<tt style="color:blue"><:str_item< module type $s$ = $mt$ >></tt><br/>
<tt style="color:red">MLast.StMty loc (Ploc.VaVal s) mt</tt>
<br/><br/>
<tt style="color:blue"><:str_item< module type $_:s$ = $mt$ >></tt><br/>
<tt style="color:red">MLast.StMty loc s mt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- open</dt>
<dd>
<tt style="color:blue"><:str_item< open $list:ls$ >></tt><br/>
<tt style="color:red">MLast.StOpn loc (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< open $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.StOpn loc ls</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- type declaration</dt>
<dd>
<tt style="color:blue"><:str_item< type $list:ltd$ >></tt><br/>
<tt style="color:red">MLast.StTyp loc (Ploc.VaVal ltd)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< type $_list:ltd$ >></tt><br/>
<tt style="color:red">MLast.StTyp loc ltd</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- ... internal use ... <a href="#t_str_item_1">(1)</a></dt>
<dd>
<tt style="color:blue"><:str_item< # $str:s$ $list:lsil$ >></tt><br/>
<tt style="color:red">MLast.StUse loc (Ploc.VaVal s) (Ploc.VaVal lsil)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< # $str:s$ $_list:lsil$ >></tt><br/>
<tt style="color:red">MLast.StUse loc (Ploc.VaVal s) lsil</tt>
<br/><br/>
<tt style="color:blue"><:str_item< # $_str:s$ $list:lsil$ >></tt><br/>
<tt style="color:red">MLast.StUse loc s (Ploc.VaVal lsil)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< # $_str:s$ $_list:lsil$ >></tt><br/>
<tt style="color:red">MLast.StUse loc s lsil</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- value rec</dt>
<dd>
<tt style="color:blue"><:str_item< value rec $list:lpe$ >></tt><br/>
<tt style="color:red">MLast.StVal loc (Ploc.VaVal True) (Ploc.VaVal lpe)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< value rec $_list:lpe$ >></tt><br/>
<tt style="color:red">MLast.StVal loc (Ploc.VaVal True) lpe</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- value non rec</dt>
<dd>
<tt style="color:blue"><:str_item< value $list:lpe$ >></tt><br/>
<tt style="color:red">MLast.StVal loc (Ploc.VaVal False) (Ploc.VaVal lpe)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< value $_list:lpe$ >></tt><br/>
<tt style="color:red">MLast.StVal loc (Ploc.VaVal False) lpe</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- value</dt>
<dd>
<tt style="color:blue"><:str_item< value $flag:b$ $list:lpe$ >></tt><br/>
<tt style="color:red">MLast.StVal loc (Ploc.VaVal b) (Ploc.VaVal lpe)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< value $flag:b$ $_list:lpe$ >></tt><br/>
<tt style="color:red">MLast.StVal loc (Ploc.VaVal b) lpe</tt>
<br/><br/>
<tt style="color:blue"><:str_item< value $_flag:b$ $list:lpe$ >></tt><br/>
<tt style="color:red">MLast.StVal loc b (Ploc.VaVal lpe)</tt>
<br/><br/>
<tt style="color:blue"><:str_item< value $_flag:b$ $_list:lpe$ >></tt><br/>
<tt style="color:red">MLast.StVal loc b lpe</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- extra node <a href="#str_item_2">(2)</a></dt>
<dd>
<tt style="color:blue">... no representation ...</tt><br/>
<tt style="color:red">MLast.StXtr loc s ot</tt>
</dd>
</dl>
<div id="t_str_item_1" style="margin: 5mm 0 0 1cm">(1)
<p>Node internally used to specify a different file name applying to
the whole subtree. This is generated by the directive "use" and
used when converting to the OCaml syntax tree which needs the file
name in its location type.</p>
</div>
<div id="str_item_2" style="margin: 5mm 0 0 1cm">(2)
<p>Extra node internally used by the quotation kit
"<tt>q_ast.cmo</tt>" to build antiquotations of structure
items.</p>
</div>
<h4>sig_item</h4>
<p>Signature items, i.e. phrases in a ".mli" file or elements
inside "sig ... end".</p>
<dl class="nodelist">
<dt>- class</dt>
<dd>
<tt style="color:blue"><:sig_item< class $list:lcict$ >></tt><br/>
<tt style="color:red">MLast.SgCls loc (Ploc.VaVal lcict)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< class $_list:lcict$ >></tt><br/>
<tt style="color:red">MLast.SgCls loc lcict</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- class type</dt>
<dd>
<tt style="color:blue"><:sig_item< class type $list:lcict$ >></tt><br/>
<tt style="color:red">MLast.SgClt loc (Ploc.VaVal lcict)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< class type $_list:lcict$ >></tt><br/>
<tt style="color:red">MLast.SgClt loc lcict</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- declare</dt>
<dd>
<tt style="color:blue"><:sig_item< declare $list:lsi$ end >></tt><br/>
<tt style="color:red">MLast.SgDcl loc (Ploc.VaVal lsi)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< declare $_list:lsi$ end >></tt><br/>
<tt style="color:red">MLast.SgDcl loc lsi</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- directive</dt>
<dd>
<tt style="color:blue"><:sig_item< # $lid:s$ >></tt><br/>
<tt style="color:red">MLast.SgDir loc (Ploc.VaVal s) (Ploc.VaVal None)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< # $lid:s$ $e$ >></tt><br/>
<tt style="color:red">MLast.SgDir loc (Ploc.VaVal s) (Ploc.VaVal (Some e))</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< # $lid:s$ $opt:oe$ >></tt><br/>
<tt style="color:red">MLast.SgDir loc (Ploc.VaVal s) (Ploc.VaVal oe)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< # $lid:s$ $_opt:oe$ >></tt><br/>
<tt style="color:red">MLast.SgDir loc (Ploc.VaVal s) oe</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< # $_lid:s$ >></tt><br/>
<tt style="color:red">MLast.SgDir loc s (Ploc.VaVal None)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< # $_lid:s$ $e$ >></tt><br/>
<tt style="color:red">MLast.SgDir loc s (Ploc.VaVal (Some e))</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< # $_lid:s$ $opt:oe$ >></tt><br/>
<tt style="color:red">MLast.SgDir loc s (Ploc.VaVal oe)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< # $_lid:s$ $_opt:oe$ >></tt><br/>
<tt style="color:red">MLast.SgDir loc s oe</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- exception</dt>
<dd>
<tt style="color:blue"><:sig_item< exception $s$ >></tt><br/>
<tt style="color:red">MLast.SgExc loc (Ploc.VaVal s) (Ploc.VaVal [])</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< exception $s$ of $list:lt$ >></tt><br/>
<tt style="color:red">MLast.SgExc loc (Ploc.VaVal s) (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< exception $s$ of $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.SgExc loc (Ploc.VaVal s) lt</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< exception $_:s$ >></tt><br/>
<tt style="color:red">MLast.SgExc loc s (Ploc.VaVal [])</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< exception $_:s$ of $list:lt$ >></tt><br/>
<tt style="color:red">MLast.SgExc loc s (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< exception $_:s$ of $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.SgExc loc s lt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- external</dt>
<dd>
<tt style="color:blue"><:sig_item< external $s$ : $t$ = $list:ls$ >></tt><br/>
<tt style="color:red">MLast.SgExt loc (Ploc.VaVal s) t (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< external $s$ : $t$ = $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.SgExt loc (Ploc.VaVal s) t ls</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< external $_:s$ : $t$ = $list:ls$ >></tt><br/>
<tt style="color:red">MLast.SgExt loc s t (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< external $_:s$ : $t$ = $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.SgExt loc s t ls</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- include</dt>
<dd>
<tt style="color:blue"><:sig_item< include $mt$ >></tt><br/>
<tt style="color:red">MLast.SgInc loc mt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module rec</dt>
<dd>
<tt style="color:blue"><:sig_item< module rec $list:lsmt$ >></tt><br/>
<tt style="color:red">MLast.SgMod loc (Ploc.VaVal True) (Ploc.VaVal lsmt)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< module rec $_list:lsmt$ >></tt><br/>
<tt style="color:red">MLast.SgMod loc (Ploc.VaVal True) lsmt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module non rec</dt>
<dd>
<tt style="color:blue"><:sig_item< module $list:lsmt$ >></tt><br/>
<tt style="color:red">MLast.SgMod loc (Ploc.VaVal False) (Ploc.VaVal lsmt)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< module $_list:lsmt$ >></tt><br/>
<tt style="color:red">MLast.SgMod loc (Ploc.VaVal False) lsmt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module</dt>
<dd>
<tt style="color:blue"><:sig_item< module $flag:b$ $list:lsmt$ >></tt><br/>
<tt style="color:red">MLast.SgMod loc (Ploc.VaVal b) (Ploc.VaVal lsmt)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< module $flag:b$ $_list:lsmt$ >></tt><br/>
<tt style="color:red">MLast.SgMod loc (Ploc.VaVal b) lsmt</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< module $_flag:b$ $list:lsmt$ >></tt><br/>
<tt style="color:red">MLast.SgMod loc b (Ploc.VaVal lsmt)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< module $_flag:b$ $_list:lsmt$ >></tt><br/>
<tt style="color:red">MLast.SgMod loc b lsmt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module type</dt>
<dd>
<tt style="color:blue"><:sig_item< module type $s$ = $mt$ >></tt><br/>
<tt style="color:red">MLast.SgMty loc (Ploc.VaVal s) mt</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< module type $_:s$ = $mt$ >></tt><br/>
<tt style="color:red">MLast.SgMty loc s mt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- open</dt>
<dd>
<tt style="color:blue"><:sig_item< open $list:ls$ >></tt><br/>
<tt style="color:red">MLast.SgOpn loc (Ploc.VaVal ls)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< open $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.SgOpn loc ls</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- type declaration</dt>
<dd>
<tt style="color:blue"><:sig_item< type $list:ltd$ >></tt><br/>
<tt style="color:red">MLast.SgTyp loc (Ploc.VaVal ltd)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< type $_list:ltd$ >></tt><br/>
<tt style="color:red">MLast.SgTyp loc ltd</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- ... internal use ... <a href="#t_sig_item_1">(1)</a></dt>
<dd>
<tt style="color:blue"><:sig_item< # $str:s$ $list:lsil$ >></tt><br/>
<tt style="color:red">MLast.SgUse loc (Ploc.VaVal s) (Ploc.VaVal lsil)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< # $str:s$ $_list:lsil$ >></tt><br/>
<tt style="color:red">MLast.SgUse loc (Ploc.VaVal s) lsil</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< # $_str:s$ $list:lsil$ >></tt><br/>
<tt style="color:red">MLast.SgUse loc s (Ploc.VaVal lsil)</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< # $_str:s$ $_list:lsil$ >></tt><br/>
<tt style="color:red">MLast.SgUse loc s lsil</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- value</dt>
<dd>
<tt style="color:blue"><:sig_item< value $s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.SgVal loc (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:sig_item< value $_:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.SgVal loc s t</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- extra node <a href="#sig_item_2">(2)</a></dt>
<dd>
<tt style="color:blue">... no representation ...</tt><br/>
<tt style="color:red">MLast.SgXtr loc s ot</tt>
</dd>
</dl>
<div id="t_sig_item_1" style="margin: 5mm 0 0 1cm">(1)
Same remark as for "<tt>str_item</tt>" above.
</div>
<div id="sig_item_2" style="margin: 5mm 0 0 1cm">(2)
Extra node internally used by the quotation kit "<tt>q_ast.cmo</tt>"
to build antiquotations of signature items.
</div>
<h4>module_expr</h4>
<dl class="nodelist">
<dt>- access</dt>
<dd>
<tt style="color:blue"><:module_expr< $me1$ . $me2$ >></tt><br/>
<tt style="color:red">MLast.MeAcc loc me1 me2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- application</dt>
<dd>
<tt style="color:blue"><:module_expr< $me1$ $me2$ >></tt><br/>
<tt style="color:red">MLast.MeApp loc me1 me2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- functor</dt>
<dd>
<tt style="color:blue"><:module_expr< functor ($s$ : $mt$) -> $me$ >></tt><br/>
<tt style="color:red">MLast.MeFun loc (Ploc.VaVal s) mt me</tt>
<br/><br/>
<tt style="color:blue"><:module_expr< functor ($_:s$ : $mt$) -> $me$ >></tt><br/>
<tt style="color:red">MLast.MeFun loc s mt me</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- struct</dt>
<dd>
<tt style="color:blue"><:module_expr< struct $list:lsi$ end >></tt><br/>
<tt style="color:red">MLast.MeStr loc (Ploc.VaVal lsi)</tt>
<br/><br/>
<tt style="color:blue"><:module_expr< struct $_list:lsi$ end >></tt><br/>
<tt style="color:red">MLast.MeStr loc lsi</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module type constraint</dt>
<dd>
<tt style="color:blue"><:module_expr< ($me$ : $mt$) >></tt><br/>
<tt style="color:red">MLast.MeTyc loc me mt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- uppercase identifier</dt>
<dd>
<tt style="color:blue"><:module_expr< $uid:s$ >></tt><br/>
<tt style="color:red">MLast.MeUid loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:module_expr< $_uid:s$ >></tt><br/>
<tt style="color:red">MLast.MeUid loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- module unpacking</dt>
<dd>
<tt style="color:blue"><:module_expr< (value $e$) >></tt><br/>
<tt style="color:red">MLast.MeUnp loc e None</tt>
<br/><br/>
<tt style="color:blue"><:module_expr< (value $e$ : $mt$) >></tt><br/>
<tt style="color:red">MLast.MeUnp loc e (Some mt)</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- extra node <a href="#module_expr_1">(1)</a></dt>
<dd>
<tt style="color:blue">... no representation ...</tt><br/>
<tt style="color:red">MLast.MeXtr loc s ot</tt>
</dd>
</dl>
<div id="module_expr_1" style="margin: 5mm 0 0 1cm">(1)
Extra node internally used by the quotation kit "<tt>q_ast.cmo</tt>"
to build antiquotations of module expressions.
</div>
<h4>module_type</h4>
<dl class="nodelist">
<dt>- access</dt>
<dd>
<tt style="color:blue"><:module_type< $mt1$ . $mt2$ >></tt><br/>
<tt style="color:red">MLast.MtAcc loc mt1 mt2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- application</dt>
<dd>
<tt style="color:blue"><:module_type< $mt1$ $mt2$ >></tt><br/>
<tt style="color:red">MLast.MtApp loc mt1 mt2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- functor</dt>
<dd>
<tt style="color:blue"><:module_type< functor ($s$ : $mt1$) -> $mt2$ >></tt><br/>
<tt style="color:red">MLast.MtFun loc (Ploc.VaVal s) mt1 mt2</tt>
<br/><br/>
<tt style="color:blue"><:module_type< functor ($_:s$ : $mt1$) -> $mt2$ >></tt><br/>
<tt style="color:red">MLast.MtFun loc s mt1 mt2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- lowercase identifier</dt>
<dd>
<tt style="color:blue"><:module_type< $lid:s$ >></tt><br/>
<tt style="color:red">MLast.MtLid loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:module_type< $_lid:s$ >></tt><br/>
<tt style="color:red">MLast.MtLid loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- abstract</dt>
<dd>
<tt style="color:blue"><:module_type< ' $s$ >></tt><br/>
<tt style="color:red">MLast.MtQuo loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:module_type< ' $_:s$ >></tt><br/>
<tt style="color:red">MLast.MtQuo loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- signature</dt>
<dd>
<tt style="color:blue"><:module_type< sig $list:lsi$ end >></tt><br/>
<tt style="color:red">MLast.MtSig loc (Ploc.VaVal lsi)</tt>
<br/><br/>
<tt style="color:blue"><:module_type< sig $_list:lsi$ end >></tt><br/>
<tt style="color:red">MLast.MtSig loc lsi</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- of module expression</dt>
<dd>
<tt style="color:blue"><:module_type< module type of $me$ >></tt><br/>
<tt style="color:red">MLast.MtTyo loc me</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- uppercase identifier</dt>
<dd>
<tt style="color:blue"><:module_type< $uid:s$ >></tt><br/>
<tt style="color:red">MLast.MtUid loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:module_type< $_uid:s$ >></tt><br/>
<tt style="color:red">MLast.MtUid loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- with construction</dt>
<dd>
<tt style="color:blue"><:module_type< $mt$ with $list:lwc$ >></tt><br/>
<tt style="color:red">MLast.MtWit loc mt (Ploc.VaVal lwc)</tt>
<br/><br/>
<tt style="color:blue"><:module_type< $mt$ with $_list:lwc$ >></tt><br/>
<tt style="color:red">MLast.MtWit loc mt lwc</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- extra node <a href="#module_type_1">(1)</a></dt>
<dd>
<tt style="color:blue">... no representation ...</tt><br/>
<tt style="color:red">MLast.MtXtr loc s ot</tt>
</dd>
</dl>
<div id="module_type_1" style="margin: 5mm 0 0 1cm">(1)
Extra node internally used by the quotation kit "<tt>q_ast.cmo</tt>"
to build antiquotations of module types.
</div>
<h3>classes...</h3>
<h4>class_expr</h4>
<dl class="nodelist">
<dt>- application</dt>
<dd>
<tt style="color:blue"><:class_expr< $ce$ $e$ >></tt><br/>
<tt style="color:red">MLast.CeApp loc ce e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- constructor</dt>
<dd>
<tt style="color:blue"><:class_expr< [ $list:lt$ ] $list:ls$ >></tt><br/>
<tt style="color:red">MLast.CeCon loc (Ploc.VaVal ls) (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< [ $_list:lt$ ] $list:ls$ >></tt><br/>
<tt style="color:red">MLast.CeCon loc (Ploc.VaVal ls) lt</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< [ $list:lt$ ] $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.CeCon loc ls (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< [ $_list:lt$ ] $_list:ls$ >></tt><br/>
<tt style="color:red">MLast.CeCon loc ls lt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- function</dt>
<dd>
<tt style="color:blue"><:class_expr< fun $p$ -> $ce$ >></tt><br/>
<tt style="color:red">MLast.CeFun loc p ce</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- let rec</dt>
<dd>
<tt style="color:blue"><:class_expr< let rec $list:lpe$ in $ce$ >></tt><br/>
<tt style="color:red">MLast.CeLet loc (Ploc.VaVal True) (Ploc.VaVal lpe) ce</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< let rec $_list:lpe$ in $ce$ >></tt><br/>
<tt style="color:red">MLast.CeLet loc (Ploc.VaVal True) lpe ce</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- let non rec</dt>
<dd>
<tt style="color:blue"><:class_expr< let $list:lpe$ in $ce$ >></tt><br/>
<tt style="color:red">MLast.CeLet loc (Ploc.VaVal False) (Ploc.VaVal lpe) ce</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< let $_list:lpe$ in $ce$ >></tt><br/>
<tt style="color:red">MLast.CeLet loc (Ploc.VaVal False) lpe ce</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- let</dt>
<dd>
<tt style="color:blue"><:class_expr< let $flag:b$ $list:lpe$ in $ce$ >></tt><br/>
<tt style="color:red">MLast.CeLet loc (Ploc.VaVal b) (Ploc.VaVal lpe) ce</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< let $flag:b$ $_list:lpe$ in $ce$ >></tt><br/>
<tt style="color:red">MLast.CeLet loc (Ploc.VaVal b) lpe ce</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< let $_flag:b$ $list:lpe$ in $ce$ >></tt><br/>
<tt style="color:red">MLast.CeLet loc b (Ploc.VaVal lpe) ce</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< let $_flag:b$ $_list:lpe$ in $ce$ >></tt><br/>
<tt style="color:red">MLast.CeLet loc b lpe ce</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- object</dt>
<dd>
<tt style="color:blue"><:class_expr< object $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CeStr loc (Ploc.VaVal None) (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< object $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CeStr loc (Ploc.VaVal None) lcsi</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< object ($p$) $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CeStr loc (Ploc.VaVal (Some p)) (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< object ($p$) $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CeStr loc (Ploc.VaVal (Some p)) lcsi</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< object $opt:op$ $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CeStr loc (Ploc.VaVal op) (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< object $opt:op$ $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CeStr loc (Ploc.VaVal op) lcsi</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< object $_opt:op$ $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CeStr loc op (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:class_expr< object $_opt:op$ $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CeStr loc op lcsi</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- class type constraint</dt>
<dd>
<tt style="color:blue"><:class_expr< ($ce$ : $ct$) >></tt><br/>
<tt style="color:red">MLast.CeTyc loc ce ct</tt>
</dd>
</dl>
<h4>class_type</h4>
<dl class="nodelist">
<dt>- access</dt>
<dd>
<tt style="color:blue"><:class_type< $ct1$ . $ct2$ >></tt><br/>
<tt style="color:red">MLast.CtAcc loc ct1 ct2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- application</dt>
<dd>
<tt style="color:blue"><:class_type< $ct1$ $ct2$ >></tt><br/>
<tt style="color:red">MLast.CtApp loc ct1 ct2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- constructor</dt>
<dd>
<tt style="color:blue"><:class_type< $ct$ [ $list:lt$ ] >></tt><br/>
<tt style="color:red">MLast.CtCon loc ct (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:class_type< $ct$ [ $_list:lt$ ] >></tt><br/>
<tt style="color:red">MLast.CtCon loc ct lt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- arrow</dt>
<dd>
<tt style="color:blue"><:class_type< [ $t$ ] -> $ct$ >></tt><br/>
<tt style="color:red">MLast.CtFun loc t ct</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- identifier</dt>
<dd>
<tt style="color:blue"><:class_type< $id:s$ >></tt><br/>
<tt style="color:red">MLast.CtIde loc (Ploc.VaVal s)</tt>
<br/><br/>
<tt style="color:blue"><:class_type< $_id:s$ >></tt><br/>
<tt style="color:red">MLast.CtIde loc s</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- object</dt>
<dd>
<tt style="color:blue"><:class_type< object $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CtSig loc (Ploc.VaVal None) (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:class_type< object $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CtSig loc (Ploc.VaVal None) lcsi</tt>
<br/><br/>
<tt style="color:blue"><:class_type< object ($t$) $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CtSig loc (Ploc.VaVal (Some t)) (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:class_type< object ($t$) $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CtSig loc (Ploc.VaVal (Some t)) lcsi</tt>
<br/><br/>
<tt style="color:blue"><:class_type< object $opt:ot$ $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CtSig loc (Ploc.VaVal ot) (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:class_type< object $opt:ot$ $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CtSig loc (Ploc.VaVal ot) lcsi</tt>
<br/><br/>
<tt style="color:blue"><:class_type< object $_opt:ot$ $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CtSig loc ot (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:class_type< object $_opt:ot$ $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CtSig loc ot lcsi</tt>
</dd>
</dl>
<h4>class_str_item</h4>
<dl class="nodelist">
<dt>- type constraint</dt>
<dd>
<tt style="color:blue"><:class_str_item< type $t1$ = $t2$ >></tt><br/>
<tt style="color:red">MLast.CrCtr loc t1 t2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- declaration list</dt>
<dd>
<tt style="color:blue"><:class_str_item< declare $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CrDcl loc (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< declare $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CrDcl loc lcsi</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- inheritance</dt>
<dd>
<tt style="color:blue"><:class_str_item< inherit $ce$ >></tt><br/>
<tt style="color:red">MLast.CrInh loc ce (Ploc.VaVal None)</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< inherit $ce$ $opt:Some s$ >></tt><br/>
<tt style="color:red">MLast.CrInh loc ce (Ploc.VaVal (Some s))</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< inherit $ce$ $opt:os$ >></tt><br/>
<tt style="color:red">MLast.CrInh loc ce (Ploc.VaVal os)</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< inherit $ce$ $_opt:os$ >></tt><br/>
<tt style="color:red">MLast.CrInh loc ce os</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- initialization</dt>
<dd>
<tt style="color:blue"><:class_str_item< initializer $e$ >></tt><br/>
<tt style="color:red">MLast.CrIni loc e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- method</dt>
<dd>
<tt style="color:blue"><:class_str_item< method! private $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! private $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! private $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! private $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal True) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! private $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal True) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! private $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal True) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! private $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal True) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! private $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal True) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal False) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal False) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal False) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal False) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal False) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $priv:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $priv:b2$ $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $priv:b2$ $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $priv:b2$ $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal b2) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $priv:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal b2) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $priv:b2$ $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal b2) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $priv:b2$ $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal b2) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $priv:b2$ $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) (Ploc.VaVal b2) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_priv:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) b2 (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_priv:b2$ $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) b2 (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_priv:b2$ $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) b2 (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_priv:b2$ $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) b2 (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_priv:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) b2 s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_priv:b2$ $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) b2 s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_priv:b2$ $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) b2 s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method! $_priv:b2$ $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal True) b2 s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method private $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method private $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method private $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method private $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal True) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method private $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal True) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method private $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal True) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method private $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal True) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method private $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal True) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal False) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal False) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal False) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal False) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal False) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $priv:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $priv:b2$ $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $priv:b2$ $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $priv:b2$ $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal b2) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $priv:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal b2) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $priv:b2$ $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal b2) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $priv:b2$ $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal b2) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $priv:b2$ $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) (Ploc.VaVal b2) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_priv:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) b2 (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_priv:b2$ $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) b2 (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_priv:b2$ $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) b2 (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_priv:b2$ $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) b2 (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_priv:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) b2 s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_priv:b2$ $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) b2 s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_priv:b2$ $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) b2 s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_priv:b2$ $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal False) b2 s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ private $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ private $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ private $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ private $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal True) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ private $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal True) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ private $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal True) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ private $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal True) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ private $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal True) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal False) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal False) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal False) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal False) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal False) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $priv:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $priv:b2$ $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $priv:b2$ $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $priv:b2$ $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal b2) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $priv:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal b2) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $priv:b2$ $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal b2) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $priv:b2$ $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal b2) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $priv:b2$ $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) (Ploc.VaVal b2) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_priv:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) b2 (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_priv:b2$ $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) b2 (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_priv:b2$ $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) b2 (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_priv:b2$ $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) b2 (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_priv:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) b2 s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_priv:b2$ $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) b2 s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_priv:b2$ $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) b2 s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $!:b1$ $_priv:b2$ $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc (Ploc.VaVal b1) b2 s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ private $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ private $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ private $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal True) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ private $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal True) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ private $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal True) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ private $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal True) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ private $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal True) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ private $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal True) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal False) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal False) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal False) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal False) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal False) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal False) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $priv:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $priv:b2$ $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $priv:b2$ $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal b2) (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $priv:b2$ $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal b2) (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $priv:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal b2) s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $priv:b2$ $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal b2) s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $priv:b2$ $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal b2) s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $priv:b2$ $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 (Ploc.VaVal b2) s ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_priv:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 b2 (Ploc.VaVal s) (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_priv:b2$ $lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 b2 (Ploc.VaVal s) (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_priv:b2$ $lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 b2 (Ploc.VaVal s) (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_priv:b2$ $lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 b2 (Ploc.VaVal s) ot e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_priv:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 b2 s (Ploc.VaVal None) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_priv:b2$ $_lid:s$ : $t$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 b2 s (Ploc.VaVal (Some t)) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_priv:b2$ $_lid:s$ $opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 b2 s (Ploc.VaVal ot) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method $_!:b1$ $_priv:b2$ $_lid:s$ $_opt:ot$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrMth loc b1 b2 s ot e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- value</dt>
<dd>
<tt style="color:blue"><:class_str_item< value! mutable $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal True) (Ploc.VaVal True) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value! mutable $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal True) (Ploc.VaVal True) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value! $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal True) (Ploc.VaVal False) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value! $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal True) (Ploc.VaVal False) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value! $flag:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal True) (Ploc.VaVal b2) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value! $flag:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal True) (Ploc.VaVal b2) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value! $_flag:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal True) b2 (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value! $_flag:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal True) b2 s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value mutable $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal False) (Ploc.VaVal True) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value mutable $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal False) (Ploc.VaVal True) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal False) (Ploc.VaVal False) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal False) (Ploc.VaVal False) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $flag:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal False) (Ploc.VaVal b2) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $flag:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal False) (Ploc.VaVal b2) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $_flag:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal False) b2 (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $_flag:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal False) b2 s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $!:b1$ mutable $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal b1) (Ploc.VaVal True) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $!:b1$ mutable $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal b1) (Ploc.VaVal True) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $!:b1$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal b1) (Ploc.VaVal False) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $!:b1$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal b1) (Ploc.VaVal False) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $!:b1$ $flag:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal b1) (Ploc.VaVal b2) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $!:b1$ $flag:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal b1) (Ploc.VaVal b2) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $!:b1$ $_flag:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal b1) b2 (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $!:b1$ $_flag:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc (Ploc.VaVal b1) b2 s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $_!:b1$ mutable $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc b1 (Ploc.VaVal True) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $_!:b1$ mutable $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc b1 (Ploc.VaVal True) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $_!:b1$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc b1 (Ploc.VaVal False) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $_!:b1$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc b1 (Ploc.VaVal False) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $_!:b1$ $flag:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc b1 (Ploc.VaVal b2) (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $_!:b1$ $flag:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc b1 (Ploc.VaVal b2) s e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $_!:b1$ $_flag:b2$ $lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc b1 b2 (Ploc.VaVal s) e</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value $_!:b1$ $_flag:b2$ $_lid:s$ = $e$ >></tt><br/>
<tt style="color:red">MLast.CrVal loc b1 b2 s e</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- virtual value</dt>
<dd>
<tt style="color:blue"><:class_str_item< value virtual mutable $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVav loc (Ploc.VaVal True) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value virtual mutable $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVav loc (Ploc.VaVal True) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value virtual $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVav loc (Ploc.VaVal False) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value virtual $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVav loc (Ploc.VaVal False) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value virtual $flag:b$ $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVav loc (Ploc.VaVal b) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value virtual $flag:b$ $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVav loc (Ploc.VaVal b) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value virtual $_flag:b$ $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVav loc b (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< value virtual $_flag:b$ $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVav loc b s t</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- virtual method</dt>
<dd>
<tt style="color:blue"><:class_str_item< method virtual private $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVir loc (Ploc.VaVal True) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method virtual private $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVir loc (Ploc.VaVal True) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method virtual $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVir loc (Ploc.VaVal False) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method virtual $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVir loc (Ploc.VaVal False) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method virtual $flag:b$ $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVir loc (Ploc.VaVal b) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method virtual $flag:b$ $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVir loc (Ploc.VaVal b) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method virtual $_flag:b$ $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVir loc b (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_str_item< method virtual $_flag:b$ $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CrVir loc b s t</tt>
</dd>
</dl>
<h4>class_sig_item</h4>
<dl class="nodelist">
<dt>- type constraint</dt>
<dd>
<tt style="color:blue"><:class_sig_item< type $t1$ = $t2$ >></tt><br/>
<tt style="color:red">MLast.CgCtr loc t1 t2</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- declare</dt>
<dd>
<tt style="color:blue"><:class_sig_item< declare $list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CgDcl loc (Ploc.VaVal lcsi)</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< declare $_list:lcsi$ end >></tt><br/>
<tt style="color:red">MLast.CgDcl loc lcsi</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- inheritance</dt>
<dd>
<tt style="color:blue"><:class_sig_item< inherit $ct$ >></tt><br/>
<tt style="color:red">MLast.CgInh loc ct</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- method</dt>
<dd>
<tt style="color:blue"><:class_sig_item< method private $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgMth loc (Ploc.VaVal True) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method private $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgMth loc (Ploc.VaVal True) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgMth loc (Ploc.VaVal False) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgMth loc (Ploc.VaVal False) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method $flag:b$ $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgMth loc (Ploc.VaVal b) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method $flag:b$ $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgMth loc (Ploc.VaVal b) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method $_flag:b$ $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgMth loc b (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method $_flag:b$ $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgMth loc b s t</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- value</dt>
<dd>
<tt style="color:blue"><:class_sig_item< value mutable $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVal loc (Ploc.VaVal True) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< value mutable $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVal loc (Ploc.VaVal True) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< value $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVal loc (Ploc.VaVal False) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< value $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVal loc (Ploc.VaVal False) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< value $flag:b$ $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVal loc (Ploc.VaVal b) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< value $flag:b$ $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVal loc (Ploc.VaVal b) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< value $_flag:b$ $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVal loc b (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< value $_flag:b$ $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVal loc b s t</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- virtual method</dt>
<dd>
<tt style="color:blue"><:class_sig_item< method virtual private $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVir loc (Ploc.VaVal True) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method virtual private $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVir loc (Ploc.VaVal True) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method virtual $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVir loc (Ploc.VaVal False) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method virtual $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVir loc (Ploc.VaVal False) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method virtual $flag:b$ $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVir loc (Ploc.VaVal b) (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method virtual $flag:b$ $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVir loc (Ploc.VaVal b) s t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method virtual $_flag:b$ $lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVir loc b (Ploc.VaVal s) t</tt>
<br/><br/>
<tt style="color:blue"><:class_sig_item< method virtual $_flag:b$ $_lid:s$ : $t$ >></tt><br/>
<tt style="color:red">MLast.CgVir loc b s t</tt>
</dd>
</dl>
<h3>other</h3>
<h4>type_decl</h4>
<p>What is after 'type' or 'and' in a type declaration.</p>
<p>The type "<tt>type_decl</tt>" is a record type corresponding to
a type declaration. Its definition is:</p>
<pre>
type type_decl =
{ tdNam : (loc * Ploc.vaval string);
tdPrm : Ploc.vala (list type_var);
tdPrv : Ploc.vala bool;
tdDef : ctyp;
tdCon : Ploc.vala (list (ctyp * ctyp)) }
;
</pre>
<p>The field "<tt>tdNam</tt>" is the type identifier (together with its
location in the source).</p>
<p>The field "<tt>tdPrm</tt>" is the list of its possible parameters.</p>
<p>The field "<tt>tdPrv</tt>" tells if the type is private or not.</p>
<p>The field "<tt>tdDef</tt>" is the definition of the type.</p>
<p>The field "<tt>tdCon</tt>" is the possible list of type constraints.</p>
<dl>
<dt> </dt>
<dd>
<tt style="color:blue"><:type_decl< $tp:ls$ $list:ltv$ = private $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal True; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $list:ltv$ = private $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal True; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $list:ltv$ = $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal False; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $list:ltv$ = $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal False; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $list:ltv$ = $priv:b$ $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal b; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $list:ltv$ = $priv:b$ $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal b; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $list:ltv$ = $_priv:b$ $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = b; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $list:ltv$ = $_priv:b$ $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = b; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $_list:ltv$ = private $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal True; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $_list:ltv$ = private $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal True; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $_list:ltv$ = $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal False; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $_list:ltv$ = $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal False; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $_list:ltv$ = $priv:b$ $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal b; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $_list:ltv$ = $priv:b$ $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal b; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $_list:ltv$ = $_priv:b$ $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = ltv; MLast.tdPrv = b; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $tp:ls$ $_list:ltv$ = $_priv:b$ $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = Ploc.VaVal ls; MLast.tdPrm = ltv; MLast.tdPrv = b; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $list:ltv$ = private $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal True; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $list:ltv$ = private $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal True; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $list:ltv$ = $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal False; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $list:ltv$ = $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal False; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $list:ltv$ = $priv:b$ $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal b; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $list:ltv$ = $priv:b$ $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = Ploc.VaVal b; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $list:ltv$ = $_priv:b$ $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = b; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $list:ltv$ = $_priv:b$ $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = Ploc.VaVal ltv; MLast.tdPrv = b; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $_list:ltv$ = private $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal True; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $_list:ltv$ = private $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal True; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $_list:ltv$ = $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal False; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $_list:ltv$ = $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal False; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $_list:ltv$ = $priv:b$ $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal b; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $_list:ltv$ = $priv:b$ $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = ltv; MLast.tdPrv = Ploc.VaVal b; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $_list:ltv$ = $_priv:b$ $t$ $list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = ltv; MLast.tdPrv = b; MLast.tdDef = t; MLast.tdCon = Ploc.VaVal ltt}</tt>
<br/><br/>
<tt style="color:blue"><:type_decl< $_tp:ls$ $_list:ltv$ = $_priv:b$ $t$ $_list:ltt$ >></tt><br/>
<tt style="color:red">{MLast.tdNam = ls; MLast.tdPrm = ltv; MLast.tdPrv = b; MLast.tdDef = t; MLast.tdCon = ltt}</tt>
</dd>
</dl>
<h4>with_constr</h4>
<p>"With" possibly following a module type.</p>
<dl class="nodelist">
<dt>- with module</dt>
<dd>
<tt style="color:blue"><:with_constr< module $list:ls$ = $me$ >></tt><br/>
<tt style="color:red">MLast.WcMod loc (Ploc.VaVal ls) me</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< module $_list:ls$ = $me$ >></tt><br/>
<tt style="color:red">MLast.WcMod loc ls me</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- with module substitution</dt>
<dd>
<tt style="color:blue"><:with_constr< module $list:ls$ := $me$ >></tt><br/>
<tt style="color:red">MLast.WcMos loc (Ploc.VaVal ls) me</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< module $_list:ls$ := $me$ >></tt><br/>
<tt style="color:red">MLast.WcMos loc ls me</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- with type</dt>
<dd>
<tt style="color:blue"><:with_constr< type $list:ls$ $list:ltv$ = private $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc (Ploc.VaVal ls) (Ploc.VaVal ltv) (Ploc.VaVal True) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $list:ls$ $list:ltv$ = $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc (Ploc.VaVal ls) (Ploc.VaVal ltv) (Ploc.VaVal False) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $list:ls$ $list:ltv$ = $flag:b$ $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc (Ploc.VaVal ls) (Ploc.VaVal ltv) (Ploc.VaVal b) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $list:ls$ $list:ltv$ = $_flag:b$ $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc (Ploc.VaVal ls) (Ploc.VaVal ltv) b t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $list:ls$ $_list:ltv$ = private $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc (Ploc.VaVal ls) ltv (Ploc.VaVal True) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $list:ls$ $_list:ltv$ = $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc (Ploc.VaVal ls) ltv (Ploc.VaVal False) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $list:ls$ $_list:ltv$ = $flag:b$ $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc (Ploc.VaVal ls) ltv (Ploc.VaVal b) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $list:ls$ $_list:ltv$ = $_flag:b$ $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc (Ploc.VaVal ls) ltv b t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $_list:ls$ $list:ltv$ = private $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc ls (Ploc.VaVal ltv) (Ploc.VaVal True) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $_list:ls$ $list:ltv$ = $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc ls (Ploc.VaVal ltv) (Ploc.VaVal False) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $_list:ls$ $list:ltv$ = $flag:b$ $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc ls (Ploc.VaVal ltv) (Ploc.VaVal b) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $_list:ls$ $list:ltv$ = $_flag:b$ $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc ls (Ploc.VaVal ltv) b t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $_list:ls$ $_list:ltv$ = private $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc ls ltv (Ploc.VaVal True) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $_list:ls$ $_list:ltv$ = $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc ls ltv (Ploc.VaVal False) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $_list:ls$ $_list:ltv$ = $flag:b$ $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc ls ltv (Ploc.VaVal b) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $_list:ls$ $_list:ltv$ = $_flag:b$ $t$ >></tt><br/>
<tt style="color:red">MLast.WcTyp loc ls ltv b t</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- with type substitution</dt>
<dd>
<tt style="color:blue"><:with_constr< type $list:ls$ $list:ltv$ := $t$ >></tt><br/>
<tt style="color:red">MLast.WcTys loc (Ploc.VaVal ls) (Ploc.VaVal ltv) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $list:ls$ $_list:ltv$ := $t$ >></tt><br/>
<tt style="color:red">MLast.WcTys loc (Ploc.VaVal ls) ltv t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $_list:ls$ $list:ltv$ := $t$ >></tt><br/>
<tt style="color:red">MLast.WcTys loc ls (Ploc.VaVal ltv) t</tt>
<br/><br/>
<tt style="color:blue"><:with_constr< type $_list:ls$ $_list:ltv$ := $t$ >></tt><br/>
<tt style="color:red">MLast.WcTys loc ls ltv t</tt>
</dd>
</dl>
<h4>poly_variant</h4>
<p>Polymorphic variants.</p>
<dl class="nodelist">
<dt>- constructor</dt>
<dd>
<tt style="color:blue"><:poly_variant< `$s$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc (Ploc.VaVal s) (Ploc.VaVal True) (Ploc.VaVal [])</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$s$ of & $list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc (Ploc.VaVal s) (Ploc.VaVal True) (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$s$ of & $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc (Ploc.VaVal s) (Ploc.VaVal True) lt</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$s$ of $list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc (Ploc.VaVal s) (Ploc.VaVal False) (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$s$ of $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc (Ploc.VaVal s) (Ploc.VaVal False) lt</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$s$ of $flag:b$ $list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc (Ploc.VaVal s) (Ploc.VaVal b) (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$s$ of $flag:b$ $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc (Ploc.VaVal s) (Ploc.VaVal b) lt</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$s$ of $_flag:b$ $list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc (Ploc.VaVal s) b (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$s$ of $_flag:b$ $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc (Ploc.VaVal s) b lt</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$_:s$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc s (Ploc.VaVal True) (Ploc.VaVal [])</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$_:s$ of & $list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc s (Ploc.VaVal True) (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$_:s$ of & $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc s (Ploc.VaVal True) lt</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$_:s$ of $list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc s (Ploc.VaVal False) (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$_:s$ of $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc s (Ploc.VaVal False) lt</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$_:s$ of $flag:b$ $list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc s (Ploc.VaVal b) (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$_:s$ of $flag:b$ $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc s (Ploc.VaVal b) lt</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$_:s$ of $_flag:b$ $list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc s b (Ploc.VaVal lt)</tt>
<br/><br/>
<tt style="color:blue"><:poly_variant< `$_:s$ of $_flag:b$ $_list:lt$ >></tt><br/>
<tt style="color:red">MLast.PvTag loc s b lt</tt>
</dd>
</dl>
<dl class="nodelist">
<dt>- type</dt>
<dd>
<tt style="color:blue"><:poly_variant< $t$ >></tt><br/>
<tt style="color:red">MLast.PvInh loc t</tt>
</dd>
</dl>
<h2>Nodes without quotations</h2>
<p>Some types defined in the AST tree module "<tt>MLast</tt>" don't
have an associated quotation. They are:</p>
<ul>
<li><tt>type_var</tt></li>
<li><tt>class_infos</tt></li>
</ul>
<h3>type_var</h3>
<p>The type "<tt>type_var</tt>" is defined as:</p>
<pre>
type type_var = (Ploc.vala string * (bool * bool));
</pre>
<p>The first boolean is "<tt>True</tt>" if the type variable is
prefixed by "<tt>+</tt>" ("plus" sign). The second boolean is
"<tt>True</tt>" if the type variable is prefixed by "<tt>-</tt>"
("minus" sign).</p>
<h3>class_infos</h3>
<p>The type "<tt>class_infos</tt>" is a record type parametrized with
a type variable. It is common to:</p>
<ul>
<li>the "class declaration" ("<tt>class ...</tt>" as structure item),
the type variable being "<tt>class_expr</tt>",</li>
<li>the "class description" ("<tt>class ...</tt>" as signature item),
the type variable being "<tt>class_type</tt>",</li>
<li>the "class type declaration" ("<tt>class type ...</tt>"), the
type variable being "<tt>class_type</tt>".</li>
</ul>
<p>It is defined as:</p>
<pre>
type class_infos 'a =
{ ciLoc : loc;
ciVir : Ploc.vala bool;
ciPrm : (loc * Ploc.vala (list type_var));
ciNam : Ploc.vala string;
ciExp : 'a }
;
</pre>
<p>The field "<tt>ciLoc</tt>" is the location of the whole definition.</p>
<p>The field "<tt>ciVir</tt>" tells whether the type is virtual or not.</p>
<p>The field "<tt>ciPrm</tt>" is the list of its possible parameters.</p>
<p>The field "<tt>ciNam</tt>" is the class identifier.</p>
<p>The field "<tt>ciExp</tt>" is the class definition, depending of its
kind.</p>
<div class="trailer">
</div>
</div>
</body>
</html>
|