package lrgrep
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Analyse the stack of a Menhir-generated LR parser using regular expressions
Install
dune-project
Dependency
Authors
Maintainers
Sources
lrgrep-0.3.tbz
sha256=84a1874d0c063da371e19c84243aac7c40bfcb9aaf204251e0eb0d1f077f2cde
sha512=5a16ff42a196fd741bc64a1bdd45b4dca0098633e73aa665829a44625ec15382891c3643fa210dbe3704336eab095d4024e093e37ae5313810f6754de6119d55
doc/src/front/parser.ml.html
Source file parser.ml
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 2705module MenhirBasics = struct exception Error let _eRR = fun _s -> raise Error type token = | UNREACHABLE | UNDERSCORE | STAR | SLASH | SHORTEST | SEMI | RULE | RPAREN | RBRACKET | QUESTION | PARTIAL | PARSE | LPAREN | LBRACKET | IDENT of # 23 "src/front/parser.mly" (string) # 29 "src/front/parser.ml" | ERROR | EQUAL | EOF | DOT | COMMA | COLON | BAR | AT | ACTION of # 24 "src/front/parser.mly" (Syntax.ocaml_code) # 42 "src/front/parser.ml" end include MenhirBasics # 18 "src/front/parser.mly" open Syntax let mk_re desc position = {desc; position} # 54 "src/front/parser.ml" type ('s, 'r) _menhir_state = | MenhirState000 : ('s, _menhir_box_parse_filter) _menhir_state (** State 000. Stack shape : <empty>. Start symbol: parse_filter. *) | MenhirState009 : (('s, _menhir_box_parse_filter) _menhir_cell1_wild_symbol, _menhir_box_parse_filter) _menhir_state (** State 009. Stack shape : wild_symbol. Start symbol: parse_filter. *) | MenhirState012 : (('s, 'r) _menhir_cell1_positioned_filter_symbol_, 'r) _menhir_state (** State 012. Stack shape : positioned(filter_symbol). Start symbol: <undetermined>. *) | MenhirState015 : (('s, 'r) _menhir_cell1_ident _menhir_cell0_LPAREN, 'r) _menhir_state (** State 015. Stack shape : ident LPAREN. Start symbol: <undetermined>. *) | MenhirState017 : (('s, 'r) _menhir_cell1_symbol, 'r) _menhir_state (** State 017. Stack shape : symbol. Start symbol: <undetermined>. *) | MenhirState028 : ('s, _menhir_box_parse_lexer_definition) _menhir_state (** State 028. Stack shape : <empty>. Start symbol: parse_lexer_definition. *) | MenhirState031 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_header, _menhir_box_parse_lexer_definition) _menhir_state (** State 031. Stack shape : header. Start symbol: parse_lexer_definition. *) | MenhirState032 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_RULE, _menhir_box_parse_lexer_definition) _menhir_state (** State 032. Stack shape : RULE. Start symbol: parse_lexer_definition. *) | MenhirState033 : ((('s, _menhir_box_parse_lexer_definition) _menhir_cell1_RULE, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_state (** State 033. Stack shape : RULE ident. Start symbol: parse_lexer_definition. *) | MenhirState039 : (((('s, _menhir_box_parse_lexer_definition) _menhir_cell1_RULE, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_cell1_list_ident_ _menhir_cell0_PARSE _menhir_cell0_positioned_boption_ERROR__ _menhir_cell0_LPAREN, _menhir_box_parse_lexer_definition) _menhir_state (** State 039. Stack shape : RULE ident list(ident) PARSE positioned(boption(ERROR)) LPAREN. Start symbol: parse_lexer_definition. *) | MenhirState043 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_positioned_ident_, _menhir_box_parse_lexer_definition) _menhir_state (** State 043. Stack shape : positioned(ident). Start symbol: parse_lexer_definition. *) | MenhirState046 : (((('s, _menhir_box_parse_lexer_definition) _menhir_cell1_RULE, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_cell1_list_ident_ _menhir_cell0_PARSE _menhir_cell0_positioned_boption_ERROR__ _menhir_cell0_startsymbols, _menhir_box_parse_lexer_definition) _menhir_state (** State 046. Stack shape : RULE ident list(ident) PARSE positioned(boption(ERROR)) startsymbols. Start symbol: parse_lexer_definition. *) | MenhirState048 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_SHORTEST _menhir_cell0_LBRACKET, _menhir_box_parse_lexer_definition) _menhir_state (** State 048. Stack shape : SHORTEST LBRACKET. Start symbol: parse_lexer_definition. *) | MenhirState049 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_BAR, _menhir_box_parse_lexer_definition) _menhir_state (** State 049. Stack shape : BAR. Start symbol: parse_lexer_definition. *) | MenhirState051 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_SLASH, _menhir_box_parse_lexer_definition) _menhir_state (** State 051. Stack shape : SLASH. Start symbol: parse_lexer_definition. *) | MenhirState053 : ((('s, _menhir_box_parse_lexer_definition) _menhir_cell1_SLASH, _menhir_box_parse_lexer_definition) _menhir_cell1_wild_symbol, _menhir_box_parse_lexer_definition) _menhir_state (** State 053. Stack shape : SLASH wild_symbol. Start symbol: parse_lexer_definition. *) | MenhirState056 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_LPAREN, _menhir_box_parse_lexer_definition) _menhir_state (** State 056. Stack shape : LPAREN. Start symbol: parse_lexer_definition. *) | MenhirState057 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_LBRACKET, _menhir_box_parse_lexer_definition) _menhir_state (** State 057. Stack shape : LBRACKET. Start symbol: parse_lexer_definition. *) | MenhirState061 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_regseq_loop, _menhir_box_parse_lexer_definition) _menhir_state (** State 061. Stack shape : regseq_loop. Start symbol: parse_lexer_definition. *) | MenhirState062 : ((('s, _menhir_box_parse_lexer_definition) _menhir_cell1_regseq_loop, _menhir_box_parse_lexer_definition) _menhir_cell1_SEMI, _menhir_box_parse_lexer_definition) _menhir_state (** State 062. Stack shape : regseq_loop SEMI. Start symbol: parse_lexer_definition. *) | MenhirState069 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_state (** State 069. Stack shape : ident. Start symbol: parse_lexer_definition. *) | MenhirState070 : ((('s, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_cell1_LBRACKET, _menhir_box_parse_lexer_definition) _menhir_state (** State 070. Stack shape : ident LBRACKET. Start symbol: parse_lexer_definition. *) | MenhirState072 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_regseq _menhir_cell0_BAR, _menhir_box_parse_lexer_definition) _menhir_state (** State 072. Stack shape : regseq BAR. Start symbol: parse_lexer_definition. *) | MenhirState084 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_regexp, _menhir_box_parse_lexer_definition) _menhir_state (** State 084. Stack shape : regexp. Start symbol: parse_lexer_definition. *) | MenhirState088 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_positioned_symbol_, _menhir_box_parse_lexer_definition) _menhir_state (** State 088. Stack shape : positioned(symbol). Start symbol: parse_lexer_definition. *) | MenhirState092 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_regexp _menhir_cell0_lookaheads _menhir_cell0_BAR, _menhir_box_parse_lexer_definition) _menhir_state (** State 092. Stack shape : regexp lookaheads BAR. Start symbol: parse_lexer_definition. *) | MenhirState102 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_clause, _menhir_box_parse_lexer_definition) _menhir_state (** State 102. Stack shape : clause. Start symbol: parse_lexer_definition. *) | MenhirState105 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_clause_group, _menhir_box_parse_lexer_definition) _menhir_state (** State 105. Stack shape : clause_group. Start symbol: parse_lexer_definition. *) | MenhirState109 : ((('s, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_state (** State 109. Stack shape : ident ident. Start symbol: parse_lexer_definition. *) | MenhirState111 : (('s, _menhir_box_parse_lexer_definition) _menhir_cell1_rule, _menhir_box_parse_lexer_definition) _menhir_state (** State 111. Stack shape : rule. Start symbol: parse_lexer_definition. *) | MenhirState113 : ((('s, _menhir_box_parse_lexer_definition) _menhir_cell1_header, _menhir_box_parse_lexer_definition) _menhir_cell1_nonempty_list_rule_, _menhir_box_parse_lexer_definition) _menhir_state (** State 113. Stack shape : header nonempty_list(rule). Start symbol: parse_lexer_definition. *) and ('s, 'r) _menhir_cell1_case_patterns = | MenhirCell1_case_patterns of 's * ('s, 'r) _menhir_state * (Syntax.pattern list) and ('s, 'r) _menhir_cell1_clause = | MenhirCell1_clause of 's * ('s, 'r) _menhir_state * (Syntax.clause) and ('s, 'r) _menhir_cell1_clause_group = | MenhirCell1_clause_group of 's * ('s, 'r) _menhir_state * (Syntax.clause_group) and ('s, 'r) _menhir_cell1_header = | MenhirCell1_header of 's * ('s, 'r) _menhir_state * (Syntax.ocaml_code) and ('s, 'r) _menhir_cell1_ident = | MenhirCell1_ident of 's * ('s, 'r) _menhir_state * (string) * Lexing.position and ('s, 'r) _menhir_cell1_list_ident_ = | MenhirCell1_list_ident_ of 's * ('s, 'r) _menhir_state * (string list) and 's _menhir_cell0_lookaheads = | MenhirCell0_lookaheads of 's * ((Syntax.symbol * Lexing.position) list) and ('s, 'r) _menhir_cell1_nonempty_list_rule_ = | MenhirCell1_nonempty_list_rule_ of 's * ('s, 'r) _menhir_state * (Syntax.rule list) and 's _menhir_cell0_positioned_boption_ERROR__ = | MenhirCell0_positioned_boption_ERROR__ of 's * (bool * Lexing.position) and ('s, 'r) _menhir_cell1_positioned_filter_symbol_ = | MenhirCell1_positioned_filter_symbol_ of 's * ('s, 'r) _menhir_state * (Syntax.filter_symbol * Lexing.position) and ('s, 'r) _menhir_cell1_positioned_ident_ = | MenhirCell1_positioned_ident_ of 's * ('s, 'r) _menhir_state * (string * Lexing.position) and ('s, 'r) _menhir_cell1_positioned_symbol_ = | MenhirCell1_positioned_symbol_ of 's * ('s, 'r) _menhir_state * (Syntax.symbol * Lexing.position) and ('s, 'r) _menhir_cell1_regexp = | MenhirCell1_regexp of 's * ('s, 'r) _menhir_state * (Syntax.regular_expr) and ('s, 'r) _menhir_cell1_regseq = | MenhirCell1_regseq of 's * ('s, 'r) _menhir_state * (Syntax.regular_expr) * Lexing.position and ('s, 'r) _menhir_cell1_regseq_loop = | MenhirCell1_regseq_loop of 's * ('s, 'r) _menhir_state * (Syntax.regular_expr list) * Lexing.position and ('s, 'r) _menhir_cell1_rule = | MenhirCell1_rule of 's * ('s, 'r) _menhir_state * (Syntax.rule) and 's _menhir_cell0_startsymbols = | MenhirCell0_startsymbols of 's * ((string * Lexing.position) list) and ('s, 'r) _menhir_cell1_symbol = | MenhirCell1_symbol of 's * ('s, 'r) _menhir_state * (Syntax.symbol) * Lexing.position and ('s, 'r) _menhir_cell1_wild_symbol = | MenhirCell1_wild_symbol of 's * ('s, 'r) _menhir_state * (Syntax.wild_symbol) * Lexing.position and ('s, 'r) _menhir_cell1_BAR = | MenhirCell1_BAR of 's * ('s, 'r) _menhir_state * Lexing.position and 's _menhir_cell0_BAR = | MenhirCell0_BAR of 's * Lexing.position and ('s, 'r) _menhir_cell1_LBRACKET = | MenhirCell1_LBRACKET of 's * ('s, 'r) _menhir_state * Lexing.position * Lexing.position and 's _menhir_cell0_LBRACKET = | MenhirCell0_LBRACKET of 's * Lexing.position * Lexing.position and ('s, 'r) _menhir_cell1_LPAREN = | MenhirCell1_LPAREN of 's * ('s, 'r) _menhir_state * Lexing.position * Lexing.position and 's _menhir_cell0_LPAREN = | MenhirCell0_LPAREN of 's * Lexing.position * Lexing.position and 's _menhir_cell0_PARSE = | MenhirCell0_PARSE of 's * Lexing.position and ('s, 'r) _menhir_cell1_RULE = | MenhirCell1_RULE of 's * ('s, 'r) _menhir_state * Lexing.position and ('s, 'r) _menhir_cell1_SEMI = | MenhirCell1_SEMI of 's * ('s, 'r) _menhir_state * Lexing.position and ('s, 'r) _menhir_cell1_SHORTEST = | MenhirCell1_SHORTEST of 's * ('s, 'r) _menhir_state and ('s, 'r) _menhir_cell1_SLASH = | MenhirCell1_SLASH of 's * ('s, 'r) _menhir_state * Lexing.position and _menhir_box_parse_lexer_definition = | MenhirBox_parse_lexer_definition of (Syntax.lexer_definition) [@@unboxed] and _menhir_box_parse_filter = | MenhirBox_parse_filter of (Syntax.filter) [@@unboxed] let _menhir_action_02 = fun () -> ( # 134 "<standard.mly>" ( false ) # 314 "src/front/parser.ml" : (bool)) let _menhir_action_03 = fun () -> ( # 137 "<standard.mly>" ( true ) # 322 "src/front/parser.ml" : (bool)) let _menhir_action_04 = fun _1 -> ( # 103 "src/front/parser.mly" ( Total _1 ) # 330 "src/front/parser.ml" : (Syntax.clause_action)) let _menhir_action_05 = fun _2 -> ( # 104 "src/front/parser.mly" ( Partial _2 ) # 338 "src/front/parser.ml" : (Syntax.clause_action)) let _menhir_action_06 = fun _startpos__1_ -> let _startpos = _startpos__1_ in ( # 105 "src/front/parser.mly" ( Unreachable _startpos ) # 347 "src/front/parser.ml" : (Syntax.clause_action)) let _menhir_action_07 = fun _1 -> ( # 88 "src/front/parser.mly" ( [{expr=_1; lookaheads=[]}] ) # 355 "src/front/parser.ml" : (Syntax.pattern list)) let _menhir_action_08 = fun _1 _2 -> ( # 89 "src/front/parser.mly" ( [{ expr=_1; lookaheads=_2 }] ) # 363 "src/front/parser.ml" : (Syntax.pattern list)) let _menhir_action_09 = fun _1 _2 _4 -> ( # 90 "src/front/parser.mly" ( { expr=_1; lookaheads=_2 } :: _4 ) # 371 "src/front/parser.ml" : (Syntax.pattern list)) let _menhir_action_10 = fun _2 _3 -> ( # 99 "src/front/parser.mly" ( {patterns=_2; action=_3} ) # 379 "src/front/parser.ml" : (Syntax.clause)) let _menhir_action_11 = fun _1 -> ( # 94 "src/front/parser.mly" ( [_1] ) # 387 "src/front/parser.ml" : (Syntax.clause_group)) let _menhir_action_12 = fun _3 -> ( # 95 "src/front/parser.mly" ( _3 ) # 395 "src/front/parser.ml" : (Syntax.clause_group)) let _menhir_action_13 = fun () -> ( # 151 "src/front/parser.mly" ( Dot ) # 403 "src/front/parser.ml" : (Syntax.filter_symbol)) let _menhir_action_14 = fun () -> ( # 152 "src/front/parser.mly" ( Skip ) # 411 "src/front/parser.ml" : (Syntax.filter_symbol)) let _menhir_action_15 = fun _1 -> ( # 153 "src/front/parser.mly" ( Find _1 ) # 419 "src/front/parser.ml" : (Syntax.filter_symbol)) let _menhir_action_16 = fun _1 -> ( # 71 "src/front/parser.mly" ( _1 ) # 427 "src/front/parser.ml" : (Syntax.ocaml_code)) let _menhir_action_17 = fun () -> ( # 73 "src/front/parser.mly" ( (Lexing.dummy_pos, "") ) # 435 "src/front/parser.ml" : (Syntax.ocaml_code)) let _menhir_action_18 = fun _1 -> ( # 64 "src/front/parser.mly" ( _1 ) # 443 "src/front/parser.ml" : (string)) let _menhir_action_19 = fun () -> ( # 65 "src/front/parser.mly" ( "rule" ) # 451 "src/front/parser.ml" : (string)) let _menhir_action_20 = fun () -> ( # 66 "src/front/parser.mly" ( "parse" ) # 459 "src/front/parser.ml" : (string)) let _menhir_action_21 = fun () -> ( # 67 "src/front/parser.mly" ( "error" ) # 467 "src/front/parser.ml" : (string)) let _menhir_action_22 = fun () -> ( # 216 "<standard.mly>" ( [] ) # 475 "src/front/parser.ml" : (Syntax.clause_group)) let _menhir_action_23 = fun x xs -> ( # 219 "<standard.mly>" ( x :: xs ) # 483 "src/front/parser.ml" : (Syntax.clause_group)) let _menhir_action_24 = fun () -> ( # 216 "<standard.mly>" ( [] ) # 491 "src/front/parser.ml" : (Syntax.clause_group list)) let _menhir_action_25 = fun x xs -> ( # 219 "<standard.mly>" ( x :: xs ) # 499 "src/front/parser.ml" : (Syntax.clause_group list)) let _menhir_action_26 = fun () -> ( # 216 "<standard.mly>" ( [] ) # 507 "src/front/parser.ml" : (string list)) let _menhir_action_27 = fun x xs -> ( # 219 "<standard.mly>" ( x :: xs ) # 515 "src/front/parser.ml" : (string list)) let _menhir_action_28 = fun xs -> let _1 = let x = # 241 "<standard.mly>" ( xs ) # 524 "src/front/parser.ml" in # 188 "<standard.mly>" ( x ) # 529 "src/front/parser.ml" in ( # 113 "src/front/parser.mly" ( _1 ) # 535 "src/front/parser.ml" : ((Syntax.symbol * Lexing.position) list)) let _menhir_action_29 = fun () -> ( # 145 "<standard.mly>" ( [] ) # 543 "src/front/parser.ml" : ((Syntax.symbol * Lexing.position) list)) let _menhir_action_30 = fun x -> ( # 148 "<standard.mly>" ( x ) # 551 "src/front/parser.ml" : ((Syntax.symbol * Lexing.position) list)) let _menhir_action_31 = fun () -> ( # 145 "<standard.mly>" ( [] ) # 559 "src/front/parser.ml" : (Syntax.symbol list)) let _menhir_action_32 = fun x -> ( # 148 "<standard.mly>" ( x ) # 567 "src/front/parser.ml" : (Syntax.symbol list)) let _menhir_action_33 = fun x -> ( # 228 "<standard.mly>" ( [ x ] ) # 575 "src/front/parser.ml" : ((Syntax.filter_symbol * Lexing.position) list)) let _menhir_action_34 = fun x xs -> ( # 231 "<standard.mly>" ( x :: xs ) # 583 "src/front/parser.ml" : ((Syntax.filter_symbol * Lexing.position) list)) let _menhir_action_35 = fun x -> ( # 228 "<standard.mly>" ( [ x ] ) # 591 "src/front/parser.ml" : (Syntax.rule list)) let _menhir_action_36 = fun x xs -> ( # 231 "<standard.mly>" ( x :: xs ) # 599 "src/front/parser.ml" : (Syntax.rule list)) let _menhir_action_37 = fun _2_inlined1 -> let _1 = let _2 = _2_inlined1 in let _1 = # 123 "<standard.mly>" ( None ) # 609 "src/front/parser.ml" in # 158 "src/front/parser.mly" ( {lhs = _1; rhs = _2} ) # 614 "src/front/parser.ml" in ( # 60 "src/front/parser.mly" ( _1 ) # 620 "src/front/parser.ml" : (Syntax.filter)) let _menhir_action_38 = fun _2_inlined2 x -> let _1 = let _2 = _2_inlined2 in let _1 = let x = # 196 "<standard.mly>" ( x ) # 631 "src/front/parser.ml" in # 126 "<standard.mly>" ( Some x ) # 636 "src/front/parser.ml" in # 158 "src/front/parser.mly" ( {lhs = _1; rhs = _2} ) # 642 "src/front/parser.ml" in ( # 60 "src/front/parser.mly" ( _1 ) # 648 "src/front/parser.ml" : (Syntax.filter)) let _menhir_action_39 = fun _1 _2 _3 -> ( # 55 "src/front/parser.mly" ( {header=_1; rules=_2; trailer=_3} ) # 656 "src/front/parser.ml" : (Syntax.lexer_definition)) let _menhir_action_40 = fun _1 _startpos__1_ -> let _startpos = _startpos__1_ in ( # 109 "src/front/parser.mly" ( (_1, _startpos) ) # 665 "src/front/parser.ml" : (bool * Lexing.position)) let _menhir_action_41 = fun _1 _startpos__1_ -> let _startpos = _startpos__1_ in ( # 109 "src/front/parser.mly" ( (_1, _startpos) ) # 674 "src/front/parser.ml" : (Syntax.filter_symbol * Lexing.position)) let _menhir_action_42 = fun _1 _startpos__1_ -> let _startpos = _startpos__1_ in ( # 109 "src/front/parser.mly" ( (_1, _startpos) ) # 683 "src/front/parser.ml" : (string * Lexing.position)) let _menhir_action_43 = fun _1 _startpos__1_ -> let _startpos = _startpos__1_ in ( # 109 "src/front/parser.mly" ( (_1, _startpos) ) # 692 "src/front/parser.ml" : (Syntax.symbol * Lexing.position)) let _menhir_action_44 = fun _1 _startpos__1_ -> let _startpos = _startpos__1_ in ( # 184 "src/front/parser.mly" ( match _1 with [x] -> x | xs -> mk_re (Alternative xs) _startpos ) # 701 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_45 = fun _2 _startpos__1_ -> let _2 = let _1 = # 123 "<standard.mly>" ( None ) # 710 "src/front/parser.ml" in # 158 "src/front/parser.mly" ( {lhs = _1; rhs = _2} ) # 715 "src/front/parser.ml" in let _startpos = _startpos__1_ in ( # 163 "src/front/parser.mly" ( mk_re (Filter _2) _startpos ) # 722 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_46 = fun _2 _startpos__1_ x -> let _2 = let _1 = let x = # 196 "<standard.mly>" ( x ) # 732 "src/front/parser.ml" in # 126 "<standard.mly>" ( Some x ) # 737 "src/front/parser.ml" in # 158 "src/front/parser.mly" ( {lhs = _1; rhs = _2} ) # 743 "src/front/parser.ml" in let _startpos = _startpos__1_ in ( # 163 "src/front/parser.mly" ( mk_re (Filter _2) _startpos ) # 750 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_47 = fun _2 -> ( # 131 "src/front/parser.mly" ( _2 ) # 758 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_48 = fun _2 _endpos__0_ -> let _1 = let _1 = # 123 "<standard.mly>" ( None ) # 767 "src/front/parser.ml" in # 127 "src/front/parser.mly" ( _1 ) # 772 "src/front/parser.ml" in let _startpos__1_ = _endpos__0_ in let _startpos = _startpos__1_ in ( # 132 "src/front/parser.mly" ( mk_re (Atom (_1, _2, Utils.Usage.new_mark ())) _startpos ) # 780 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_49 = fun _2 _startpos_x_ x -> let _1 = let _1 = let x = # 196 "<standard.mly>" ( x ) # 790 "src/front/parser.ml" in # 126 "<standard.mly>" ( Some x ) # 795 "src/front/parser.ml" in # 127 "src/front/parser.mly" ( _1 ) # 801 "src/front/parser.ml" in let _startpos__1_ = _startpos_x_ in let _startpos = _startpos__1_ in ( # 132 "src/front/parser.mly" ( mk_re (Atom (_1, _2, Utils.Usage.new_mark ())) _startpos ) # 809 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_50 = fun _3 _endpos__0_ -> let _1 = let _1 = # 123 "<standard.mly>" ( None ) # 818 "src/front/parser.ml" in # 127 "src/front/parser.mly" ( _1 ) # 823 "src/front/parser.ml" in let _startpos__1_ = _endpos__0_ in let _startpos = _startpos__1_ in ( # 134 "src/front/parser.mly" ( let mark, policy, expr = match _3.desc with | Reduce {capture=None; mark; policy=Shortest; expr} -> (mark, Longest, expr) | _ -> (Utils.Usage.new_mark (), Shortest, _3) in mk_re (Reduce {capture=_1; mark; expr; policy}) _startpos ) # 837 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_51 = fun _3 _startpos_x_ x -> let _1 = let _1 = let x = # 196 "<standard.mly>" ( x ) # 847 "src/front/parser.ml" in # 126 "<standard.mly>" ( Some x ) # 852 "src/front/parser.ml" in # 127 "src/front/parser.mly" ( _1 ) # 858 "src/front/parser.ml" in let _startpos__1_ = _startpos_x_ in let _startpos = _startpos__1_ in ( # 134 "src/front/parser.mly" ( let mark, policy, expr = match _3.desc with | Reduce {capture=None; mark; policy=Shortest; expr} -> (mark, Longest, expr) | _ -> (Utils.Usage.new_mark (), Shortest, _3) in mk_re (Reduce {capture=_1; mark; expr; policy}) _startpos ) # 872 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_52 = fun _endpos__0_ -> let _startpos = _endpos__0_ in ( # 174 "src/front/parser.mly" ( mk_re (Concat []) _startpos ) # 881 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_53 = fun _1 _startpos__1_ -> let _startpos = _startpos__1_ in ( # 175 "src/front/parser.mly" ( match _1 with [x] -> x | xs -> mk_re (Concat (List.rev xs)) _startpos ) # 890 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_54 = fun _1 _2 -> ( # 167 "src/front/parser.mly" ( _2 :: _1 ) # 898 "src/front/parser.ml" : (Syntax.regular_expr list)) let _menhir_action_55 = fun _1 -> ( # 168 "src/front/parser.mly" ( [_1] ) # 906 "src/front/parser.ml" : (Syntax.regular_expr list)) let _menhir_action_56 = fun _1 -> ( # 169 "src/front/parser.mly" ( [_1] ) # 914 "src/front/parser.ml" : (Syntax.regular_expr list)) let _menhir_action_57 = fun _1 _3 -> ( # 170 "src/front/parser.mly" ( _3 :: _1 ) # 922 "src/front/parser.ml" : (Syntax.regular_expr list)) let _menhir_action_58 = fun _1 -> ( # 179 "src/front/parser.mly" ( [_1] ) # 930 "src/front/parser.ml" : (Syntax.regular_expr list)) let _menhir_action_59 = fun _1 _3 -> ( # 180 "src/front/parser.mly" ( _1 :: _3 ) # 938 "src/front/parser.ml" : (Syntax.regular_expr list)) let _menhir_action_60 = fun _1 -> ( # 144 "src/front/parser.mly" ( _1 ) # 946 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_61 = fun _1 _startpos__1_ -> let _startpos = _startpos__1_ in ( # 145 "src/front/parser.mly" ( mk_re (Repetition {expr=_1; policy=Shortest}) _startpos ) # 955 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_62 = fun _1 _startpos__1_ -> let _startpos = _startpos__1_ in ( # 146 "src/front/parser.mly" ( mk_re (Repetition {expr=_1; policy=Longest}) _startpos ) # 964 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_63 = fun _1 _startpos__1_ -> let _startpos = _startpos__1_ in ( # 147 "src/front/parser.mly" ( mk_re (Alternative [_1; mk_re (Concat []) _startpos]) _startpos ) # 973 "src/front/parser.ml" : (Syntax.regular_expr)) let _menhir_action_64 = fun args clauses error name startsymbols -> ( # 84 "src/front/parser.mly" ( {startsymbols; error; name; args; clauses} ) # 981 "src/front/parser.ml" : (Syntax.rule)) let _menhir_action_65 = fun x -> ( # 250 "<standard.mly>" ( [ x ] ) # 989 "src/front/parser.ml" : ((string * Lexing.position) list)) let _menhir_action_66 = fun x xs -> ( # 253 "<standard.mly>" ( x :: xs ) # 997 "src/front/parser.ml" : ((string * Lexing.position) list)) let _menhir_action_67 = fun x -> ( # 250 "<standard.mly>" ( [ x ] ) # 1005 "src/front/parser.ml" : ((Syntax.symbol * Lexing.position) list)) let _menhir_action_68 = fun x xs -> ( # 253 "<standard.mly>" ( x :: xs ) # 1013 "src/front/parser.ml" : ((Syntax.symbol * Lexing.position) list)) let _menhir_action_69 = fun x -> ( # 250 "<standard.mly>" ( [ x ] ) # 1021 "src/front/parser.ml" : (Syntax.symbol list)) let _menhir_action_70 = fun x xs -> ( # 253 "<standard.mly>" ( x :: xs ) # 1029 "src/front/parser.ml" : (Syntax.symbol list)) let _menhir_action_71 = fun () -> ( # 77 "src/front/parser.mly" ( [] ) # 1037 "src/front/parser.ml" : ((string * Lexing.position) list)) let _menhir_action_72 = fun _2 -> ( # 78 "src/front/parser.mly" ( _2 ) # 1045 "src/front/parser.ml" : ((string * Lexing.position) list)) let _menhir_action_73 = fun _1 -> ( # 117 "src/front/parser.mly" ( Name _1 ) # 1053 "src/front/parser.ml" : (Syntax.symbol)) let _menhir_action_74 = fun _1 xs -> let _3 = # 241 "<standard.mly>" ( xs ) # 1061 "src/front/parser.ml" in ( # 118 "src/front/parser.mly" ( Apply (_1, _3) ) # 1066 "src/front/parser.ml" : (Syntax.symbol)) let _menhir_action_75 = fun () -> ( # 122 "src/front/parser.mly" ( None ) # 1074 "src/front/parser.ml" : (Syntax.wild_symbol)) let _menhir_action_76 = fun _1 -> ( # 123 "src/front/parser.mly" ( Some _1 ) # 1082 "src/front/parser.ml" : (Syntax.wild_symbol)) let _menhir_print_token : token -> string = fun _tok -> match _tok with | UNREACHABLE -> "UNREACHABLE" | UNDERSCORE -> "UNDERSCORE" | STAR -> "STAR" | SLASH -> "SLASH" | SHORTEST -> "SHORTEST" | SEMI -> "SEMI" | RULE -> "RULE" | RPAREN -> "RPAREN" | RBRACKET -> "RBRACKET" | QUESTION -> "QUESTION" | PARTIAL -> "PARTIAL" | PARSE -> "PARSE" | LPAREN -> "LPAREN" | LBRACKET -> "LBRACKET" | IDENT _ -> "IDENT" | ERROR -> "ERROR" | EQUAL -> "EQUAL" | EOF -> "EOF" | DOT -> "DOT" | COMMA -> "COMMA" | COLON -> "COLON" | BAR -> "BAR" | AT -> "AT" | ACTION _ -> "ACTION" let _menhir_fail : unit -> 'a = fun () -> Printf.eprintf "Internal failure -- please contact the parser generator's developers.\n%!"; assert false include struct [@@@ocaml.warning "-4-37"] let _menhir_run_114 : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_header, _menhir_box_parse_lexer_definition) _menhir_cell1_nonempty_list_rule_ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _v _tok -> match (_tok : MenhirBasics.token) with | EOF -> let MenhirCell1_nonempty_list_rule_ (_menhir_stack, _, _2) = _menhir_stack in let MenhirCell1_header (_menhir_stack, _, _1) = _menhir_stack in let _3 = _v in let _v = _menhir_action_39 _1 _2 _3 in MenhirBox_parse_lexer_definition _v | _ -> _eRR () let _menhir_goto_parse_filter : type ttv_stack. ttv_stack -> _ -> _menhir_box_parse_filter = fun _menhir_stack _v -> MenhirBox_parse_filter _v let _menhir_run_023 : type ttv_stack. (ttv_stack, _menhir_box_parse_filter) _menhir_cell1_wild_symbol -> _ -> _ -> _menhir_box_parse_filter = fun _menhir_stack _v _tok -> match (_tok : MenhirBasics.token) with | EOF -> let MenhirCell1_wild_symbol (_menhir_stack, _, x, _) = _menhir_stack in let _2_inlined2 = _v in let _v = _menhir_action_38 _2_inlined2 x in _menhir_goto_parse_filter _menhir_stack _v | _ -> _eRR () let _menhir_run_026 : type ttv_stack. ttv_stack -> _ -> _ -> _menhir_box_parse_filter = fun _menhir_stack _v _tok -> match (_tok : MenhirBasics.token) with | EOF -> let _2_inlined1 = _v in let _v = _menhir_action_37 _2_inlined1 in _menhir_goto_parse_filter _menhir_stack _v | _ -> _eRR () let rec _menhir_run_001 : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | STAR -> let _tok = _menhir_lexer _menhir_lexbuf in let _startpos__1_ = _startpos in let _v = _menhir_action_14 () in _menhir_goto_filter_symbol _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | ACTION _ | AT | BAR | COLON | DOT | EOF | ERROR | IDENT _ | PARSE | PARTIAL | RBRACKET | RPAREN | RULE | SEMI | SLASH | UNDERSCORE | UNREACHABLE -> let _startpos__1_ = _startpos in let _v = _menhir_action_75 () in _menhir_goto_wild_symbol _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | _ -> _eRR () and _menhir_goto_filter_symbol : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_41 _1 _startpos__1_ in match (_tok : MenhirBasics.token) with | UNDERSCORE -> let _menhir_stack = MenhirCell1_positioned_filter_symbol_ (_menhir_stack, _menhir_s, _v) in _menhir_run_001 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState012 | RULE -> let _menhir_stack = MenhirCell1_positioned_filter_symbol_ (_menhir_stack, _menhir_s, _v) in _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState012 | PARSE -> let _menhir_stack = MenhirCell1_positioned_filter_symbol_ (_menhir_stack, _menhir_s, _v) in _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState012 | IDENT _v_0 -> let _menhir_stack = MenhirCell1_positioned_filter_symbol_ (_menhir_stack, _menhir_s, _v) in _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 MenhirState012 | ERROR -> let _menhir_stack = MenhirCell1_positioned_filter_symbol_ (_menhir_stack, _menhir_s, _v) in _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState012 | DOT -> let _menhir_stack = MenhirCell1_positioned_filter_symbol_ (_menhir_stack, _menhir_s, _v) in _menhir_run_007 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState012 | ACTION _ | AT | BAR | EOF | PARTIAL | RBRACKET | RPAREN | SEMI | SLASH | UNREACHABLE -> let x = _v in let _v = _menhir_action_33 x in _menhir_goto_nonempty_list_positioned_filter_symbol__ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_run_003 : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _tok = _menhir_lexer _menhir_lexbuf in let _startpos__1_ = _startpos in let _v = _menhir_action_19 () in _menhir_goto_ident _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_goto_ident : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match _menhir_s with | MenhirState000 -> _menhir_run_014 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState009 -> _menhir_run_014 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState012 -> _menhir_run_014 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState015 -> _menhir_run_014 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState017 -> _menhir_run_014 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState051 -> _menhir_run_014 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState053 -> _menhir_run_014 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState069 -> _menhir_run_014 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState084 -> _menhir_run_014 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState088 -> _menhir_run_014 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState032 -> _menhir_run_033 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState039 -> _menhir_run_045 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState043 -> _menhir_run_045 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState049 -> _menhir_run_068 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState056 -> _menhir_run_068 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState057 -> _menhir_run_068 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState062 -> _menhir_run_068 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState070 -> _menhir_run_068 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState072 -> _menhir_run_068 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState092 -> _menhir_run_068 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState033 -> _menhir_run_109 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState109 -> _menhir_run_109 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_014 : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | LPAREN -> let _menhir_stack = MenhirCell1_ident (_menhir_stack, _menhir_s, _v, _startpos) in _menhir_run_015 _menhir_stack _menhir_lexbuf _menhir_lexer | ACTION _ | AT | BAR | COLON | COMMA | DOT | EOF | ERROR | IDENT _ | PARSE | PARTIAL | QUESTION | RBRACKET | RPAREN | RULE | SEMI | SLASH | STAR | UNDERSCORE | UNREACHABLE -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_73 _1 in _menhir_goto_symbol _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | _ -> _eRR () and _menhir_run_015 : type ttv_stack ttv_result. (ttv_stack, ttv_result) _menhir_cell1_ident -> _ -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _endpos = _menhir_lexbuf.Lexing.lex_curr_p in let _menhir_stack = MenhirCell0_LPAREN (_menhir_stack, _startpos, _endpos) in let _menhir_s = MenhirState015 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RPAREN -> let _v = _menhir_action_31 () in _menhir_goto_loption_separated_nonempty_list_COMMA_symbol__ _menhir_stack _menhir_lexbuf _menhir_lexer _v | _ -> _eRR () and _menhir_run_004 : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _tok = _menhir_lexer _menhir_lexbuf in let _startpos__1_ = _startpos in let _v = _menhir_action_20 () in _menhir_goto_ident _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_run_005 : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _tok = _menhir_lexer _menhir_lexbuf in let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_18 _1 in _menhir_goto_ident _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_run_006 : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _tok = _menhir_lexer _menhir_lexbuf in let _startpos__1_ = _startpos in let _v = _menhir_action_21 () in _menhir_goto_ident _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_goto_loption_separated_nonempty_list_COMMA_symbol__ : type ttv_stack ttv_result. (ttv_stack, ttv_result) _menhir_cell1_ident _menhir_cell0_LPAREN -> _ -> _ -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v -> let _tok = _menhir_lexer _menhir_lexbuf in let MenhirCell0_LPAREN (_menhir_stack, _, _) = _menhir_stack in let MenhirCell1_ident (_menhir_stack, _menhir_s, _1, _startpos__1_) = _menhir_stack in let xs = _v in let _v = _menhir_action_74 _1 xs in _menhir_goto_symbol _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_goto_symbol : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match _menhir_s with | MenhirState000 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState009 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState012 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState049 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState051 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState053 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState056 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState057 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState062 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState069 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState070 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState072 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState092 -> _menhir_run_011 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState015 -> _menhir_run_016 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState017 -> _menhir_run_016 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState084 -> _menhir_run_085 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState088 -> _menhir_run_085 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_011 : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_76 _1 in _menhir_goto_wild_symbol _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_goto_wild_symbol : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match _menhir_s with | MenhirState000 -> _menhir_run_008 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState009 -> _menhir_run_010 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState012 -> _menhir_run_010 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState053 -> _menhir_run_010 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState051 -> _menhir_run_052 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState049 -> _menhir_run_058 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState056 -> _menhir_run_058 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState057 -> _menhir_run_058 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState062 -> _menhir_run_058 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState070 -> _menhir_run_058 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState072 -> _menhir_run_058 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState092 -> _menhir_run_058 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState069 -> _menhir_run_077 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_008 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_filter) _menhir_state -> _ -> _menhir_box_parse_filter = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | COLON -> let _menhir_stack = MenhirCell1_wild_symbol (_menhir_stack, _menhir_s, _v, _startpos) in let _menhir_s = MenhirState009 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_001 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | DOT -> _menhir_run_007 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | DOT | EOF | ERROR | IDENT _ | PARSE | RULE | UNDERSCORE -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_15 _1 in _menhir_goto_filter_symbol _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | _ -> _eRR () and _menhir_run_007 : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _tok = _menhir_lexer _menhir_lexbuf in let _startpos__1_ = _startpos in let _v = _menhir_action_13 () in _menhir_goto_filter_symbol _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_run_010 : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_15 _1 in _menhir_goto_filter_symbol _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_run_052 : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_SLASH as 'stack) -> _ -> _ -> _ -> _ -> ('stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | COLON -> let _menhir_stack = MenhirCell1_wild_symbol (_menhir_stack, _menhir_s, _v, _startpos) in let _menhir_s = MenhirState053 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_001 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | DOT -> _menhir_run_007 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | ACTION _ | AT | BAR | DOT | ERROR | IDENT _ | PARSE | PARTIAL | RBRACKET | RPAREN | RULE | SEMI | SLASH | UNDERSCORE | UNREACHABLE -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_15 _1 in _menhir_goto_filter_symbol _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | _ -> _eRR () and _menhir_run_058 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> _menhir_act_goto_48 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s _tok _v _startpos and _menhir_act_goto_48 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s _tok _2 _startpos__2_ -> match _menhir_s with | MenhirState049 -> let MenhirCell1_BAR (_, _, _endpos__0_) = _menhir_stack in let _v = _menhir_action_48 _2 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState056 -> let MenhirCell1_LPAREN (_, _, _, _endpos__0_) = _menhir_stack in let _v = _menhir_action_48 _2 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState057 -> let MenhirCell1_LBRACKET (_, _, _, _endpos__0_) = _menhir_stack in let _v = _menhir_action_48 _2 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState062 -> let MenhirCell1_SEMI (_, _, _endpos__0_) = _menhir_stack in let _v = _menhir_action_48 _2 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState070 -> let MenhirCell1_LBRACKET (_, _, _, _endpos__0_) = _menhir_stack in let _v = _menhir_action_48 _2 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState072 -> let MenhirCell0_BAR (_, _endpos__0_) = _menhir_stack in let _v = _menhir_action_48 _2 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState092 -> let MenhirCell0_BAR (_, _endpos__0_) = _menhir_stack in let _v = _menhir_action_48 _2 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_064 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | STAR -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | STAR -> let _tok = _menhir_lexer _menhir_lexbuf in let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_62 _1 _startpos__1_ in _menhir_goto_regterm _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | ACTION _ | AT | BAR | PARTIAL | RBRACKET | RPAREN | SEMI | SLASH | UNREACHABLE -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_61 _1 _startpos__1_ in _menhir_goto_regterm _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | _ -> _eRR ()) | QUESTION -> let _tok = _menhir_lexer _menhir_lexbuf in let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_63 _1 _startpos__1_ in _menhir_goto_regterm _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | ACTION _ | AT | BAR | PARTIAL | RBRACKET | RPAREN | SEMI | SLASH | UNREACHABLE -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_60 _1 in _menhir_goto_regterm _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | _ -> _eRR () and _menhir_goto_regterm : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match _menhir_s with | MenhirState049 -> _menhir_run_059 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState056 -> _menhir_run_059 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState057 -> _menhir_run_059 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState070 -> _menhir_run_059 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState072 -> _menhir_run_059 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState092 -> _menhir_run_059 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState062 -> _menhir_run_063 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_059 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_55 _1 in _menhir_goto_regseq_loop _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_goto_regseq_loop : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | SLASH -> let _menhir_stack = MenhirCell1_regseq_loop (_menhir_stack, _menhir_s, _v, _startpos) in _menhir_run_051 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState061 | SEMI -> let _menhir_stack = MenhirCell1_regseq_loop (_menhir_stack, _menhir_s, _v, _startpos) in let _menhir_s = MenhirState061 in let _endpos = _menhir_lexbuf.Lexing.lex_curr_p in let _menhir_stack = MenhirCell1_SEMI (_menhir_stack, _menhir_s, _endpos) in let _menhir_s = MenhirState062 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_050 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LPAREN -> _menhir_run_056 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LBRACKET -> _menhir_run_057 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | ACTION _ | AT | BAR | PARTIAL | RBRACKET | RPAREN | UNREACHABLE -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_53 _1 _startpos__1_ in _menhir_goto_regseq _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | _ -> _eRR () and _menhir_run_051 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _menhir_stack = MenhirCell1_SLASH (_menhir_stack, _menhir_s, _startpos) in let _menhir_s = MenhirState051 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_001 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | DOT -> _menhir_run_007 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR () and _menhir_run_050 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _tok = _menhir_lexer _menhir_lexbuf in let _startpos__1_ = _startpos in let _v = _menhir_action_75 () in _menhir_goto_wild_symbol _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_run_056 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _endpos = _menhir_lexbuf.Lexing.lex_curr_p in let _menhir_stack = MenhirCell1_LPAREN (_menhir_stack, _menhir_s, _startpos, _endpos) in let _menhir_s = MenhirState056 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_050 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | SLASH -> _menhir_run_051 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LPAREN -> _menhir_run_056 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LBRACKET -> _menhir_run_057 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | BAR | RPAREN -> _menhir_reduce_52 _menhir_stack _menhir_lexbuf _menhir_lexer _endpos _menhir_s _tok | _ -> _eRR () and _menhir_run_057 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _endpos = _menhir_lexbuf.Lexing.lex_curr_p in let _menhir_stack = MenhirCell1_LBRACKET (_menhir_stack, _menhir_s, _startpos, _endpos) in let _menhir_s = MenhirState057 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_050 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | SLASH -> _menhir_run_051 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LPAREN -> _menhir_run_056 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LBRACKET -> _menhir_run_057 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | BAR | RBRACKET -> _menhir_reduce_52 _menhir_stack _menhir_lexbuf _menhir_lexer _endpos _menhir_s _tok | _ -> _eRR () and _menhir_reduce_52 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _endpos _menhir_s _tok -> let _endpos__0_ = _endpos in let _v = _menhir_action_52 _endpos__0_ in _menhir_goto_regseq _menhir_stack _menhir_lexbuf _menhir_lexer _endpos _v _menhir_s _tok and _menhir_goto_regseq : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | BAR -> let _menhir_stack = MenhirCell1_regseq (_menhir_stack, _menhir_s, _v, _startpos) in let _endpos = _menhir_lexbuf.Lexing.lex_curr_p in let _menhir_stack = MenhirCell0_BAR (_menhir_stack, _endpos) in let _menhir_s = MenhirState072 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_050 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | SLASH -> _menhir_run_051 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LPAREN -> _menhir_run_056 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LBRACKET -> _menhir_run_057 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ACTION _ | AT | BAR | PARTIAL | RBRACKET | RPAREN | UNREACHABLE -> _menhir_reduce_52 _menhir_stack _menhir_lexbuf _menhir_lexer _endpos _menhir_s _tok | _ -> _eRR ()) | ACTION _ | AT | PARTIAL | RBRACKET | RPAREN | UNREACHABLE -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_58 _1 in _menhir_goto_regsum_loop _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_goto_regsum_loop : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match _menhir_s with | MenhirState049 -> _menhir_run_060 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState056 -> _menhir_run_060 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState057 -> _menhir_run_060 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState070 -> _menhir_run_060 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState092 -> _menhir_run_060 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState072 -> _menhir_run_073 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_060 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_44 _1 _startpos__1_ in _menhir_goto_regexp _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_regexp : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState070 -> _menhir_run_075 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState057 -> _menhir_run_079 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState056 -> _menhir_run_081 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState049 -> _menhir_run_083 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState092 -> _menhir_run_083 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_075 : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_cell1_LBRACKET -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> match (_tok : MenhirBasics.token) with | RBRACKET -> let _tok = _menhir_lexer _menhir_lexbuf in let MenhirCell1_LBRACKET (_menhir_stack, _, _, _) = _menhir_stack in let MenhirCell1_ident (_menhir_stack, _menhir_s, x, _startpos_x_) = _menhir_stack in let _3 = _v in let _v = _menhir_action_51 _3 _startpos_x_ x in _menhir_goto_regleaf _menhir_stack _menhir_lexbuf _menhir_lexer _startpos_x_ _v _menhir_s _tok | _ -> _eRR () and _menhir_goto_regleaf : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok and _menhir_run_079 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_LBRACKET -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> match (_tok : MenhirBasics.token) with | RBRACKET -> let _tok = _menhir_lexer _menhir_lexbuf in let MenhirCell1_LBRACKET (_menhir_stack, _menhir_s, _startpos__2_, _) = _menhir_stack in _menhir_act_goto_50 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s _tok _startpos__2_ _v | _ -> _eRR () and _menhir_act_goto_50 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s _tok _startpos__2_ _3 -> match _menhir_s with | MenhirState049 -> let MenhirCell1_BAR (_, _, _endpos__0_) = _menhir_stack in let _v = _menhir_action_50 _3 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState056 -> let MenhirCell1_LPAREN (_, _, _, _endpos__0_) = _menhir_stack in let _v = _menhir_action_50 _3 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState057 -> let MenhirCell1_LBRACKET (_, _, _, _endpos__0_) = _menhir_stack in let _v = _menhir_action_50 _3 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState062 -> let MenhirCell1_SEMI (_, _, _endpos__0_) = _menhir_stack in let _v = _menhir_action_50 _3 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState070 -> let MenhirCell1_LBRACKET (_, _, _, _endpos__0_) = _menhir_stack in let _v = _menhir_action_50 _3 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState072 -> let MenhirCell0_BAR (_, _endpos__0_) = _menhir_stack in let _v = _menhir_action_50 _3 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | MenhirState092 -> let MenhirCell0_BAR (_, _endpos__0_) = _menhir_stack in let _v = _menhir_action_50 _3 _endpos__0_ in _menhir_run_064 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__2_ _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_081 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_LPAREN -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> match (_tok : MenhirBasics.token) with | RPAREN -> let _tok = _menhir_lexer _menhir_lexbuf in let MenhirCell1_LPAREN (_menhir_stack, _menhir_s, _startpos__1_, _) = _menhir_stack in let _2 = _v in let _v = _menhir_action_47 _2 in _menhir_goto_regleaf _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | _ -> _eRR () and _menhir_run_083 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | AT -> let _menhir_stack = MenhirCell1_regexp (_menhir_stack, _menhir_s, _v) in let _menhir_s = MenhirState084 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ACTION _ | BAR | PARTIAL | UNREACHABLE -> let _v = _menhir_action_29 () in _menhir_goto_loption_separated_nonempty_list_COMMA_positioned_symbol___ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | ACTION _ | PARTIAL | UNREACHABLE -> let _1 = _v in let _v = _menhir_action_07 _1 in _menhir_goto_case_patterns _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_goto_loption_separated_nonempty_list_COMMA_positioned_symbol___ : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_regexp -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let xs = _v in let _v = _menhir_action_28 xs in match (_tok : MenhirBasics.token) with | BAR -> let _menhir_stack = MenhirCell0_lookaheads (_menhir_stack, _v) in let _endpos = _menhir_lexbuf.Lexing.lex_curr_p in let _menhir_stack = MenhirCell0_BAR (_menhir_stack, _endpos) in let _menhir_s = MenhirState092 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_050 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | SLASH -> _menhir_run_051 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LPAREN -> _menhir_run_056 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LBRACKET -> _menhir_run_057 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ACTION _ | AT | BAR | PARTIAL | UNREACHABLE -> _menhir_reduce_52 _menhir_stack _menhir_lexbuf _menhir_lexer _endpos _menhir_s _tok | _ -> _eRR ()) | ACTION _ | PARTIAL | UNREACHABLE -> let MenhirCell1_regexp (_menhir_stack, _menhir_s, _1) = _menhir_stack in let _2 = _v in let _v = _menhir_action_08 _1 _2 in _menhir_goto_case_patterns _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_goto_case_patterns : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState092 -> _menhir_run_093 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState049 -> _menhir_run_094 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_093 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_regexp _menhir_cell0_lookaheads _menhir_cell0_BAR -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell0_BAR (_menhir_stack, _) = _menhir_stack in let MenhirCell0_lookaheads (_menhir_stack, _2) = _menhir_stack in let MenhirCell1_regexp (_menhir_stack, _menhir_s, _1) = _menhir_stack in let _4 = _v in let _v = _menhir_action_09 _1 _2 _4 in _menhir_goto_case_patterns _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_094 : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_BAR as 'stack) -> _ -> _ -> _ -> ('stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_case_patterns (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | UNREACHABLE -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _tok = _menhir_lexer _menhir_lexbuf in let _startpos__1_ = _startpos in let _v = _menhir_action_06 _startpos__1_ in _menhir_goto_case_action _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | PARTIAL -> let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | ACTION _v_1 -> let _tok = _menhir_lexer _menhir_lexbuf in let _2 = _v_1 in let _v = _menhir_action_05 _2 in _menhir_goto_case_action _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR ()) | ACTION _v_3 -> let _tok = _menhir_lexer _menhir_lexbuf in let _1 = _v_3 in let _v = _menhir_action_04 _1 in _menhir_goto_case_action _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_goto_case_action : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_BAR, _menhir_box_parse_lexer_definition) _menhir_cell1_case_patterns -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_case_patterns (_menhir_stack, _, _2) = _menhir_stack in let MenhirCell1_BAR (_menhir_stack, _menhir_s, _) = _menhir_stack in let _3 = _v in let _v = _menhir_action_10 _2 _3 in _menhir_goto_clause _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_clause : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState048 -> _menhir_run_102 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState102 -> _menhir_run_102 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState046 -> _menhir_run_107 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState105 -> _menhir_run_107 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_102 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_clause (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | BAR -> _menhir_run_049 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState102 | RBRACKET -> let _v_0 = _menhir_action_22 () in _menhir_run_103 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 | _ -> _eRR () and _menhir_run_049 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _endpos = _menhir_lexbuf.Lexing.lex_curr_p in let _menhir_stack = MenhirCell1_BAR (_menhir_stack, _menhir_s, _endpos) in let _menhir_s = MenhirState049 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_050 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | SLASH -> _menhir_run_051 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LPAREN -> _menhir_run_056 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LBRACKET -> _menhir_run_057 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | ACTION _ | AT | BAR | PARTIAL | UNREACHABLE -> _menhir_reduce_52 _menhir_stack _menhir_lexbuf _menhir_lexer _endpos _menhir_s _tok | _ -> _eRR () and _menhir_run_103 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_clause -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v -> let MenhirCell1_clause (_menhir_stack, _menhir_s, x) = _menhir_stack in let xs = _v in let _v = _menhir_action_23 x xs in _menhir_goto_list_clause_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s and _menhir_goto_list_clause_ : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> match _menhir_s with | MenhirState048 -> _menhir_run_100 _menhir_stack _menhir_lexbuf _menhir_lexer _v | MenhirState102 -> _menhir_run_103 _menhir_stack _menhir_lexbuf _menhir_lexer _v | _ -> _menhir_fail () and _menhir_run_100 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_SHORTEST _menhir_cell0_LBRACKET -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v -> let _tok = _menhir_lexer _menhir_lexbuf in let MenhirCell0_LBRACKET (_menhir_stack, _, _) = _menhir_stack in let MenhirCell1_SHORTEST (_menhir_stack, _menhir_s) = _menhir_stack in let _3 = _v in let _v = _menhir_action_12 _3 in _menhir_goto_clause_group _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_clause_group : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_clause_group (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | SHORTEST -> _menhir_run_047 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState105 | BAR -> _menhir_run_049 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState105 | ACTION _ | EOF | RULE -> let _v_0 = _menhir_action_24 () in _menhir_run_106 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 _tok | _ -> _eRR () and _menhir_run_047 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _menhir_stack = MenhirCell1_SHORTEST (_menhir_stack, _menhir_s) in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | LBRACKET -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _endpos = _menhir_lexbuf.Lexing.lex_curr_p in let _menhir_stack = MenhirCell0_LBRACKET (_menhir_stack, _startpos, _endpos) in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | BAR -> _menhir_run_049 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState048 | RBRACKET -> let _v = _menhir_action_22 () in _menhir_run_100 _menhir_stack _menhir_lexbuf _menhir_lexer _v | _ -> _eRR ()) | _ -> _eRR () and _menhir_run_106 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_clause_group -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_clause_group (_menhir_stack, _menhir_s, x) = _menhir_stack in let xs = _v in let _v = _menhir_action_25 x xs in _menhir_goto_list_clause_group_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_list_clause_group_ : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState046 -> _menhir_run_104 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState105 -> _menhir_run_106 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_104 : type ttv_stack. (((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_RULE, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_cell1_list_ident_ _menhir_cell0_PARSE _menhir_cell0_positioned_boption_ERROR__ _menhir_cell0_startsymbols -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell0_startsymbols (_menhir_stack, startsymbols) = _menhir_stack in let MenhirCell0_positioned_boption_ERROR__ (_menhir_stack, error) = _menhir_stack in let MenhirCell0_PARSE (_menhir_stack, _) = _menhir_stack in let MenhirCell1_list_ident_ (_menhir_stack, _, args) = _menhir_stack in let MenhirCell1_ident (_menhir_stack, _, name, _) = _menhir_stack in let MenhirCell1_RULE (_menhir_stack, _menhir_s, _) = _menhir_stack in let clauses = _v in let _v = _menhir_action_64 args clauses error name startsymbols in match (_tok : MenhirBasics.token) with | RULE -> let _menhir_stack = MenhirCell1_rule (_menhir_stack, _menhir_s, _v) in _menhir_run_032 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState111 | ACTION _ | EOF -> let x = _v in let _v = _menhir_action_35 x in _menhir_goto_nonempty_list_rule_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_032 : type ttv_stack. ttv_stack -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _menhir_stack = MenhirCell1_RULE (_menhir_stack, _menhir_s, _startpos) in let _menhir_s = MenhirState032 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR () and _menhir_goto_nonempty_list_rule_ : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState111 -> _menhir_run_112 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState031 -> _menhir_run_113 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _menhir_fail () and _menhir_run_112 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_rule -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_rule (_menhir_stack, _menhir_s, x) = _menhir_stack in let xs = _v in let _v = _menhir_action_36 x xs in _menhir_goto_nonempty_list_rule_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_113 : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_header as 'stack) -> _ -> _ -> _ -> ('stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_nonempty_list_rule_ (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | ACTION _v_0 -> _menhir_run_029 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 MenhirState113 | EOF -> let _v_1 = _menhir_action_17 () in _menhir_run_114 _menhir_stack _v_1 _tok | _ -> _menhir_fail () and _menhir_run_029 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _tok = _menhir_lexer _menhir_lexbuf in let _1 = _v in let _v = _menhir_action_16 _1 in _menhir_goto_header _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_goto_header : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState028 -> _menhir_run_031 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | MenhirState113 -> _menhir_run_114 _menhir_stack _v _tok | _ -> _menhir_fail () and _menhir_run_031 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_header (_menhir_stack, _menhir_s, _v) in match (_tok : MenhirBasics.token) with | RULE -> _menhir_run_032 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState031 | _ -> _eRR () and _menhir_run_107 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> let _1 = _v in let _v = _menhir_action_11 _1 in _menhir_goto_clause_group _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_073 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_regseq _menhir_cell0_BAR -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell0_BAR (_menhir_stack, _) = _menhir_stack in let MenhirCell1_regseq (_menhir_stack, _menhir_s, _1, _startpos__1_) = _menhir_stack in let _3 = _v in let _v = _menhir_action_59 _1 _3 in _menhir_goto_regsum_loop _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_run_063 : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_regseq_loop, _menhir_box_parse_lexer_definition) _menhir_cell1_SEMI -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_SEMI (_menhir_stack, _, _) = _menhir_stack in let MenhirCell1_regseq_loop (_menhir_stack, _menhir_s, _1, _startpos__1_) = _menhir_stack in let _3 = _v in let _v = _menhir_action_57 _1 _3 in _menhir_goto_regseq_loop _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_run_077 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_ident -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_ident (_menhir_stack, _menhir_s, x, _startpos_x_) = _menhir_stack in let _2 = _v in let _v = _menhir_action_49 _2 _startpos_x_ x in _menhir_goto_regleaf _menhir_stack _menhir_lexbuf _menhir_lexer _startpos_x_ _v _menhir_s _tok and _menhir_run_016 : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | COMMA -> let _menhir_stack = MenhirCell1_symbol (_menhir_stack, _menhir_s, _v, _startpos) in let _menhir_s = MenhirState017 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | RPAREN -> let x = _v in let _v = _menhir_action_69 x in _menhir_goto_separated_nonempty_list_COMMA_symbol_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR () and _menhir_goto_separated_nonempty_list_COMMA_symbol_ : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> match _menhir_s with | MenhirState017 -> _menhir_run_018 _menhir_stack _menhir_lexbuf _menhir_lexer _v | MenhirState015 -> _menhir_run_019 _menhir_stack _menhir_lexbuf _menhir_lexer _v | _ -> _menhir_fail () and _menhir_run_018 : type ttv_stack ttv_result. (ttv_stack, ttv_result) _menhir_cell1_symbol -> _ -> _ -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v -> let MenhirCell1_symbol (_menhir_stack, _menhir_s, x, _) = _menhir_stack in let xs = _v in let _v = _menhir_action_70 x xs in _menhir_goto_separated_nonempty_list_COMMA_symbol_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s and _menhir_run_019 : type ttv_stack ttv_result. (ttv_stack, ttv_result) _menhir_cell1_ident _menhir_cell0_LPAREN -> _ -> _ -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v -> let x = _v in let _v = _menhir_action_32 x in _menhir_goto_loption_separated_nonempty_list_COMMA_symbol__ _menhir_stack _menhir_lexbuf _menhir_lexer _v and _menhir_run_085 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_43 _1 _startpos__1_ in match (_tok : MenhirBasics.token) with | COMMA -> let _menhir_stack = MenhirCell1_positioned_symbol_ (_menhir_stack, _menhir_s, _v) in let _menhir_s = MenhirState088 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | ACTION _ | BAR | PARTIAL | UNREACHABLE -> let x = _v in let _v = _menhir_action_67 x in _menhir_goto_separated_nonempty_list_COMMA_positioned_symbol__ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok | _ -> _eRR () and _menhir_goto_separated_nonempty_list_COMMA_positioned_symbol__ : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState084 -> _menhir_run_086 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState088 -> _menhir_run_089 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_086 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_regexp -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let x = _v in let _v = _menhir_action_30 x in _menhir_goto_loption_separated_nonempty_list_COMMA_positioned_symbol___ _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok and _menhir_run_089 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_positioned_symbol_ -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_positioned_symbol_ (_menhir_stack, _menhir_s, x) = _menhir_stack in let xs = _v in let _v = _menhir_action_68 x xs in _menhir_goto_separated_nonempty_list_COMMA_positioned_symbol__ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_033 : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_RULE as 'stack) -> _ -> _ -> _ -> _ -> ('stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_ident (_menhir_stack, _menhir_s, _v, _startpos) in match (_tok : MenhirBasics.token) with | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState033 | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState033 | IDENT _v_0 -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 MenhirState033 | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState033 | EQUAL -> let _v_1 = _menhir_action_26 () in _menhir_run_034 _menhir_stack _menhir_lexbuf _menhir_lexer _v_1 MenhirState033 | _ -> _eRR () and _menhir_run_034 : type ttv_stack. (((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_RULE, _menhir_box_parse_lexer_definition) _menhir_cell1_ident as 'stack) -> _ -> _ -> _ -> ('stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> let _menhir_stack = MenhirCell1_list_ident_ (_menhir_stack, _menhir_s, _v) in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | PARSE -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _endpos = _menhir_lexbuf.Lexing.lex_curr_p in let _menhir_stack = MenhirCell0_PARSE (_menhir_stack, _startpos) in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | ERROR -> let _startpos_0 = _menhir_lexbuf.Lexing.lex_start_p in let _tok = _menhir_lexer _menhir_lexbuf in let _startpos__1_ = _startpos_0 in let _v = _menhir_action_03 () in _menhir_goto_boption_ERROR_ _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _tok | ACTION _ | BAR | EOF | LPAREN | RULE | SHORTEST -> let _v = _menhir_action_02 () in _menhir_goto_boption_ERROR_ _menhir_stack _menhir_lexbuf _menhir_lexer _endpos _v _tok | _ -> _eRR ()) | _ -> _eRR () and _menhir_goto_boption_ERROR_ : type ttv_stack. (((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_RULE, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_cell1_list_ident_ _menhir_cell0_PARSE -> _ -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _tok -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_40 _1 _startpos__1_ in let _menhir_stack = MenhirCell0_positioned_boption_ERROR__ (_menhir_stack, _v) in match (_tok : MenhirBasics.token) with | LPAREN -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _endpos = _menhir_lexbuf.Lexing.lex_curr_p in let _menhir_stack = MenhirCell0_LPAREN (_menhir_stack, _startpos, _endpos) in let _menhir_s = MenhirState039 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | ACTION _ | BAR | EOF | RULE | SHORTEST -> let _v = _menhir_action_71 () in _menhir_goto_startsymbols _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _eRR () and _menhir_goto_startsymbols : type ttv_stack. (((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_RULE, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_cell1_list_ident_ _menhir_cell0_PARSE _menhir_cell0_positioned_boption_ERROR__ -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let _menhir_stack = MenhirCell0_startsymbols (_menhir_stack, _v) in match (_tok : MenhirBasics.token) with | SHORTEST -> _menhir_run_047 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState046 | BAR -> _menhir_run_049 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState046 | ACTION _ | EOF | RULE -> let _v_0 = _menhir_action_24 () in _menhir_run_104 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 _tok | _ -> _eRR () and _menhir_run_045 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_42 _1 _startpos__1_ in match (_tok : MenhirBasics.token) with | COMMA -> let _menhir_stack = MenhirCell1_positioned_ident_ (_menhir_stack, _menhir_s, _v) in let _menhir_s = MenhirState043 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | RPAREN -> let x = _v in let _v = _menhir_action_65 x in _menhir_goto_separated_nonempty_list_COMMA_positioned_ident__ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | _ -> _eRR () and _menhir_goto_separated_nonempty_list_COMMA_positioned_ident__ : type ttv_stack. ttv_stack -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> match _menhir_s with | MenhirState039 -> _menhir_run_040 _menhir_stack _menhir_lexbuf _menhir_lexer _v | MenhirState043 -> _menhir_run_044 _menhir_stack _menhir_lexbuf _menhir_lexer _v | _ -> _menhir_fail () and _menhir_run_040 : type ttv_stack. (((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_RULE, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_cell1_list_ident_ _menhir_cell0_PARSE _menhir_cell0_positioned_boption_ERROR__ _menhir_cell0_LPAREN -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v -> let _tok = _menhir_lexer _menhir_lexbuf in let MenhirCell0_LPAREN (_menhir_stack, _, _) = _menhir_stack in let _2 = _v in let _v = _menhir_action_72 _2 in _menhir_goto_startsymbols _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok and _menhir_run_044 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_positioned_ident_ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v -> let MenhirCell1_positioned_ident_ (_menhir_stack, _menhir_s, x) = _menhir_stack in let xs = _v in let _v = _menhir_action_66 x xs in _menhir_goto_separated_nonempty_list_COMMA_positioned_ident__ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s and _menhir_run_068 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match (_tok : MenhirBasics.token) with | LPAREN -> let _menhir_stack = MenhirCell1_ident (_menhir_stack, _menhir_s, _v, _startpos) in _menhir_run_015 _menhir_stack _menhir_lexbuf _menhir_lexer | EQUAL -> let _menhir_stack = MenhirCell1_ident (_menhir_stack, _menhir_s, _v, _startpos) in let _menhir_s = MenhirState069 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_050 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LBRACKET -> let _startpos = _menhir_lexbuf.Lexing.lex_start_p in let _endpos = _menhir_lexbuf.Lexing.lex_curr_p in let _menhir_stack = MenhirCell1_LBRACKET (_menhir_stack, _menhir_s, _startpos, _endpos) in let _menhir_s = MenhirState070 in let _tok = _menhir_lexer _menhir_lexbuf in (match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_050 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | SLASH -> _menhir_run_051 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LPAREN -> _menhir_run_056 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | LBRACKET -> _menhir_run_057 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | BAR | RBRACKET -> _menhir_reduce_52 _menhir_stack _menhir_lexbuf _menhir_lexer _endpos _menhir_s _tok | _ -> _eRR ()) | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR ()) | ACTION _ | AT | BAR | PARTIAL | QUESTION | RBRACKET | RPAREN | SEMI | SLASH | STAR | UNREACHABLE -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_73 _1 in _menhir_goto_symbol _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok | _ -> _eRR () and _menhir_run_109 : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_ident as 'stack) -> _ -> _ -> _ -> _ -> ('stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> let _menhir_stack = MenhirCell1_ident (_menhir_stack, _menhir_s, _v, _startpos) in match (_tok : MenhirBasics.token) with | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState109 | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState109 | IDENT _v_0 -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v_0 MenhirState109 | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer MenhirState109 | EQUAL -> let _v_1 = _menhir_action_26 () in _menhir_run_110 _menhir_stack _menhir_lexbuf _menhir_lexer _v_1 | _ -> _eRR () and _menhir_run_110 : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_ident, _menhir_box_parse_lexer_definition) _menhir_cell1_ident -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v -> let MenhirCell1_ident (_menhir_stack, _menhir_s, x, _) = _menhir_stack in let xs = _v in let _v = _menhir_action_27 x xs in _menhir_goto_list_ident_ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s and _menhir_goto_list_ident_ : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_ident as 'stack) -> _ -> _ -> _ -> ('stack, _menhir_box_parse_lexer_definition) _menhir_state -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s -> match _menhir_s with | MenhirState033 -> _menhir_run_034 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | MenhirState109 -> _menhir_run_110 _menhir_stack _menhir_lexbuf _menhir_lexer _v | _ -> _menhir_fail () and _menhir_goto_nonempty_list_positioned_filter_symbol__ : type ttv_stack ttv_result. ttv_stack -> _ -> _ -> _ -> (ttv_stack, ttv_result) _menhir_state -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok -> match _menhir_s with | MenhirState012 -> _menhir_run_013 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState009 -> _menhir_run_023 _menhir_stack _v _tok | MenhirState000 -> _menhir_run_026 _menhir_stack _v _tok | MenhirState053 -> _menhir_run_054 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | MenhirState051 -> _menhir_run_055 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_013 : type ttv_stack ttv_result. (ttv_stack, ttv_result) _menhir_cell1_positioned_filter_symbol_ -> _ -> _ -> _ -> _ -> ttv_result = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_positioned_filter_symbol_ (_menhir_stack, _menhir_s, x) = _menhir_stack in let xs = _v in let _v = _menhir_action_34 x xs in _menhir_goto_nonempty_list_positioned_filter_symbol__ _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s _tok and _menhir_run_054 : type ttv_stack. ((ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_SLASH, _menhir_box_parse_lexer_definition) _menhir_cell1_wild_symbol -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_wild_symbol (_menhir_stack, _, x, _) = _menhir_stack in let MenhirCell1_SLASH (_menhir_stack, _menhir_s, _startpos__1_) = _menhir_stack in let _2 = _v in let _v = _menhir_action_46 _2 _startpos__1_ x in _menhir_goto_regfilter _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_goto_regfilter : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> match _menhir_s with | MenhirState049 -> _menhir_run_074 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState056 -> _menhir_run_074 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState057 -> _menhir_run_074 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState070 -> _menhir_run_074 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState072 -> _menhir_run_074 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState092 -> _menhir_run_074 _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok | MenhirState061 -> _menhir_run_078 _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok | _ -> _menhir_fail () and _menhir_run_074 : type ttv_stack. ttv_stack -> _ -> _ -> _ -> _ -> (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_state -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _startpos _v _menhir_s _tok -> let (_startpos__1_, _1) = (_startpos, _v) in let _v = _menhir_action_56 _1 in _menhir_goto_regseq_loop _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_run_078 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_regseq_loop -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_regseq_loop (_menhir_stack, _menhir_s, _1, _startpos__1_) = _menhir_stack in let _2 = _v in let _v = _menhir_action_54 _1 _2 in _menhir_goto_regseq_loop _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok and _menhir_run_055 : type ttv_stack. (ttv_stack, _menhir_box_parse_lexer_definition) _menhir_cell1_SLASH -> _ -> _ -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer _v _tok -> let MenhirCell1_SLASH (_menhir_stack, _menhir_s, _startpos__1_) = _menhir_stack in let _2 = _v in let _v = _menhir_action_45 _2 _startpos__1_ in _menhir_goto_regfilter _menhir_stack _menhir_lexbuf _menhir_lexer _startpos__1_ _v _menhir_s _tok let _menhir_run_000 : type ttv_stack. ttv_stack -> _ -> _ -> _menhir_box_parse_filter = fun _menhir_stack _menhir_lexbuf _menhir_lexer -> let _menhir_s = MenhirState000 in let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | UNDERSCORE -> _menhir_run_001 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | RULE -> _menhir_run_003 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | PARSE -> _menhir_run_004 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | IDENT _v -> _menhir_run_005 _menhir_stack _menhir_lexbuf _menhir_lexer _v _menhir_s | ERROR -> _menhir_run_006 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | DOT -> _menhir_run_007 _menhir_stack _menhir_lexbuf _menhir_lexer _menhir_s | _ -> _eRR () let _menhir_run_028 : type ttv_stack. ttv_stack -> _ -> _ -> _menhir_box_parse_lexer_definition = fun _menhir_stack _menhir_lexbuf _menhir_lexer -> let _tok = _menhir_lexer _menhir_lexbuf in match (_tok : MenhirBasics.token) with | ACTION _v -> _menhir_run_029 _menhir_stack _menhir_lexbuf _menhir_lexer _v MenhirState028 | RULE -> let _v = _menhir_action_17 () in _menhir_run_031 _menhir_stack _menhir_lexbuf _menhir_lexer _v MenhirState028 _tok | _ -> _eRR () end let parse_lexer_definition = fun _menhir_lexer _menhir_lexbuf -> let _menhir_stack = () in let MenhirBox_parse_lexer_definition v = _menhir_run_028 _menhir_stack _menhir_lexbuf _menhir_lexer in v let parse_filter = fun _menhir_lexer _menhir_lexbuf -> let _menhir_stack = () in let MenhirBox_parse_filter v = _menhir_run_000 _menhir_stack _menhir_lexbuf _menhir_lexer in v # 187 "src/front/parser.mly" # 2706 "src/front/parser.ml"
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>