1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602
|
/* A Bison parser, made by GNU Bison 3.8.2. */
/* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,
Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
especially those whose name start with YY_ or yy_. They are
private implementation details that can be changed or removed. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output, and Bison version. */
#define YYBISON 30802
/* Bison version string. */
#define YYBISON_VERSION "3.8.2"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 1
/* Push parsers. */
#define YYPUSH 0
/* Pull parsers. */
#define YYPULL 1
/* Substitute the variable and function names. */
#define yyparse cmDependsJava_yyparse
#define yylex cmDependsJava_yylex
#define yyerror cmDependsJava_yyerror
#define yydebug cmDependsJava_yydebug
#define yynerrs cmDependsJava_yynerrs
/* First part of user prologue. */
#line 1 "cmDependsJavaParser.y"
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
/*
This file must be translated to C and modified to build everywhere.
Run bison like this:
bison --name-prefix=cmDependsJava_yy --defines=cmDependsJavaParserTokens.h -ocmDependsJavaParser.cxx cmDependsJavaParser.y
*/
#include "cmConfigure.h" // IWYU pragma: keep
#include <stdlib.h>
#include <string.h>
#include <string>
#define yyGetParser (cmDependsJava_yyget_extra(yyscanner))
/*-------------------------------------------------------------------------*/
#include "cmDependsJavaParserHelper.h" /* Interface to parser object. */
#include "cmDependsJavaLexer.h" /* Interface to lexer object. */
/* Forward declare the lexer entry point. */
YY_DECL;
/* Helper function to forward error callback from parser. */
static void cmDependsJava_yyerror(yyscan_t yyscanner, const char* message);
#define YYMAXDEPTH 1000000
#define jpCheckEmpty(cnt) yyGetParser->CheckEmpty(__LINE__, cnt, yyvsp)
#define jpElementStart(cnt) yyGetParser->PrepareElement(&yyval)
#define jpStoreClass(str) yyGetParser->AddClassFound(str); yyGetParser->DeallocateParserType(&(str))
/* Disable some warnings in the generated code. */
#ifdef _MSC_VER
# pragma warning (disable: 4102) /* Unused goto label. */
# pragma warning (disable: 4065) /* Switch statement contains default but no case. */
#endif
#if defined(__GNUC__) && __GNUC__ >= 8
# pragma GCC diagnostic ignored "-Wconversion"
# pragma GCC diagnostic ignored "-Wfree-nonheap-object"
#endif
#if defined(__clang__) && defined(__has_warning)
# if __has_warning("-Wunused-but-set-variable")
# pragma clang diagnostic ignored "-Wunused-but-set-variable"
# endif
#endif
#line 129 "cmDependsJavaParser.cxx"
# ifndef YY_CAST
# ifdef __cplusplus
# define YY_CAST(Type, Val) static_cast<Type> (Val)
# define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast<Type> (Val)
# else
# define YY_CAST(Type, Val) ((Type) (Val))
# define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val))
# endif
# endif
# ifndef YY_NULLPTR
# if defined __cplusplus
# if 201103L <= __cplusplus
# define YY_NULLPTR nullptr
# else
# define YY_NULLPTR 0
# endif
# else
# define YY_NULLPTR ((void*)0)
# endif
# endif
#include "cmDependsJavaParserTokens.h"
/* Symbol kind. */
enum yysymbol_kind_t
{
YYSYMBOL_YYEMPTY = -2,
YYSYMBOL_YYEOF = 0, /* "end of file" */
YYSYMBOL_YYerror = 1, /* error */
YYSYMBOL_YYUNDEF = 2, /* "invalid token" */
YYSYMBOL_jp_ABSTRACT = 3, /* jp_ABSTRACT */
YYSYMBOL_jp_ASSERT = 4, /* jp_ASSERT */
YYSYMBOL_jp_BOOLEAN_TYPE = 5, /* jp_BOOLEAN_TYPE */
YYSYMBOL_jp_BREAK = 6, /* jp_BREAK */
YYSYMBOL_jp_BYTE_TYPE = 7, /* jp_BYTE_TYPE */
YYSYMBOL_jp_CASE = 8, /* jp_CASE */
YYSYMBOL_jp_CATCH = 9, /* jp_CATCH */
YYSYMBOL_jp_CHAR_TYPE = 10, /* jp_CHAR_TYPE */
YYSYMBOL_jp_CLASS = 11, /* jp_CLASS */
YYSYMBOL_jp_CONTINUE = 12, /* jp_CONTINUE */
YYSYMBOL_jp_DEFAULT = 13, /* jp_DEFAULT */
YYSYMBOL_jp_DO = 14, /* jp_DO */
YYSYMBOL_jp_DOUBLE_TYPE = 15, /* jp_DOUBLE_TYPE */
YYSYMBOL_jp_ELSE = 16, /* jp_ELSE */
YYSYMBOL_jp_EXTENDS = 17, /* jp_EXTENDS */
YYSYMBOL_jp_FINAL = 18, /* jp_FINAL */
YYSYMBOL_jp_FINALLY = 19, /* jp_FINALLY */
YYSYMBOL_jp_FLOAT_TYPE = 20, /* jp_FLOAT_TYPE */
YYSYMBOL_jp_FOR = 21, /* jp_FOR */
YYSYMBOL_jp_IF = 22, /* jp_IF */
YYSYMBOL_jp_IMPLEMENTS = 23, /* jp_IMPLEMENTS */
YYSYMBOL_jp_IMPORT = 24, /* jp_IMPORT */
YYSYMBOL_jp_INSTANCEOF = 25, /* jp_INSTANCEOF */
YYSYMBOL_jp_INT_TYPE = 26, /* jp_INT_TYPE */
YYSYMBOL_jp_INTERFACE = 27, /* jp_INTERFACE */
YYSYMBOL_jp_LONG_TYPE = 28, /* jp_LONG_TYPE */
YYSYMBOL_jp_NATIVE = 29, /* jp_NATIVE */
YYSYMBOL_jp_NEW = 30, /* jp_NEW */
YYSYMBOL_jp_PACKAGE = 31, /* jp_PACKAGE */
YYSYMBOL_jp_PRIVATE = 32, /* jp_PRIVATE */
YYSYMBOL_jp_PROTECTED = 33, /* jp_PROTECTED */
YYSYMBOL_jp_PUBLIC = 34, /* jp_PUBLIC */
YYSYMBOL_jp_RETURN = 35, /* jp_RETURN */
YYSYMBOL_jp_SHORT_TYPE = 36, /* jp_SHORT_TYPE */
YYSYMBOL_jp_STATIC = 37, /* jp_STATIC */
YYSYMBOL_jp_STRICTFP = 38, /* jp_STRICTFP */
YYSYMBOL_jp_SUPER = 39, /* jp_SUPER */
YYSYMBOL_jp_SWITCH = 40, /* jp_SWITCH */
YYSYMBOL_jp_SYNCHRONIZED = 41, /* jp_SYNCHRONIZED */
YYSYMBOL_jp_THIS = 42, /* jp_THIS */
YYSYMBOL_jp_THROW = 43, /* jp_THROW */
YYSYMBOL_jp_THROWS = 44, /* jp_THROWS */
YYSYMBOL_jp_TRANSIENT = 45, /* jp_TRANSIENT */
YYSYMBOL_jp_TRY = 46, /* jp_TRY */
YYSYMBOL_jp_VOID = 47, /* jp_VOID */
YYSYMBOL_jp_VOLATILE = 48, /* jp_VOLATILE */
YYSYMBOL_jp_WHILE = 49, /* jp_WHILE */
YYSYMBOL_jp_BOOLEANLITERAL = 50, /* jp_BOOLEANLITERAL */
YYSYMBOL_jp_CHARACTERLITERAL = 51, /* jp_CHARACTERLITERAL */
YYSYMBOL_jp_DECIMALINTEGERLITERAL = 52, /* jp_DECIMALINTEGERLITERAL */
YYSYMBOL_jp_FLOATINGPOINTLITERAL = 53, /* jp_FLOATINGPOINTLITERAL */
YYSYMBOL_jp_HEXINTEGERLITERAL = 54, /* jp_HEXINTEGERLITERAL */
YYSYMBOL_jp_NULLLITERAL = 55, /* jp_NULLLITERAL */
YYSYMBOL_jp_STRINGLITERAL = 56, /* jp_STRINGLITERAL */
YYSYMBOL_jp_NAME = 57, /* jp_NAME */
YYSYMBOL_jp_AND = 58, /* jp_AND */
YYSYMBOL_jp_ANDAND = 59, /* jp_ANDAND */
YYSYMBOL_jp_ANDEQUALS = 60, /* jp_ANDEQUALS */
YYSYMBOL_jp_BRACKETEND = 61, /* jp_BRACKETEND */
YYSYMBOL_jp_BRACKETSTART = 62, /* jp_BRACKETSTART */
YYSYMBOL_jp_CARROT = 63, /* jp_CARROT */
YYSYMBOL_jp_CARROTEQUALS = 64, /* jp_CARROTEQUALS */
YYSYMBOL_jp_COLON = 65, /* jp_COLON */
YYSYMBOL_jp_COMMA = 66, /* jp_COMMA */
YYSYMBOL_jp_CURLYEND = 67, /* jp_CURLYEND */
YYSYMBOL_jp_CURLYSTART = 68, /* jp_CURLYSTART */
YYSYMBOL_jp_DIVIDE = 69, /* jp_DIVIDE */
YYSYMBOL_jp_DIVIDEEQUALS = 70, /* jp_DIVIDEEQUALS */
YYSYMBOL_jp_DOLLAR = 71, /* jp_DOLLAR */
YYSYMBOL_jp_DOT = 72, /* jp_DOT */
YYSYMBOL_jp_EQUALS = 73, /* jp_EQUALS */
YYSYMBOL_jp_EQUALSEQUALS = 74, /* jp_EQUALSEQUALS */
YYSYMBOL_jp_EXCLAMATION = 75, /* jp_EXCLAMATION */
YYSYMBOL_jp_EXCLAMATIONEQUALS = 76, /* jp_EXCLAMATIONEQUALS */
YYSYMBOL_jp_GREATER = 77, /* jp_GREATER */
YYSYMBOL_jp_GTEQUALS = 78, /* jp_GTEQUALS */
YYSYMBOL_jp_GTGT = 79, /* jp_GTGT */
YYSYMBOL_jp_GTGTEQUALS = 80, /* jp_GTGTEQUALS */
YYSYMBOL_jp_GTGTGT = 81, /* jp_GTGTGT */
YYSYMBOL_jp_GTGTGTEQUALS = 82, /* jp_GTGTGTEQUALS */
YYSYMBOL_jp_LESLESEQUALS = 83, /* jp_LESLESEQUALS */
YYSYMBOL_jp_LESSTHAN = 84, /* jp_LESSTHAN */
YYSYMBOL_jp_LTEQUALS = 85, /* jp_LTEQUALS */
YYSYMBOL_jp_LTLT = 86, /* jp_LTLT */
YYSYMBOL_jp_MINUS = 87, /* jp_MINUS */
YYSYMBOL_jp_MINUSEQUALS = 88, /* jp_MINUSEQUALS */
YYSYMBOL_jp_MINUSMINUS = 89, /* jp_MINUSMINUS */
YYSYMBOL_jp_PAREEND = 90, /* jp_PAREEND */
YYSYMBOL_jp_PARESTART = 91, /* jp_PARESTART */
YYSYMBOL_jp_PERCENT = 92, /* jp_PERCENT */
YYSYMBOL_jp_PERCENTEQUALS = 93, /* jp_PERCENTEQUALS */
YYSYMBOL_jp_PIPE = 94, /* jp_PIPE */
YYSYMBOL_jp_PIPEEQUALS = 95, /* jp_PIPEEQUALS */
YYSYMBOL_jp_PIPEPIPE = 96, /* jp_PIPEPIPE */
YYSYMBOL_jp_PLUS = 97, /* jp_PLUS */
YYSYMBOL_jp_PLUSEQUALS = 98, /* jp_PLUSEQUALS */
YYSYMBOL_jp_PLUSPLUS = 99, /* jp_PLUSPLUS */
YYSYMBOL_jp_QUESTION = 100, /* jp_QUESTION */
YYSYMBOL_jp_SEMICOL = 101, /* jp_SEMICOL */
YYSYMBOL_jp_TILDE = 102, /* jp_TILDE */
YYSYMBOL_jp_TIMES = 103, /* jp_TIMES */
YYSYMBOL_jp_TIMESEQUALS = 104, /* jp_TIMESEQUALS */
YYSYMBOL_jp_ERROR = 105, /* jp_ERROR */
YYSYMBOL_YYACCEPT = 106, /* $accept */
YYSYMBOL_Goal = 107, /* Goal */
YYSYMBOL_Literal = 108, /* Literal */
YYSYMBOL_IntegerLiteral = 109, /* IntegerLiteral */
YYSYMBOL_Type = 110, /* Type */
YYSYMBOL_PrimitiveType = 111, /* PrimitiveType */
YYSYMBOL_ReferenceType = 112, /* ReferenceType */
YYSYMBOL_ClassOrInterfaceType = 113, /* ClassOrInterfaceType */
YYSYMBOL_ClassType = 114, /* ClassType */
YYSYMBOL_InterfaceType = 115, /* InterfaceType */
YYSYMBOL_ArrayType = 116, /* ArrayType */
YYSYMBOL_Name = 117, /* Name */
YYSYMBOL_SimpleName = 118, /* SimpleName */
YYSYMBOL_Identifier = 119, /* Identifier */
YYSYMBOL_QualifiedName = 120, /* QualifiedName */
YYSYMBOL_SimpleType = 121, /* SimpleType */
YYSYMBOL_CompilationUnit = 122, /* CompilationUnit */
YYSYMBOL_PackageDeclarationopt = 123, /* PackageDeclarationopt */
YYSYMBOL_ImportDeclarations = 124, /* ImportDeclarations */
YYSYMBOL_TypeDeclarations = 125, /* TypeDeclarations */
YYSYMBOL_PackageDeclaration = 126, /* PackageDeclaration */
YYSYMBOL_ImportDeclaration = 127, /* ImportDeclaration */
YYSYMBOL_SingleTypeImportDeclaration = 128, /* SingleTypeImportDeclaration */
YYSYMBOL_TypeImportOnDemandDeclaration = 129, /* TypeImportOnDemandDeclaration */
YYSYMBOL_TypeDeclaration = 130, /* TypeDeclaration */
YYSYMBOL_Modifiers = 131, /* Modifiers */
YYSYMBOL_Modifier = 132, /* Modifier */
YYSYMBOL_ClassHeader = 133, /* ClassHeader */
YYSYMBOL_ClassDeclaration = 134, /* ClassDeclaration */
YYSYMBOL_Modifiersopt = 135, /* Modifiersopt */
YYSYMBOL_Super = 136, /* Super */
YYSYMBOL_Interfaces = 137, /* Interfaces */
YYSYMBOL_InterfaceTypeList = 138, /* InterfaceTypeList */
YYSYMBOL_ClassBody = 139, /* ClassBody */
YYSYMBOL_ClassBodyDeclarations = 140, /* ClassBodyDeclarations */
YYSYMBOL_ClassBodyDeclaration = 141, /* ClassBodyDeclaration */
YYSYMBOL_ClassMemberDeclaration = 142, /* ClassMemberDeclaration */
YYSYMBOL_FieldDeclaration = 143, /* FieldDeclaration */
YYSYMBOL_VariableDeclarators = 144, /* VariableDeclarators */
YYSYMBOL_VariableDeclarator = 145, /* VariableDeclarator */
YYSYMBOL_VariableDeclaratorId = 146, /* VariableDeclaratorId */
YYSYMBOL_VariableInitializer = 147, /* VariableInitializer */
YYSYMBOL_MethodDeclaration = 148, /* MethodDeclaration */
YYSYMBOL_MethodHeader = 149, /* MethodHeader */
YYSYMBOL_Throwsopt = 150, /* Throwsopt */
YYSYMBOL_MethodDeclarator = 151, /* MethodDeclarator */
YYSYMBOL_FormalParameterListopt = 152, /* FormalParameterListopt */
YYSYMBOL_FormalParameterList = 153, /* FormalParameterList */
YYSYMBOL_FormalParameter = 154, /* FormalParameter */
YYSYMBOL_Throws = 155, /* Throws */
YYSYMBOL_ClassTypeList = 156, /* ClassTypeList */
YYSYMBOL_MethodBody = 157, /* MethodBody */
YYSYMBOL_StaticInitializer = 158, /* StaticInitializer */
YYSYMBOL_ConstructorDeclaration = 159, /* ConstructorDeclaration */
YYSYMBOL_ConstructorDeclarator = 160, /* ConstructorDeclarator */
YYSYMBOL_ConstructorBody = 161, /* ConstructorBody */
YYSYMBOL_ExplicitConstructorInvocationopt = 162, /* ExplicitConstructorInvocationopt */
YYSYMBOL_ExplicitConstructorInvocation = 163, /* ExplicitConstructorInvocation */
YYSYMBOL_InterfaceHeader = 164, /* InterfaceHeader */
YYSYMBOL_InterfaceDeclaration = 165, /* InterfaceDeclaration */
YYSYMBOL_ExtendsInterfacesopt = 166, /* ExtendsInterfacesopt */
YYSYMBOL_ExtendsInterfaces = 167, /* ExtendsInterfaces */
YYSYMBOL_InterfaceBody = 168, /* InterfaceBody */
YYSYMBOL_InterfaceMemberDeclarations = 169, /* InterfaceMemberDeclarations */
YYSYMBOL_InterfaceMemberDeclaration = 170, /* InterfaceMemberDeclaration */
YYSYMBOL_ConstantDeclaration = 171, /* ConstantDeclaration */
YYSYMBOL_AbstractMethodDeclaration = 172, /* AbstractMethodDeclaration */
YYSYMBOL_Semicols = 173, /* Semicols */
YYSYMBOL_ArrayInitializer = 174, /* ArrayInitializer */
YYSYMBOL_VariableInitializersOptional = 175, /* VariableInitializersOptional */
YYSYMBOL_VariableInitializers = 176, /* VariableInitializers */
YYSYMBOL_Block = 177, /* Block */
YYSYMBOL_BlockStatementsopt = 178, /* BlockStatementsopt */
YYSYMBOL_BlockStatements = 179, /* BlockStatements */
YYSYMBOL_BlockStatement = 180, /* BlockStatement */
YYSYMBOL_LocalVariableDeclarationStatement = 181, /* LocalVariableDeclarationStatement */
YYSYMBOL_LocalVariableDeclaration = 182, /* LocalVariableDeclaration */
YYSYMBOL_Statement = 183, /* Statement */
YYSYMBOL_StatementNoShortIf = 184, /* StatementNoShortIf */
YYSYMBOL_StatementWithoutTrailingSubstatement = 185, /* StatementWithoutTrailingSubstatement */
YYSYMBOL_EmptyStatement = 186, /* EmptyStatement */
YYSYMBOL_LabeledStatement = 187, /* LabeledStatement */
YYSYMBOL_LabeledStatementNoShortIf = 188, /* LabeledStatementNoShortIf */
YYSYMBOL_ExpressionStatement = 189, /* ExpressionStatement */
YYSYMBOL_StatementExpression = 190, /* StatementExpression */
YYSYMBOL_IfThenStatement = 191, /* IfThenStatement */
YYSYMBOL_IfThenElseStatement = 192, /* IfThenElseStatement */
YYSYMBOL_IfThenElseStatementNoShortIf = 193, /* IfThenElseStatementNoShortIf */
YYSYMBOL_SwitchStatement = 194, /* SwitchStatement */
YYSYMBOL_SwitchBlock = 195, /* SwitchBlock */
YYSYMBOL_SwitchLabelsopt = 196, /* SwitchLabelsopt */
YYSYMBOL_SwitchBlockStatementGroups = 197, /* SwitchBlockStatementGroups */
YYSYMBOL_SwitchBlockStatementGroup = 198, /* SwitchBlockStatementGroup */
YYSYMBOL_SwitchLabels = 199, /* SwitchLabels */
YYSYMBOL_SwitchLabel = 200, /* SwitchLabel */
YYSYMBOL_WhileStatement = 201, /* WhileStatement */
YYSYMBOL_WhileStatementNoShortIf = 202, /* WhileStatementNoShortIf */
YYSYMBOL_DoStatement = 203, /* DoStatement */
YYSYMBOL_ForStatement = 204, /* ForStatement */
YYSYMBOL_ForUpdateopt = 205, /* ForUpdateopt */
YYSYMBOL_ForInitopt = 206, /* ForInitopt */
YYSYMBOL_ForStatementNoShortIf = 207, /* ForStatementNoShortIf */
YYSYMBOL_Expressionopt = 208, /* Expressionopt */
YYSYMBOL_ForInit = 209, /* ForInit */
YYSYMBOL_ForUpdate = 210, /* ForUpdate */
YYSYMBOL_StatementExpressionList = 211, /* StatementExpressionList */
YYSYMBOL_AssertStatement = 212, /* AssertStatement */
YYSYMBOL_BreakStatement = 213, /* BreakStatement */
YYSYMBOL_Identifieropt = 214, /* Identifieropt */
YYSYMBOL_ContinueStatement = 215, /* ContinueStatement */
YYSYMBOL_ReturnStatement = 216, /* ReturnStatement */
YYSYMBOL_ThrowStatement = 217, /* ThrowStatement */
YYSYMBOL_SynchronizedStatement = 218, /* SynchronizedStatement */
YYSYMBOL_TryStatement = 219, /* TryStatement */
YYSYMBOL_Catchesopt = 220, /* Catchesopt */
YYSYMBOL_Catches = 221, /* Catches */
YYSYMBOL_CatchClause = 222, /* CatchClause */
YYSYMBOL_Finally = 223, /* Finally */
YYSYMBOL_Primary = 224, /* Primary */
YYSYMBOL_PrimaryNoNewArray = 225, /* PrimaryNoNewArray */
YYSYMBOL_ClassInstanceCreationExpression = 226, /* ClassInstanceCreationExpression */
YYSYMBOL_ClassBodyOpt = 227, /* ClassBodyOpt */
YYSYMBOL_ArgumentListopt = 228, /* ArgumentListopt */
YYSYMBOL_ArgumentList = 229, /* ArgumentList */
YYSYMBOL_ArrayCreationExpression = 230, /* ArrayCreationExpression */
YYSYMBOL_Dimsopt = 231, /* Dimsopt */
YYSYMBOL_DimExprs = 232, /* DimExprs */
YYSYMBOL_DimExpr = 233, /* DimExpr */
YYSYMBOL_Dims = 234, /* Dims */
YYSYMBOL_FieldAccess = 235, /* FieldAccess */
YYSYMBOL_MethodInvocation = 236, /* MethodInvocation */
YYSYMBOL_ArrayAccess = 237, /* ArrayAccess */
YYSYMBOL_PostfixExpression = 238, /* PostfixExpression */
YYSYMBOL_PostIncrementExpression = 239, /* PostIncrementExpression */
YYSYMBOL_PostDecrementExpression = 240, /* PostDecrementExpression */
YYSYMBOL_UnaryExpression = 241, /* UnaryExpression */
YYSYMBOL_PreIncrementExpression = 242, /* PreIncrementExpression */
YYSYMBOL_PreDecrementExpression = 243, /* PreDecrementExpression */
YYSYMBOL_UnaryExpressionNotPlusMinus = 244, /* UnaryExpressionNotPlusMinus */
YYSYMBOL_CastExpression = 245, /* CastExpression */
YYSYMBOL_MultiplicativeExpression = 246, /* MultiplicativeExpression */
YYSYMBOL_AdditiveExpression = 247, /* AdditiveExpression */
YYSYMBOL_ShiftExpression = 248, /* ShiftExpression */
YYSYMBOL_RelationalExpression = 249, /* RelationalExpression */
YYSYMBOL_EqualityExpression = 250, /* EqualityExpression */
YYSYMBOL_AndExpression = 251, /* AndExpression */
YYSYMBOL_ExclusiveOrExpression = 252, /* ExclusiveOrExpression */
YYSYMBOL_InclusiveOrExpression = 253, /* InclusiveOrExpression */
YYSYMBOL_ConditionalAndExpression = 254, /* ConditionalAndExpression */
YYSYMBOL_ConditionalOrExpression = 255, /* ConditionalOrExpression */
YYSYMBOL_ConditionalExpression = 256, /* ConditionalExpression */
YYSYMBOL_AssignmentExpression = 257, /* AssignmentExpression */
YYSYMBOL_Assignment = 258, /* Assignment */
YYSYMBOL_LeftHandSide = 259, /* LeftHandSide */
YYSYMBOL_AssignmentOperator = 260, /* AssignmentOperator */
YYSYMBOL_Expression = 261, /* Expression */
YYSYMBOL_ConstantExpression = 262, /* ConstantExpression */
YYSYMBOL_New = 263 /* New */
};
typedef enum yysymbol_kind_t yysymbol_kind_t;
#ifdef short
# undef short
#endif
/* On compilers that do not define __PTRDIFF_MAX__ etc., make sure
<limits.h> and (if available) <stdint.h> are included
so that the code can choose integer types of a good width. */
#ifndef __PTRDIFF_MAX__
# include <limits.h> /* INFRINGES ON USER NAME SPACE */
# if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stdint.h> /* INFRINGES ON USER NAME SPACE */
# define YY_STDINT_H
# endif
#endif
/* Narrow types that promote to a signed type and that can represent a
signed or unsigned integer of at least N bits. In tables they can
save space and decrease cache pressure. Promoting to a signed type
helps avoid bugs in integer arithmetic. */
#ifdef __INT_LEAST8_MAX__
typedef __INT_LEAST8_TYPE__ yytype_int8;
#elif defined YY_STDINT_H
typedef int_least8_t yytype_int8;
#else
typedef signed char yytype_int8;
#endif
#ifdef __INT_LEAST16_MAX__
typedef __INT_LEAST16_TYPE__ yytype_int16;
#elif defined YY_STDINT_H
typedef int_least16_t yytype_int16;
#else
typedef short yytype_int16;
#endif
/* Work around bug in HP-UX 11.23, which defines these macros
incorrectly for preprocessor constants. This workaround can likely
be removed in 2023, as HPE has promised support for HP-UX 11.23
(aka HP-UX 11i v2) only through the end of 2022; see Table 2 of
<https://h20195.www2.hpe.com/V2/getpdf.aspx/4AA4-7673ENW.pdf>. */
#ifdef __hpux
# undef UINT_LEAST8_MAX
# undef UINT_LEAST16_MAX
# define UINT_LEAST8_MAX 255
# define UINT_LEAST16_MAX 65535
#endif
#if defined __UINT_LEAST8_MAX__ && __UINT_LEAST8_MAX__ <= __INT_MAX__
typedef __UINT_LEAST8_TYPE__ yytype_uint8;
#elif (!defined __UINT_LEAST8_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST8_MAX <= INT_MAX)
typedef uint_least8_t yytype_uint8;
#elif !defined __UINT_LEAST8_MAX__ && UCHAR_MAX <= INT_MAX
typedef unsigned char yytype_uint8;
#else
typedef short yytype_uint8;
#endif
#if defined __UINT_LEAST16_MAX__ && __UINT_LEAST16_MAX__ <= __INT_MAX__
typedef __UINT_LEAST16_TYPE__ yytype_uint16;
#elif (!defined __UINT_LEAST16_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST16_MAX <= INT_MAX)
typedef uint_least16_t yytype_uint16;
#elif !defined __UINT_LEAST16_MAX__ && USHRT_MAX <= INT_MAX
typedef unsigned short yytype_uint16;
#else
typedef int yytype_uint16;
#endif
#ifndef YYPTRDIFF_T
# if defined __PTRDIFF_TYPE__ && defined __PTRDIFF_MAX__
# define YYPTRDIFF_T __PTRDIFF_TYPE__
# define YYPTRDIFF_MAXIMUM __PTRDIFF_MAX__
# elif defined PTRDIFF_MAX
# ifndef ptrdiff_t
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# endif
# define YYPTRDIFF_T ptrdiff_t
# define YYPTRDIFF_MAXIMUM PTRDIFF_MAX
# else
# define YYPTRDIFF_T long
# define YYPTRDIFF_MAXIMUM LONG_MAX
# endif
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
# elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned
# endif
#endif
#define YYSIZE_MAXIMUM \
YY_CAST (YYPTRDIFF_T, \
(YYPTRDIFF_MAXIMUM < YY_CAST (YYSIZE_T, -1) \
? YYPTRDIFF_MAXIMUM \
: YY_CAST (YYSIZE_T, -1)))
#define YYSIZEOF(X) YY_CAST (YYPTRDIFF_T, sizeof (X))
/* Stored state numbers (used for stacks). */
typedef yytype_int16 yy_state_t;
/* State numbers in computations. */
typedef int yy_state_fast_t;
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
# endif
# endif
# ifndef YY_
# define YY_(Msgid) Msgid
# endif
#endif
#ifndef YY_ATTRIBUTE_PURE
# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_PURE __attribute__ ((__pure__))
# else
# define YY_ATTRIBUTE_PURE
# endif
#endif
#ifndef YY_ATTRIBUTE_UNUSED
# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
# else
# define YY_ATTRIBUTE_UNUSED
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YY_USE(E) ((void) (E))
#else
# define YY_USE(E) /* empty */
#endif
/* Suppress an incorrect diagnostic about yylval being uninitialized. */
#if defined __GNUC__ && ! defined __ICC && 406 <= __GNUC__ * 100 + __GNUC_MINOR__
# if __GNUC__ * 100 + __GNUC_MINOR__ < 407
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")
# else
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
# endif
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#else
# define YY_INITIAL_VALUE(Value) Value
#endif
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
#if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__
# define YY_IGNORE_USELESS_CAST_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"")
# define YY_IGNORE_USELESS_CAST_END \
_Pragma ("GCC diagnostic pop")
#endif
#ifndef YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_END
#endif
#define YY_ASSERT(E) ((void) (0 && (E)))
#if 1
/* The parser invokes alloca or malloc; define the necessary symbols. */
# ifdef YYSTACK_USE_ALLOCA
# if YYSTACK_USE_ALLOCA
# ifdef __GNUC__
# define YYSTACK_ALLOC __builtin_alloca
# elif defined __BUILTIN_VA_ARG_INCR
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
# elif defined _AIX
# define YYSTACK_ALLOC __alloca
# elif defined _MSC_VER
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
/* Use EXIT_SUCCESS as a witness for stdlib.h. */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# endif
# endif
# endif
# ifdef YYSTACK_ALLOC
/* Pacify GCC's 'empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
# ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined EXIT_SUCCESS \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined EXIT_SUCCESS
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined EXIT_SUCCESS
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
#endif /* 1 */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
|| (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
yy_state_t yyss_alloc;
YYSTYPE yyvs_alloc;
};
/* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (YYSIZEOF (union yyalloc) - 1)
/* The size of an array large to enough to hold all stacks, each with
N elements. */
# define YYSTACK_BYTES(N) \
((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM)
# define YYCOPY_NEEDED 1
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
do \
{ \
YYPTRDIFF_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \
yynewbytes = yystacksize * YYSIZEOF (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / YYSIZEOF (*yyptr); \
} \
while (0)
#endif
#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from SRC to DST. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(Dst, Src, Count) \
__builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src)))
# else
# define YYCOPY(Dst, Src, Count) \
do \
{ \
YYPTRDIFF_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(Dst)[yyi] = (Src)[yyi]; \
} \
while (0)
# endif
# endif
#endif /* !YYCOPY_NEEDED */
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 23
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 2215
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 106
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 158
/* YYNRULES -- Number of rules. */
#define YYNRULES 351
/* YYNSTATES -- Number of states. */
#define YYNSTATES 575
/* YYMAXUTOK -- Last valid token kind. */
#define YYMAXUTOK 360
/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM
as returned by yylex, with out-of-bounds checking. */
#define YYTRANSLATE(YYX) \
(0 <= (YYX) && (YYX) <= YYMAXUTOK \
? YY_CAST (yysymbol_kind_t, yytranslate[YYX]) \
: YYSYMBOL_YYUNDEF)
/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
as returned by yylex. */
static const yytype_int8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 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
};
#if YYDEBUG
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
static const yytype_int16 yyrline[] =
{
0, 184, 184, 193, 201, 209, 217, 225, 233, 242,
250, 259, 267, 276, 281, 286, 291, 296, 301, 306,
311, 317, 325, 334, 344, 353, 362, 370, 380, 386,
393, 400, 406, 413, 422, 432, 442, 451, 459, 468,
477, 483, 492, 498, 507, 513, 522, 534, 542, 551,
563, 576, 584, 592, 601, 609, 618, 618, 618, 619,
620, 620, 620, 620, 620, 620, 621, 624, 634, 643,
652, 661, 671, 677, 686, 695, 704, 712, 721, 730,
736, 745, 753, 761, 769, 778, 786, 795, 801, 809,
818, 826, 835, 844, 853, 861, 870, 878, 886, 895,
904, 914, 921, 931, 941, 948, 955, 958, 964, 974,
984, 994, 1000, 1010, 1020, 1030, 1039, 1049, 1060, 1070,
1077, 1087, 1096, 1106, 1115, 1125, 1131, 1141, 1150, 1160,
1170, 1177, 1186, 1195, 1204, 1213, 1221, 1230, 1239, 1249,
1259, 1268, 1278, 1288, 1295, 1304, 1314, 1323, 1333, 1342,
1349, 1359, 1368, 1378, 1387, 1396, 1406, 1416, 1425, 1435,
1444, 1453, 1462, 1471, 1480, 1490, 1499, 1508, 1517, 1526,
1536, 1545, 1554, 1563, 1572, 1581, 1590, 1599, 1608, 1617,
1626, 1635, 1645, 1655, 1666, 1676, 1686, 1695, 1704, 1713,
1722, 1731, 1740, 1750, 1760, 1770, 1780, 1787, 1794, 1801,
1811, 1818, 1828, 1838, 1847, 1857, 1866, 1876, 1883, 1890,
1897, 1905, 1912, 1922, 1929, 1939, 1949, 1956, 1966, 1975,
1985, 1995, 2004, 2014, 2023, 2033, 2044, 2051, 2058, 2069,
2079, 2089, 2099, 2108, 2118, 2125, 2135, 2144, 2154, 2161,
2171, 2180, 2190, 2199, 2205, 2214, 2223, 2232, 2241, 2251,
2261, 2268, 2278, 2285, 2295, 2304, 2314, 2323, 2332, 2341,
2351, 2358, 2368, 2377, 2387, 2397, 2403, 2410, 2420, 2430,
2440, 2451, 2461, 2472, 2482, 2493, 2503, 2513, 2522, 2531,
2540, 2549, 2559, 2569, 2579, 2588, 2597, 2606, 2615, 2625,
2635, 2645, 2654, 2663, 2672, 2682, 2691, 2700, 2707, 2716,
2725, 2734, 2744, 2753, 2762, 2772, 2781, 2790, 2799, 2809,
2818, 2827, 2836, 2845, 2854, 2864, 2873, 2882, 2892, 2901,
2911, 2920, 2930, 2939, 2949, 2958, 2968, 2977, 2987, 2996,
3006, 3015, 3025, 3035, 3045, 3054, 3064, 3073, 3082, 3091,
3100, 3109, 3118, 3127, 3136, 3145, 3154, 3163, 3173, 3183,
3193, 3202
};
#endif
/** Accessing symbol of state STATE. */
#define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State])
#if 1
/* The user-facing name of the symbol whose (internal) number is
YYSYMBOL. No bounds checking. */
static const char *yysymbol_name (yysymbol_kind_t yysymbol) YY_ATTRIBUTE_UNUSED;
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
static const char *const yytname[] =
{
"\"end of file\"", "error", "\"invalid token\"", "jp_ABSTRACT",
"jp_ASSERT", "jp_BOOLEAN_TYPE", "jp_BREAK", "jp_BYTE_TYPE", "jp_CASE",
"jp_CATCH", "jp_CHAR_TYPE", "jp_CLASS", "jp_CONTINUE", "jp_DEFAULT",
"jp_DO", "jp_DOUBLE_TYPE", "jp_ELSE", "jp_EXTENDS", "jp_FINAL",
"jp_FINALLY", "jp_FLOAT_TYPE", "jp_FOR", "jp_IF", "jp_IMPLEMENTS",
"jp_IMPORT", "jp_INSTANCEOF", "jp_INT_TYPE", "jp_INTERFACE",
"jp_LONG_TYPE", "jp_NATIVE", "jp_NEW", "jp_PACKAGE", "jp_PRIVATE",
"jp_PROTECTED", "jp_PUBLIC", "jp_RETURN", "jp_SHORT_TYPE", "jp_STATIC",
"jp_STRICTFP", "jp_SUPER", "jp_SWITCH", "jp_SYNCHRONIZED", "jp_THIS",
"jp_THROW", "jp_THROWS", "jp_TRANSIENT", "jp_TRY", "jp_VOID",
"jp_VOLATILE", "jp_WHILE", "jp_BOOLEANLITERAL", "jp_CHARACTERLITERAL",
"jp_DECIMALINTEGERLITERAL", "jp_FLOATINGPOINTLITERAL",
"jp_HEXINTEGERLITERAL", "jp_NULLLITERAL", "jp_STRINGLITERAL", "jp_NAME",
"jp_AND", "jp_ANDAND", "jp_ANDEQUALS", "jp_BRACKETEND",
"jp_BRACKETSTART", "jp_CARROT", "jp_CARROTEQUALS", "jp_COLON",
"jp_COMMA", "jp_CURLYEND", "jp_CURLYSTART", "jp_DIVIDE",
"jp_DIVIDEEQUALS", "jp_DOLLAR", "jp_DOT", "jp_EQUALS", "jp_EQUALSEQUALS",
"jp_EXCLAMATION", "jp_EXCLAMATIONEQUALS", "jp_GREATER", "jp_GTEQUALS",
"jp_GTGT", "jp_GTGTEQUALS", "jp_GTGTGT", "jp_GTGTGTEQUALS",
"jp_LESLESEQUALS", "jp_LESSTHAN", "jp_LTEQUALS", "jp_LTLT", "jp_MINUS",
"jp_MINUSEQUALS", "jp_MINUSMINUS", "jp_PAREEND", "jp_PARESTART",
"jp_PERCENT", "jp_PERCENTEQUALS", "jp_PIPE", "jp_PIPEEQUALS",
"jp_PIPEPIPE", "jp_PLUS", "jp_PLUSEQUALS", "jp_PLUSPLUS", "jp_QUESTION",
"jp_SEMICOL", "jp_TILDE", "jp_TIMES", "jp_TIMESEQUALS", "jp_ERROR",
"$accept", "Goal", "Literal", "IntegerLiteral", "Type", "PrimitiveType",
"ReferenceType", "ClassOrInterfaceType", "ClassType", "InterfaceType",
"ArrayType", "Name", "SimpleName", "Identifier", "QualifiedName",
"SimpleType", "CompilationUnit", "PackageDeclarationopt",
"ImportDeclarations", "TypeDeclarations", "PackageDeclaration",
"ImportDeclaration", "SingleTypeImportDeclaration",
"TypeImportOnDemandDeclaration", "TypeDeclaration", "Modifiers",
"Modifier", "ClassHeader", "ClassDeclaration", "Modifiersopt", "Super",
"Interfaces", "InterfaceTypeList", "ClassBody", "ClassBodyDeclarations",
"ClassBodyDeclaration", "ClassMemberDeclaration", "FieldDeclaration",
"VariableDeclarators", "VariableDeclarator", "VariableDeclaratorId",
"VariableInitializer", "MethodDeclaration", "MethodHeader", "Throwsopt",
"MethodDeclarator", "FormalParameterListopt", "FormalParameterList",
"FormalParameter", "Throws", "ClassTypeList", "MethodBody",
"StaticInitializer", "ConstructorDeclaration", "ConstructorDeclarator",
"ConstructorBody", "ExplicitConstructorInvocationopt",
"ExplicitConstructorInvocation", "InterfaceHeader",
"InterfaceDeclaration", "ExtendsInterfacesopt", "ExtendsInterfaces",
"InterfaceBody", "InterfaceMemberDeclarations",
"InterfaceMemberDeclaration", "ConstantDeclaration",
"AbstractMethodDeclaration", "Semicols", "ArrayInitializer",
"VariableInitializersOptional", "VariableInitializers", "Block",
"BlockStatementsopt", "BlockStatements", "BlockStatement",
"LocalVariableDeclarationStatement", "LocalVariableDeclaration",
"Statement", "StatementNoShortIf",
"StatementWithoutTrailingSubstatement", "EmptyStatement",
"LabeledStatement", "LabeledStatementNoShortIf", "ExpressionStatement",
"StatementExpression", "IfThenStatement", "IfThenElseStatement",
"IfThenElseStatementNoShortIf", "SwitchStatement", "SwitchBlock",
"SwitchLabelsopt", "SwitchBlockStatementGroups",
"SwitchBlockStatementGroup", "SwitchLabels", "SwitchLabel",
"WhileStatement", "WhileStatementNoShortIf", "DoStatement",
"ForStatement", "ForUpdateopt", "ForInitopt", "ForStatementNoShortIf",
"Expressionopt", "ForInit", "ForUpdate", "StatementExpressionList",
"AssertStatement", "BreakStatement", "Identifieropt",
"ContinueStatement", "ReturnStatement", "ThrowStatement",
"SynchronizedStatement", "TryStatement", "Catchesopt", "Catches",
"CatchClause", "Finally", "Primary", "PrimaryNoNewArray",
"ClassInstanceCreationExpression", "ClassBodyOpt", "ArgumentListopt",
"ArgumentList", "ArrayCreationExpression", "Dimsopt", "DimExprs",
"DimExpr", "Dims", "FieldAccess", "MethodInvocation", "ArrayAccess",
"PostfixExpression", "PostIncrementExpression",
"PostDecrementExpression", "UnaryExpression", "PreIncrementExpression",
"PreDecrementExpression", "UnaryExpressionNotPlusMinus",
"CastExpression", "MultiplicativeExpression", "AdditiveExpression",
"ShiftExpression", "RelationalExpression", "EqualityExpression",
"AndExpression", "ExclusiveOrExpression", "InclusiveOrExpression",
"ConditionalAndExpression", "ConditionalOrExpression",
"ConditionalExpression", "AssignmentExpression", "Assignment",
"LeftHandSide", "AssignmentOperator", "Expression", "ConstantExpression",
"New", YY_NULLPTR
};
static const char *
yysymbol_name (yysymbol_kind_t yysymbol)
{
return yytname[yysymbol];
}
#endif
#define YYPACT_NINF (-503)
#define yypact_value_is_default(Yyn) \
((Yyn) == YYPACT_NINF)
#define YYTABLE_NINF (-336)
#define yytable_value_is_error(Yyn) \
0
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
static const yytype_int16 yypact[] =
{
159, 1039, 236, -503, -503, -503, -503, -503, -503, -503,
-503, -503, -503, -503, -503, -503, 186, -503, 56, -503,
-503, -503, 178, -503, 35, -503, 21, -503, 248, 1039,
273, -503, -503, -503, -503, -503, -503, -503, 78, -503,
-503, -503, -503, -503, -503, -503, -503, -503, -503, -503,
-503, -503, 2088, -503, 32, -503, 16, 245, -503, 28,
-503, -503, 1039, 1039, -503, 80, 206, -503, 129, 129,
1039, 221, 228, 194, -503, -503, 225, -503, -503, 234,
164, 206, -503, -503, -503, -503, -503, -503, -503, 1039,
-503, 1039, 233, -503, -503, 739, -503, -503, -503, -503,
-49, -503, -503, -503, 1116, -503, -503, 1276, -503, 129,
129, 40, -503, -503, -503, 122, 212, 265, -503, 215,
-503, -503, 219, 739, -503, 222, 224, -503, -503, -503,
1820, 129, 129, 1627, 237, 238, -503, 1820, 241, 239,
242, 283, 1820, 233, 266, -503, -503, -503, -503, -503,
-503, -503, 1820, 1820, 1820, -503, -503, -503, 129, 284,
476, 293, 2067, -503, 349, -503, 296, 1366, -503, -503,
264, -503, -503, -503, -503, -503, 268, -503, -503, -503,
-503, -503, -503, -503, -503, -503, -503, -503, -503, -503,
294, 305, 72, -503, 2070, 88, 2084, 121, 130, 148,
-503, -503, -503, 2111, 1039, 281, 133, 281, -25, -503,
126, 133, 314, 315, 315, 921, 1039, 308, -503, -503,
-503, -503, 277, -503, 1820, 1820, 1820, 1820, 1820, 317,
284, 545, -503, -503, 121, -503, -503, -503, -503, -503,
-503, -503, 73, 124, 163, 59, 196, 323, 319, 290,
324, 18, -503, -503, -503, -30, -503, 285, 286, 242,
342, 1941, 1820, 291, -503, 129, 1820, 1820, 129, 292,
385, 1820, 96, -503, -503, -503, 310, -503, -503, 329,
387, 1085, 3, 1820, 1627, 129, -503, -503, -503, -503,
175, 1820, -503, -503, -503, -503, -503, -503, -503, -503,
-503, -503, -503, -503, -503, -503, 1820, 339, 339, 311,
921, 343, -503, 129, -503, 344, 1766, -503, -503, 346,
1039, 313, 347, -503, -503, 353, -503, 307, -503, -503,
-503, 6, 545, 326, -503, -503, 1820, 1820, 1820, 1820,
1820, 1820, 1820, 1820, 1039, 1820, 1820, 1820, 1820, 1820,
1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, -503, -503,
-503, 330, 2067, -503, -503, 327, -503, 354, 334, -503,
345, 335, 340, 348, -503, 351, 416, 232, -503, 356,
-503, -503, 376, -503, 357, 377, -503, -503, 329, -503,
358, 390, -503, 1085, 339, -503, 154, 339, 154, 1820,
362, -503, -503, -503, 1766, -503, -503, -503, -503, 129,
-503, 2088, 1039, 1456, -503, 363, 70, 93, 1874, -503,
-503, -503, 73, 73, 124, 124, 124, -503, 163, 163,
163, 163, 59, 59, 196, 323, 319, 290, 324, 383,
360, 1820, 1820, 1995, 1699, 1820, 386, 233, 1820, 2088,
233, -503, -503, 1627, -503, -503, 1820, 1820, -503, 394,
-503, -503, 315, -503, -503, -503, 369, -503, -503, 396,
404, 410, -503, -503, 26, 113, -503, 407, 1820, 1874,
-503, 1820, -503, 391, 374, -503, 393, 395, 397, 411,
-503, 466, 471, -503, -503, -503, -503, 399, -503, -503,
-503, 400, 401, -503, -503, -503, 402, -503, 206, -503,
1766, 1820, 1820, -503, -503, -503, -503, 403, 1995, 1941,
1820, 1820, 1699, 1627, -503, 34, -503, 233, -503, -503,
-503, -503, 405, 412, -503, 413, -503, 354, 406, 418,
421, -503, -503, 1820, 429, 430, -503, 1186, -503, -503,
419, 422, 1627, 1820, 1699, 1699, -503, 447, -503, -503,
1555, -503, -503, -503, -503, 423, 497, -503, -503, 1995,
1699, 432, -503, 1699, -503
};
/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE does not specify something else to do. Zero
means the default is an error. */
static const yytype_int16 yydefact[] =
{
40, 0, 0, 2, 42, 41, 20, 13, 17, 19,
18, 15, 16, 14, 38, 31, 0, 37, 0, 28,
30, 29, 0, 1, 44, 32, 0, 46, 0, 0,
72, 43, 47, 48, 34, 35, 33, 36, 0, 60,
61, 62, 58, 57, 56, 59, 66, 63, 64, 65,
53, 45, 73, 54, 0, 51, 0, 125, 52, 0,
49, 55, 0, 0, 79, 0, 0, 68, 0, 0,
0, 0, 126, 0, 24, 74, 23, 25, 76, 75,
72, 0, 70, 69, 67, 123, 127, 130, 124, 0,
50, 0, 59, 78, 84, 0, 80, 81, 85, 86,
0, 82, 83, 71, 72, 128, 77, 72, 114, 38,
0, 11, 12, 21, 22, 23, 28, 101, 96, 97,
113, 129, 134, 0, 138, 0, 136, 131, 132, 133,
0, 226, 226, 0, 0, 0, 350, 216, 0, 0,
63, 243, 0, 0, 0, 5, 6, 9, 4, 10,
8, 7, 0, 0, 0, 182, 242, 3, 0, 22,
333, 30, 73, 155, 0, 170, 0, 72, 151, 153,
0, 154, 159, 171, 160, 172, 0, 161, 162, 173,
163, 174, 164, 181, 175, 176, 177, 179, 178, 180,
277, 240, 245, 241, 246, 247, 248, 0, 189, 190,
187, 188, 186, 0, 0, 0, 101, 92, 0, 88,
90, 101, 0, 26, 27, 72, 0, 0, 102, 98,
135, 140, 139, 137, 0, 0, 0, 0, 0, 37,
0, 278, 245, 247, 291, 280, 281, 298, 284, 285,
288, 294, 302, 305, 309, 315, 318, 320, 322, 324,
326, 328, 330, 348, 331, 0, 227, 0, 0, 0,
0, 213, 0, 0, 217, 0, 0, 0, 0, 0,
234, 0, 278, 246, 248, 290, 0, 289, 92, 158,
0, 0, 0, 252, 0, 0, 148, 152, 156, 185,
0, 0, 283, 282, 345, 346, 338, 336, 343, 344,
342, 341, 339, 347, 340, 337, 0, 37, 24, 0,
72, 0, 100, 0, 87, 0, 0, 99, 265, 0,
0, 0, 106, 107, 111, 110, 119, 115, 141, 293,
287, 37, 278, 0, 286, 292, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 223, 225,
228, 0, 0, 219, 221, 0, 214, 218, 0, 229,
268, 0, 0, 269, 230, 0, 0, 232, 236, 0,
244, 279, 0, 351, 0, 253, 254, 183, 157, 270,
267, 0, 332, 0, 260, 262, 0, 260, 0, 252,
0, 104, 89, 93, 143, 91, 95, 94, 266, 0,
117, 72, 0, 72, 116, 0, 26, 27, 244, 300,
301, 299, 304, 303, 307, 308, 306, 314, 311, 313,
310, 312, 316, 317, 319, 321, 323, 325, 327, 0,
0, 0, 216, 0, 0, 252, 0, 0, 252, 72,
0, 233, 237, 0, 275, 271, 0, 252, 276, 0,
256, 263, 261, 258, 257, 259, 0, 103, 146, 0,
144, 109, 108, 112, 0, 243, 120, 0, 0, 0,
296, 0, 224, 0, 0, 222, 0, 0, 0, 30,
193, 0, 159, 166, 167, 168, 169, 0, 200, 196,
231, 0, 0, 239, 207, 255, 0, 264, 250, 142,
145, 252, 252, 118, 295, 297, 329, 0, 211, 213,
0, 0, 0, 0, 273, 198, 274, 0, 272, 251,
249, 147, 0, 0, 209, 0, 212, 220, 0, 0,
0, 184, 194, 0, 0, 0, 201, 72, 203, 238,
0, 0, 0, 216, 0, 0, 349, 0, 206, 197,
202, 204, 122, 121, 210, 0, 0, 208, 205, 211,
0, 0, 195, 0, 215
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
-503, -503, -503, -503, -85, 2, 181, -41, -198, -45,
-87, -1, 431, 14, -503, -503, -503, -503, -503, -503,
-503, -503, -503, -503, 448, -81, -47, -503, 7, -23,
-503, 462, -503, -64, -503, -503, -503, 425, -146, 217,
123, -391, -503, 427, -101, 424, 230, -503, -360, -503,
-503, -503, -503, -503, -503, -503, -503, -503, -503, 439,
-503, -503, -503, -503, -503, -503, -503, -503, -110, -503,
-503, -77, 138, -12, -163, -503, -250, -13, -421, -414,
-503, -503, -503, -503, -252, -503, -503, -503, -503, -503,
-503, -503, -503, -503, 5, -503, -503, -503, -503, -16,
36, -503, -418, -503, -503, -502, -503, -503, 440, -503,
-503, -503, -503, -503, -503, -503, 179, -503, -503, -503,
-54, -503, -341, -503, -503, -149, 255, -136, 102, 652,
101, 688, 145, 157, 201, -98, 289, 338, -384, -503,
-59, -58, -92, -57, 213, 226, 218, 223, 227, -503,
95, 274, 350, -503, -503, 660, -503, -503
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
0, 2, 156, 157, 158, 229, 112, 113, 75, 78,
230, 231, 19, 20, 21, 22, 3, 4, 24, 30,
5, 31, 32, 33, 51, 52, 53, 54, 163, 164,
65, 66, 79, 67, 80, 96, 97, 98, 208, 209,
210, 405, 99, 100, 217, 206, 321, 322, 323, 218,
325, 119, 101, 102, 117, 327, 413, 476, 57, 58,
71, 72, 88, 104, 127, 128, 129, 222, 406, 469,
470, 165, 166, 167, 168, 169, 170, 171, 491, 172,
173, 174, 493, 175, 176, 177, 178, 494, 179, 499,
545, 525, 546, 547, 548, 180, 495, 181, 182, 535,
365, 496, 263, 366, 536, 367, 183, 184, 257, 185,
186, 187, 188, 189, 376, 377, 378, 451, 190, 191,
232, 530, 384, 385, 193, 415, 394, 395, 214, 194,
233, 196, 234, 235, 236, 237, 238, 239, 240, 241,
242, 243, 244, 245, 246, 247, 248, 249, 250, 251,
252, 253, 254, 203, 306, 386, 557, 204
};
/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule whose
number is the opposite. If YYTABLE_NINF, syntax error. */
static const yytype_int16 yytable[] =
{
18, 82, 83, 17, 287, 61, 309, 56, 114, 364,
110, 363, 279, 468, 34, 108, 537, 103, 324, 107,
159, 74, 77, 120, 484, 86, 162, 68, 38, 77,
492, 17, 34, 383, 480, 357, 114, 55, 110, 34,
36, 313, 543, 69, 105, 35, 106, 544, 77, 62,
77, 472, 118, 192, 275, 63, 277, 95, 466, 29,
15, 76, 76, 35, 17, 17, 270, 537, 212, 76,
35, 358, 17, 36, 16, 114, 314, 285, 15, 192,
159, 123, 84, 85, 344, 15, 162, 55, 76, 502,
76, 17, 16, 17, 115, 515, -260, 111, 265, 16,
64, 541, 212, 63, 497, 312, 160, 501, 492, 111,
317, 122, -37, 192, 355, 61, 506, 511, 356, 531,
260, 161, 115, 205, 207, 111, 329, 330, 26, 334,
335, 73, 319, 566, 567, 565, 345, 346, -192, 388,
492, 492, 336, 347, 348, 256, 256, 161, 64, 572,
59, 272, 574, 272, -191, 319, 492, 27, 281, 492,
-261, 115, -192, 308, 111, 337, 160, 39, 282, 111,
532, 533, 278, -192, 159, 74, 338, 216, -191, 60,
362, 161, 40, 479, 212, 268, 15, 283, 315, -191,
1, 485, 320, 41, 26, 311, 42, 43, 44, 316,
16, 92, 46, 76, 512, 47, 307, 192, 195, 48,
292, 339, 49, 213, 473, 76, 319, 389, 17, -280,
293, 340, 404, 272, 272, 332, 272, 272, 331, -280,
192, 93, 15, 114, 195, 409, 23, -281, 419, 420,
421, 375, 341, 25, 342, 460, 16, -281, 464, 343,
28, -235, 197, 428, 429, 430, 431, 114, 461, 37,
160, 461, 70, 111, 198, 50, 364, 364, 195, 363,
349, 387, 350, -39, 64, 114, 39, 285, 197, 370,
422, 423, 373, 424, 425, 426, 463, 320, 465, 87,
198, 40, 432, 433, 89, 90, 36, 26, 161, 278,
91, 107, 41, 215, 390, 42, 43, 44, 199, 216,
45, 46, 197, 265, 47, 61, 219, 364, 48, 115,
220, 49, 111, 221, 198, 223, 159, 278, 261, 262,
266, 213, 162, 267, 199, 272, 272, 272, 272, 272,
272, 272, 272, 115, 272, 272, 272, 272, 272, 272,
272, 272, 272, 272, 272, 268, 280, 271, 284, 192,
68, 115, 195, 286, 111, 288, 290, 291, 199, 289,
500, 74, 310, 503, 50, 318, 326, 319, 328, 212,
514, 351, 352, 354, 353, 195, 359, 360, 320, 192,
192, 361, 369, 374, 375, 313, 200, 287, 381, 192,
380, 393, 399, 410, 401, 403, 197, 408, 414, 396,
398, 76, 160, 411, 17, 111, 418, 272, 198, 412,
443, 441, 200, 278, 444, 446, 320, 161, 442, 197,
447, 490, 159, 416, 417, 450, 445, 454, 362, 448,
504, 198, 449, 456, 529, 201, 453, 455, 481, 457,
549, 458, 467, 478, 498, 507, 200, 202, 489, 508,
159, 482, 199, 509, 192, 192, 162, 161, 192, 192,
510, 201, 315, 159, 513, 518, 522, 272, 272, 162,
272, 517, 523, 202, 519, 199, 520, -165, 521, 524,
526, 527, 528, 192, 558, 550, 462, 559, 192, 462,
192, 192, 551, 552, 534, 201, 192, 553, 554, 387,
542, 555, 568, 570, 195, 192, 192, 202, 160, 192,
562, 111, 573, 563, 569, 427, 116, 81, 94, 124,
402, 125, 471, -23, 211, 560, 489, 161, 281, 564,
400, 490, 504, 126, 195, 195, 160, -23, 282, 111,
200, 477, 561, 571, 195, 538, 452, 542, 197, 160,
564, 161, 111, 397, 434, -278, 161, 283, 489, 489,
198, 436, 258, 200, 161, -278, 516, 437, 435, 0,
392, 0, 438, 0, 489, 0, 0, 489, 197, 197,
0, 0, 0, 0, 0, 0, 0, 0, 197, 201,
198, 198, 0, 0, 0, -333, 0, 281, 0, -333,
198, 202, 0, 0, 199, -333, 0, 282, -333, 195,
195, 0, 201, 195, 195, -333, 0, -333, -333, 0,
0, 0, 0, -333, 202, 0, 283, 0, -333, 0,
-333, 0, 0, -333, 199, 199, 0, 0, 195, -333,
0, 0, 0, 195, 199, 195, 195, 0, 0, 0,
0, 195, 0, 197, 197, 0, 0, 197, 197, 0,
195, 195, 0, 0, 195, 198, 198, 0, 0, 198,
198, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 197, 0, 0, 0, 0, 197, 0, 197,
197, 0, 200, 0, 198, 197, 0, 0, 0, 198,
0, 198, 198, 0, 197, 197, 0, 198, 197, 199,
199, 0, 0, 199, 199, 0, 198, 198, 0, 0,
198, 0, 200, 200, 0, 0, 0, 0, 0, 0,
0, 0, 200, 0, 6, 0, 7, 0, 199, 8,
68, 201, 0, 199, 9, 199, 199, 0, 0, 10,
0, 199, 0, 202, 0, 11, 69, 12, 0, 0,
199, 199, 0, 0, 199, 13, 0, 0, 0, 0,
0, 201, 201, 0, 0, 0, 109, 0, 0, 0,
255, 201, 0, 202, 202, 0, 15, 264, 0, 0,
0, 0, 269, 202, 273, 0, 273, 200, 200, 0,
16, 200, 200, 276, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 200, 0, 0, 0,
274, 200, 274, 200, 200, 0, 0, 0, 0, 200,
0, 0, 0, 0, 0, 0, 201, 201, 200, 200,
201, 201, 200, 0, 0, 0, 0, 0, 202, 202,
0, 0, 202, 202, 0, 0, 273, 273, 0, 273,
273, 0, 0, 0, 0, 201, 333, 0, 0, 0,
201, 0, 201, 201, 0, 0, 0, 202, 201, 0,
0, 0, 202, 0, 202, 202, 0, 201, 201, 0,
202, 201, 274, 274, 0, 274, 274, 0, 0, 202,
202, 0, 368, 202, 39, 0, 371, 372, 0, 0,
0, 379, 0, 0, 0, 0, 0, 0, 0, 40,
0, 382, 0, 0, 0, 0, 0, 0, 0, 0,
41, 391, 0, 42, 43, 44, 0, 0, 45, 46,
0, 0, 47, 0, 0, 0, 48, 0, 0, 49,
0, 0, 0, 0, 0, 0, 407, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 273, 273,
273, 273, 273, 273, 273, 273, 0, 273, 273, 273,
273, 273, 273, 273, 273, 273, 273, 273, 0, 0,
0, -105, 0, 0, 0, 0, 439, 440, 0, 0,
0, 0, 0, 0, 274, 274, 274, 274, 274, 274,
274, 274, 0, 274, 274, 274, 274, 274, 274, 274,
274, 274, 274, 274, 6, 0, 7, 0, 0, 8,
0, 0, 0, 459, 9, 0, 0, 0, 0, 10,
0, 0, 0, 0, 407, 11, 0, 12, 0, 0,
273, 0, 0, 0, 0, 13, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 14, 0, 0, 0,
6, 0, 7, 0, 0, 8, 15, 0, 0, 0,
9, 483, 264, 0, 0, 10, 274, 0, 0, 0,
16, 11, 0, 12, 0, 136, 505, 0, 0, 39,
0, 13, 0, 0, 138, 0, 0, 141, 0, 0,
273, 273, 14, 273, 40, 145, 146, 147, 148, 149,
150, 151, 15, 0, 0, 41, 318, 0, 42, 43,
44, 0, 0, 45, 46, 0, 16, 47, 0, 0,
224, 48, 0, 0, 49, 0, 274, 274, 0, 274,
407, 0, 225, 0, 152, 0, 226, 0, 0, 0,
539, 540, 227, 121, 154, 0, 0, 228, 0, 39,
130, 6, 131, 7, 543, 0, 8, 0, 132, 544,
133, 9, 0, 556, 40, 0, 10, 134, 135, 0,
0, 0, 11, 264, 12, 41, 136, 0, 42, 43,
44, 137, 13, 45, 46, 138, 139, 140, 141, 142,
0, 48, 143, 14, 49, 144, 145, 146, 147, 148,
149, 150, 151, 15, 0, 0, 0, 0, 0, 0,
0, 0, 0, -199, 107, 0, 0, 16, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 152, 0, 153, 0, 39,
130, 6, 131, 7, 0, 154, 8, 155, 132, 0,
133, 9, 0, 0, 40, 0, 10, 134, 135, 0,
0, 0, 11, 0, 12, 41, 136, 0, 42, 43,
44, 137, 13, 45, 46, 138, 139, 140, 141, 142,
0, 48, 143, 14, 49, 144, 145, 146, 147, 148,
149, 150, 151, 15, 0, 0, 0, 0, 0, 0,
0, 0, 0, -149, 107, 0, 0, 16, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 152, 0, 153, 0, 39,
130, 6, 131, 7, 0, 154, 8, 155, 132, 0,
133, 9, 0, 0, 40, 0, 10, 134, 135, 0,
0, 0, 11, 0, 12, 41, 136, 0, 42, 43,
44, 137, 13, 45, 46, 138, 139, 140, 141, 142,
0, 48, 143, 14, 49, 144, 145, 146, 147, 148,
149, 150, 151, 15, 0, 0, 0, 0, 0, 0,
0, 0, 0, -150, 107, 0, 0, 16, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 152, 0, 153, 0, 39,
130, 6, 131, 7, 0, 154, 8, 155, 132, 0,
133, 9, 0, 0, 40, 0, 10, 134, 135, 0,
0, 0, 11, 0, 12, 41, 136, 0, 42, 43,
44, 137, 13, 45, 46, 474, 139, 140, 475, 142,
0, 48, 143, 14, 49, 144, 145, 146, 147, 148,
149, 150, 151, 15, 0, 0, 0, 0, 0, 0,
0, 0, 0, -149, 107, 0, 0, 16, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 152, 0, 153, 0, 0,
0, 0, 0, 0, 0, 154, 0, 155, 39, 130,
6, 131, 7, 0, 0, 8, -72, 132, 0, 133,
9, 0, 0, 40, 0, 10, 134, 135, 0, 0,
0, 11, 0, 12, 41, 136, 0, 42, 43, 44,
137, 13, 45, 46, 138, 139, 140, 141, 142, 0,
48, 143, 14, 49, 144, 145, 146, 147, 148, 149,
150, 151, 15, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 107, 0, 0, 16, 0, 0, 0,
0, 130, 6, 131, 7, 0, 0, 8, 0, 132,
0, 133, 9, 0, 152, 0, 153, 10, 134, 135,
0, 0, 0, 11, 154, 12, 155, 136, 0, 0,
0, 0, 137, 13, 0, 0, 138, 139, 259, 141,
142, 0, 0, 143, 14, 0, 144, 145, 146, 147,
148, 149, 150, 151, 15, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 107, 0, 0, 16, 0,
0, 0, 0, 130, 6, 131, 7, 0, 0, 8,
0, 132, 0, 133, 9, 0, 152, 0, 153, 10,
486, 487, 0, 0, 0, 11, 154, 12, 155, 136,
0, 0, 0, 0, 137, 13, 0, 0, 138, 139,
259, 141, 142, 0, 0, 143, 14, 0, 488, 145,
146, 147, 148, 149, 150, 151, 15, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 107, 0, 0,
16, 6, 0, 7, 0, 0, 8, 0, 0, 0,
0, 9, 0, 0, 0, 0, 10, 0, 152, 0,
153, 0, 11, 0, 12, 0, 136, 0, 154, 0,
155, 0, 13, 0, 0, 138, 0, 0, 141, 0,
0, 0, 0, 14, 0, 0, 145, 146, 147, 148,
149, 150, 151, 15, 0, 6, 0, 7, 0, 0,
8, 0, 0, 0, 404, 9, 0, 16, 0, 0,
10, 224, 0, 0, 0, 0, 11, 0, 12, 0,
136, 0, 0, 225, 0, 152, 13, 226, 0, 138,
0, 0, 141, 227, 0, 154, 0, 14, 228, 0,
145, 146, 147, 148, 149, 150, 151, 15, 0, 6,
0, 7, 0, 0, 8, 0, 0, 0, 0, 9,
0, 16, 0, 0, 10, 224, 0, 0, 0, 0,
11, 0, 12, 0, 136, 0, 0, 225, 0, 152,
13, 226, 0, 138, 0, 0, 141, 227, 0, 154,
0, 14, 228, 0, 145, 146, 147, 148, 149, 150,
151, 15, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 39, 16, 6, 0, 7, 224,
0, 8, 0, 0, 0, 0, 9, 0, 0, 40,
0, 10, 0, 0, 0, 226, 0, 11, 0, 12,
41, 136, 0, 42, 43, 44, 228, 13, 45, 46,
138, 0, 47, 141, 0, 0, 48, 0, 14, 49,
0, 145, 146, 147, 148, 149, 150, 151, 15, 0,
6, 0, 7, 0, 0, 8, 0, 0, 0, 0,
9, 0, 16, 0, 0, 10, 0, 0, 0, 0,
0, 11, 0, 12, 0, 136, 0, 0, 0, 0,
152, 13, 153, 0, 138, 0, 0, 141, 0, 0,
154, 0, 14, 0, 0, 145, 146, 147, 148, 149,
150, 151, 15, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 16, 0, 0, 0,
39, 0, 6, 0, 7, 0, 0, 8, 0, 0,
0, 0, 9, 0, 152, 40, 153, 10, 0, 0,
0, 39, 0, 11, 154, 12, 41, 0, 0, 42,
43, 44, 0, 13, 45, 46, 40, 0, 47, 0,
0, 0, 48, 0, 14, 49, 0, 41, 0, 0,
42, 43, 44, 0, 15, 45, 46, 0, 0, 47,
-334, 0, 0, 48, -334, 0, 49, 0, 16, 0,
-334, 0, 0, -334, -335, 0, 0, 0, -335, 0,
-334, 0, -334, -334, -335, 0, 0, -335, -334, 0,
0, 0, 0, -334, -335, -334, -335, -335, -334, 0,
0, 294, -335, 0, -334, 295, 0, -335, 0, -335,
0, 296, -335, 0, 297, 0, 0, 0, -335, 0,
0, 298, 0, 299, 300, 0, 0, 0, 0, 301,
0, 0, 0, 0, 302, 0, 303, 0, 0, 304,
0, 0, 0, 0, 0, 305
};
static const yytype_int16 yycheck[] =
{
1, 65, 66, 1, 167, 52, 204, 30, 95, 261,
95, 261, 158, 404, 11, 92, 518, 81, 216, 68,
107, 62, 63, 100, 442, 70, 107, 11, 29, 70,
444, 29, 11, 30, 418, 65, 123, 30, 123, 11,
26, 66, 8, 27, 89, 42, 91, 13, 89, 17,
91, 411, 101, 107, 152, 23, 154, 80, 399, 24,
57, 62, 63, 42, 62, 63, 143, 569, 62, 70,
42, 101, 70, 59, 71, 162, 101, 162, 57, 133,
167, 104, 68, 69, 25, 57, 167, 80, 89, 449,
91, 89, 71, 91, 95, 479, 90, 95, 72, 71,
68, 522, 62, 23, 445, 206, 107, 448, 522, 107,
211, 104, 72, 167, 96, 162, 457, 91, 100, 510,
133, 107, 123, 109, 110, 123, 224, 225, 72, 227,
228, 103, 62, 554, 555, 553, 77, 78, 66, 285,
554, 555, 69, 84, 85, 131, 132, 133, 68, 570,
72, 152, 573, 154, 66, 62, 570, 101, 62, 573,
90, 162, 90, 204, 162, 92, 167, 3, 72, 167,
511, 512, 158, 101, 261, 216, 103, 44, 90, 101,
261, 167, 18, 90, 62, 72, 57, 91, 62, 101,
31, 443, 215, 29, 72, 62, 32, 33, 34, 73,
71, 37, 38, 204, 91, 41, 204, 261, 107, 45,
89, 87, 48, 111, 412, 216, 62, 42, 216, 89,
99, 97, 68, 224, 225, 226, 227, 228, 226, 99,
284, 67, 57, 320, 133, 320, 0, 89, 336, 337,
338, 9, 79, 57, 81, 394, 71, 99, 397, 86,
72, 19, 107, 345, 346, 347, 348, 344, 394, 11,
261, 397, 17, 261, 107, 101, 518, 519, 167, 519,
74, 284, 76, 0, 68, 362, 3, 362, 133, 265,
339, 340, 268, 341, 342, 343, 396, 310, 398, 68,
133, 18, 349, 350, 66, 101, 282, 72, 284, 285,
66, 68, 29, 91, 290, 32, 33, 34, 107, 44,
37, 38, 167, 72, 41, 362, 101, 569, 45, 320,
101, 48, 320, 101, 167, 101, 413, 313, 91, 91,
91, 229, 413, 91, 133, 336, 337, 338, 339, 340,
341, 342, 343, 344, 345, 346, 347, 348, 349, 350,
351, 352, 353, 354, 355, 72, 72, 91, 65, 413,
11, 362, 261, 67, 362, 101, 72, 62, 167, 101,
447, 412, 91, 450, 101, 61, 68, 62, 101, 62,
478, 58, 63, 59, 94, 284, 101, 101, 411, 443,
444, 49, 101, 101, 9, 66, 107, 560, 11, 453,
90, 62, 91, 90, 61, 61, 261, 61, 101, 307,
308, 412, 413, 66, 412, 413, 90, 418, 261, 66,
66, 91, 133, 409, 90, 90, 449, 413, 101, 284,
90, 444, 519, 331, 332, 19, 91, 61, 519, 91,
453, 284, 91, 66, 508, 107, 90, 90, 65, 91,
527, 61, 90, 90, 68, 61, 167, 107, 444, 90,
547, 101, 261, 67, 518, 519, 547, 453, 522, 523,
66, 133, 62, 560, 67, 101, 65, 478, 479, 560,
481, 90, 16, 133, 91, 284, 91, 16, 91, 90,
90, 90, 90, 547, 65, 90, 394, 67, 552, 397,
554, 555, 90, 90, 101, 167, 560, 101, 90, 522,
523, 90, 65, 16, 413, 569, 570, 167, 519, 573,
101, 519, 90, 101, 101, 344, 95, 65, 80, 104,
313, 104, 409, 57, 110, 547, 522, 523, 62, 552,
310, 554, 555, 104, 443, 444, 547, 71, 72, 547,
261, 413, 547, 569, 453, 519, 377, 570, 413, 560,
573, 547, 560, 308, 351, 89, 552, 91, 554, 555,
413, 353, 132, 284, 560, 99, 481, 354, 352, -1,
306, -1, 355, -1, 570, -1, -1, 573, 443, 444,
-1, -1, -1, -1, -1, -1, -1, -1, 453, 261,
443, 444, -1, -1, -1, 60, -1, 62, -1, 64,
453, 261, -1, -1, 413, 70, -1, 72, 73, 518,
519, -1, 284, 522, 523, 80, -1, 82, 83, -1,
-1, -1, -1, 88, 284, -1, 91, -1, 93, -1,
95, -1, -1, 98, 443, 444, -1, -1, 547, 104,
-1, -1, -1, 552, 453, 554, 555, -1, -1, -1,
-1, 560, -1, 518, 519, -1, -1, 522, 523, -1,
569, 570, -1, -1, 573, 518, 519, -1, -1, 522,
523, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 547, -1, -1, -1, -1, 552, -1, 554,
555, -1, 413, -1, 547, 560, -1, -1, -1, 552,
-1, 554, 555, -1, 569, 570, -1, 560, 573, 518,
519, -1, -1, 522, 523, -1, 569, 570, -1, -1,
573, -1, 443, 444, -1, -1, -1, -1, -1, -1,
-1, -1, 453, -1, 5, -1, 7, -1, 547, 10,
11, 413, -1, 552, 15, 554, 555, -1, -1, 20,
-1, 560, -1, 413, -1, 26, 27, 28, -1, -1,
569, 570, -1, -1, 573, 36, -1, -1, -1, -1,
-1, 443, 444, -1, -1, -1, 47, -1, -1, -1,
130, 453, -1, 443, 444, -1, 57, 137, -1, -1,
-1, -1, 142, 453, 152, -1, 154, 518, 519, -1,
71, 522, 523, 153, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 547, -1, -1, -1,
152, 552, 154, 554, 555, -1, -1, -1, -1, 560,
-1, -1, -1, -1, -1, -1, 518, 519, 569, 570,
522, 523, 573, -1, -1, -1, -1, -1, 518, 519,
-1, -1, 522, 523, -1, -1, 224, 225, -1, 227,
228, -1, -1, -1, -1, 547, 226, -1, -1, -1,
552, -1, 554, 555, -1, -1, -1, 547, 560, -1,
-1, -1, 552, -1, 554, 555, -1, 569, 570, -1,
560, 573, 224, 225, -1, 227, 228, -1, -1, 569,
570, -1, 262, 573, 3, -1, 266, 267, -1, -1,
-1, 271, -1, -1, -1, -1, -1, -1, -1, 18,
-1, 281, -1, -1, -1, -1, -1, -1, -1, -1,
29, 291, -1, 32, 33, 34, -1, -1, 37, 38,
-1, -1, 41, -1, -1, -1, 45, -1, -1, 48,
-1, -1, -1, -1, -1, -1, 316, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 336, 337,
338, 339, 340, 341, 342, 343, -1, 345, 346, 347,
348, 349, 350, 351, 352, 353, 354, 355, -1, -1,
-1, 90, -1, -1, -1, -1, 356, 357, -1, -1,
-1, -1, -1, -1, 336, 337, 338, 339, 340, 341,
342, 343, -1, 345, 346, 347, 348, 349, 350, 351,
352, 353, 354, 355, 5, -1, 7, -1, -1, 10,
-1, -1, -1, 393, 15, -1, -1, -1, -1, 20,
-1, -1, -1, -1, 404, 26, -1, 28, -1, -1,
418, -1, -1, -1, -1, 36, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 47, -1, -1, -1,
5, -1, 7, -1, -1, 10, 57, -1, -1, -1,
15, 441, 442, -1, -1, 20, 418, -1, -1, -1,
71, 26, -1, 28, -1, 30, 456, -1, -1, 3,
-1, 36, -1, -1, 39, -1, -1, 42, -1, -1,
478, 479, 47, 481, 18, 50, 51, 52, 53, 54,
55, 56, 57, -1, -1, 29, 61, -1, 32, 33,
34, -1, -1, 37, 38, -1, 71, 41, -1, -1,
75, 45, -1, -1, 48, -1, 478, 479, -1, 481,
510, -1, 87, -1, 89, -1, 91, -1, -1, -1,
520, 521, 97, 67, 99, -1, -1, 102, -1, 3,
4, 5, 6, 7, 8, -1, 10, -1, 12, 13,
14, 15, -1, 543, 18, -1, 20, 21, 22, -1,
-1, -1, 26, 553, 28, 29, 30, -1, 32, 33,
34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
-1, 45, 46, 47, 48, 49, 50, 51, 52, 53,
54, 55, 56, 57, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 67, 68, -1, -1, 71, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 89, -1, 91, -1, 3,
4, 5, 6, 7, -1, 99, 10, 101, 12, -1,
14, 15, -1, -1, 18, -1, 20, 21, 22, -1,
-1, -1, 26, -1, 28, 29, 30, -1, 32, 33,
34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
-1, 45, 46, 47, 48, 49, 50, 51, 52, 53,
54, 55, 56, 57, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 67, 68, -1, -1, 71, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 89, -1, 91, -1, 3,
4, 5, 6, 7, -1, 99, 10, 101, 12, -1,
14, 15, -1, -1, 18, -1, 20, 21, 22, -1,
-1, -1, 26, -1, 28, 29, 30, -1, 32, 33,
34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
-1, 45, 46, 47, 48, 49, 50, 51, 52, 53,
54, 55, 56, 57, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 67, 68, -1, -1, 71, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 89, -1, 91, -1, 3,
4, 5, 6, 7, -1, 99, 10, 101, 12, -1,
14, 15, -1, -1, 18, -1, 20, 21, 22, -1,
-1, -1, 26, -1, 28, 29, 30, -1, 32, 33,
34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
-1, 45, 46, 47, 48, 49, 50, 51, 52, 53,
54, 55, 56, 57, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 67, 68, -1, -1, 71, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 89, -1, 91, -1, -1,
-1, -1, -1, -1, -1, 99, -1, 101, 3, 4,
5, 6, 7, -1, -1, 10, 11, 12, -1, 14,
15, -1, -1, 18, -1, 20, 21, 22, -1, -1,
-1, 26, -1, 28, 29, 30, -1, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 43, -1,
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
55, 56, 57, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 68, -1, -1, 71, -1, -1, -1,
-1, 4, 5, 6, 7, -1, -1, 10, -1, 12,
-1, 14, 15, -1, 89, -1, 91, 20, 21, 22,
-1, -1, -1, 26, 99, 28, 101, 30, -1, -1,
-1, -1, 35, 36, -1, -1, 39, 40, 41, 42,
43, -1, -1, 46, 47, -1, 49, 50, 51, 52,
53, 54, 55, 56, 57, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 68, -1, -1, 71, -1,
-1, -1, -1, 4, 5, 6, 7, -1, -1, 10,
-1, 12, -1, 14, 15, -1, 89, -1, 91, 20,
21, 22, -1, -1, -1, 26, 99, 28, 101, 30,
-1, -1, -1, -1, 35, 36, -1, -1, 39, 40,
41, 42, 43, -1, -1, 46, 47, -1, 49, 50,
51, 52, 53, 54, 55, 56, 57, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 68, -1, -1,
71, 5, -1, 7, -1, -1, 10, -1, -1, -1,
-1, 15, -1, -1, -1, -1, 20, -1, 89, -1,
91, -1, 26, -1, 28, -1, 30, -1, 99, -1,
101, -1, 36, -1, -1, 39, -1, -1, 42, -1,
-1, -1, -1, 47, -1, -1, 50, 51, 52, 53,
54, 55, 56, 57, -1, 5, -1, 7, -1, -1,
10, -1, -1, -1, 68, 15, -1, 71, -1, -1,
20, 75, -1, -1, -1, -1, 26, -1, 28, -1,
30, -1, -1, 87, -1, 89, 36, 91, -1, 39,
-1, -1, 42, 97, -1, 99, -1, 47, 102, -1,
50, 51, 52, 53, 54, 55, 56, 57, -1, 5,
-1, 7, -1, -1, 10, -1, -1, -1, -1, 15,
-1, 71, -1, -1, 20, 75, -1, -1, -1, -1,
26, -1, 28, -1, 30, -1, -1, 87, -1, 89,
36, 91, -1, 39, -1, -1, 42, 97, -1, 99,
-1, 47, 102, -1, 50, 51, 52, 53, 54, 55,
56, 57, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 3, 71, 5, -1, 7, 75,
-1, 10, -1, -1, -1, -1, 15, -1, -1, 18,
-1, 20, -1, -1, -1, 91, -1, 26, -1, 28,
29, 30, -1, 32, 33, 34, 102, 36, 37, 38,
39, -1, 41, 42, -1, -1, 45, -1, 47, 48,
-1, 50, 51, 52, 53, 54, 55, 56, 57, -1,
5, -1, 7, -1, -1, 10, -1, -1, -1, -1,
15, -1, 71, -1, -1, 20, -1, -1, -1, -1,
-1, 26, -1, 28, -1, 30, -1, -1, -1, -1,
89, 36, 91, -1, 39, -1, -1, 42, -1, -1,
99, -1, 47, -1, -1, 50, 51, 52, 53, 54,
55, 56, 57, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 71, -1, -1, -1,
3, -1, 5, -1, 7, -1, -1, 10, -1, -1,
-1, -1, 15, -1, 89, 18, 91, 20, -1, -1,
-1, 3, -1, 26, 99, 28, 29, -1, -1, 32,
33, 34, -1, 36, 37, 38, 18, -1, 41, -1,
-1, -1, 45, -1, 47, 48, -1, 29, -1, -1,
32, 33, 34, -1, 57, 37, 38, -1, -1, 41,
60, -1, -1, 45, 64, -1, 48, -1, 71, -1,
70, -1, -1, 73, 60, -1, -1, -1, 64, -1,
80, -1, 82, 83, 70, -1, -1, 73, 88, -1,
-1, -1, -1, 93, 80, 95, 82, 83, 98, -1,
-1, 60, 88, -1, 104, 64, -1, 93, -1, 95,
-1, 70, 98, -1, 73, -1, -1, -1, 104, -1,
-1, 80, -1, 82, 83, -1, -1, -1, -1, 88,
-1, -1, -1, -1, 93, -1, 95, -1, -1, 98,
-1, -1, -1, -1, -1, 104
};
/* YYSTOS[STATE-NUM] -- The symbol kind of the accessing symbol of
state STATE-NUM. */
static const yytype_int16 yystos[] =
{
0, 31, 107, 122, 123, 126, 5, 7, 10, 15,
20, 26, 28, 36, 47, 57, 71, 111, 117, 118,
119, 120, 121, 0, 124, 57, 72, 101, 72, 24,
125, 127, 128, 129, 11, 42, 119, 11, 117, 3,
18, 29, 32, 33, 34, 37, 38, 41, 45, 48,
101, 130, 131, 132, 133, 134, 135, 164, 165, 72,
101, 132, 17, 23, 68, 136, 137, 139, 11, 27,
17, 166, 167, 103, 113, 114, 117, 113, 115, 138,
140, 137, 139, 139, 119, 119, 115, 68, 168, 66,
101, 66, 37, 67, 130, 135, 141, 142, 143, 148,
149, 158, 159, 139, 169, 115, 115, 68, 177, 47,
110, 111, 112, 113, 116, 117, 118, 160, 101, 157,
177, 67, 134, 135, 143, 149, 165, 170, 171, 172,
4, 6, 12, 14, 21, 22, 30, 35, 39, 40,
41, 42, 43, 46, 49, 50, 51, 52, 53, 54,
55, 56, 89, 91, 99, 101, 108, 109, 110, 116,
117, 119, 131, 134, 135, 177, 178, 179, 180, 181,
182, 183, 185, 186, 187, 189, 190, 191, 192, 194,
201, 203, 204, 212, 213, 215, 216, 217, 218, 219,
224, 225, 226, 230, 235, 236, 237, 238, 239, 240,
242, 243, 258, 259, 263, 119, 151, 119, 144, 145,
146, 151, 62, 234, 234, 91, 44, 150, 155, 101,
101, 101, 173, 101, 75, 87, 91, 97, 102, 111,
116, 117, 226, 236, 238, 239, 240, 241, 242, 243,
244, 245, 246, 247, 248, 249, 250, 251, 252, 253,
254, 255, 256, 257, 258, 261, 119, 214, 214, 41,
183, 91, 91, 208, 261, 72, 91, 91, 72, 261,
177, 91, 117, 235, 237, 241, 261, 241, 119, 144,
72, 62, 72, 91, 65, 110, 67, 180, 101, 101,
72, 62, 89, 99, 60, 64, 70, 73, 80, 82,
83, 88, 93, 95, 98, 104, 260, 111, 113, 114,
91, 62, 150, 66, 101, 62, 73, 150, 61, 62,
135, 152, 153, 154, 114, 156, 68, 161, 101, 241,
241, 111, 117, 261, 241, 241, 69, 92, 103, 87,
97, 79, 81, 86, 25, 77, 78, 84, 85, 74,
76, 58, 63, 94, 59, 96, 100, 65, 101, 101,
101, 49, 131, 182, 190, 206, 209, 211, 261, 101,
119, 261, 261, 119, 101, 9, 220, 221, 222, 261,
90, 11, 261, 30, 228, 229, 261, 183, 144, 42,
119, 261, 257, 62, 232, 233, 234, 232, 234, 91,
152, 61, 145, 61, 68, 147, 174, 261, 61, 110,
90, 66, 66, 162, 101, 231, 234, 234, 90, 241,
241, 241, 246, 246, 247, 247, 247, 112, 248, 248,
248, 248, 249, 249, 250, 251, 252, 253, 254, 261,
261, 91, 101, 66, 90, 91, 90, 90, 91, 91,
19, 223, 222, 90, 61, 90, 66, 91, 61, 261,
231, 233, 234, 174, 231, 174, 228, 90, 147, 175,
176, 146, 154, 114, 39, 42, 163, 178, 90, 90,
244, 65, 101, 261, 208, 190, 21, 22, 49, 119,
183, 184, 185, 188, 193, 202, 207, 228, 68, 195,
177, 228, 154, 177, 183, 261, 228, 61, 90, 67,
66, 91, 91, 67, 241, 244, 256, 90, 101, 91,
91, 91, 65, 16, 90, 197, 90, 90, 90, 139,
227, 147, 228, 228, 101, 205, 210, 211, 206, 261,
261, 184, 183, 8, 13, 196, 198, 199, 200, 177,
90, 90, 90, 101, 90, 90, 261, 262, 65, 67,
179, 200, 101, 101, 183, 208, 184, 184, 65, 101,
16, 205, 184, 90, 184
};
/* YYR1[RULE-NUM] -- Symbol kind of the left-hand side of rule RULE-NUM. */
static const yytype_int16 yyr1[] =
{
0, 106, 107, 108, 108, 108, 108, 108, 108, 109,
109, 110, 110, 111, 111, 111, 111, 111, 111, 111,
111, 112, 112, 113, 114, 115, 116, 116, 117, 117,
118, 119, 119, 120, 120, 120, 120, 121, 121, 122,
123, 123, 124, 124, 125, 125, 126, 127, 127, 128,
129, 130, 130, 130, 131, 131, 132, 132, 132, 132,
132, 132, 132, 132, 132, 132, 132, 133, 134, 134,
134, 134, 135, 135, 136, 137, 138, 138, 139, 140,
140, 141, 141, 141, 141, 142, 142, 143, 144, 144,
145, 145, 146, 146, 147, 147, 148, 148, 148, 149,
149, 150, 150, 151, 151, 152, 152, 153, 153, 154,
155, 156, 156, 157, 158, 159, 159, 160, 161, 162,
162, 163, 163, 164, 165, 166, 166, 167, 167, 168,
169, 169, 170, 170, 170, 170, 170, 170, 171, 172,
173, 173, 174, 175, 175, 175, 176, 176, 177, 178,
178, 179, 179, 180, 180, 180, 181, 182, 182, 183,
183, 183, 183, 183, 183, 184, 184, 184, 184, 184,
185, 185, 185, 185, 185, 185, 185, 185, 185, 185,
185, 185, 186, 187, 188, 189, 190, 190, 190, 190,
190, 190, 190, 191, 192, 193, 194, 195, 196, 196,
197, 197, 198, 199, 199, 200, 200, 201, 202, 203,
204, 205, 205, 206, 206, 207, 208, 208, 209, 209,
210, 211, 211, 212, 212, 213, 214, 214, 215, 216,
217, 218, 219, 219, 220, 220, 221, 221, 222, 223,
224, 224, 225, 225, 225, 225, 225, 225, 225, 226,
227, 227, 228, 228, 229, 229, 230, 230, 230, 230,
231, 231, 232, 232, 233, 234, 234, 235, 235, 235,
235, 236, 236, 236, 236, 237, 237, 238, 238, 238,
238, 238, 239, 240, 241, 241, 241, 241, 241, 242,
243, 244, 244, 244, 244, 245, 245, 245, 246, 246,
246, 246, 247, 247, 247, 248, 248, 248, 248, 249,
249, 249, 249, 249, 249, 250, 250, 250, 251, 251,
252, 252, 253, 253, 254, 254, 255, 255, 256, 256,
257, 257, 258, 259, 259, 259, 260, 260, 260, 260,
260, 260, 260, 260, 260, 260, 260, 260, 261, 262,
263, 263
};
/* YYR2[RULE-NUM] -- Number of symbols on the right-hand side of rule RULE-NUM. */
static const yytype_int8 yyr2[] =
{
0, 2, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 2, 2, 1, 1,
1, 1, 2, 3, 3, 3, 3, 1, 1, 3,
0, 1, 0, 2, 0, 2, 3, 1, 1, 3,
5, 1, 1, 1, 1, 2, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 3, 2, 3,
3, 4, 0, 1, 2, 2, 1, 3, 3, 0,
2, 1, 1, 1, 1, 1, 1, 4, 1, 3,
1, 3, 1, 3, 1, 1, 2, 2, 3, 4,
4, 0, 1, 4, 3, 0, 1, 1, 3, 3,
2, 1, 3, 1, 2, 4, 5, 4, 4, 0,
2, 5, 5, 3, 3, 0, 1, 2, 3, 3,
0, 2, 1, 1, 1, 2, 1, 2, 1, 2,
1, 2, 3, 0, 1, 2, 1, 3, 3, 0,
1, 1, 2, 1, 1, 1, 2, 3, 2, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 3, 3, 2, 1, 1, 1, 1,
1, 1, 1, 5, 7, 7, 5, 4, 0, 1,
0, 2, 2, 1, 2, 3, 2, 5, 5, 7,
9, 0, 1, 0, 1, 9, 0, 1, 1, 1,
1, 1, 3, 3, 5, 3, 0, 1, 3, 3,
3, 5, 3, 4, 0, 1, 1, 2, 5, 2,
1, 1, 1, 1, 3, 1, 1, 1, 1, 6,
0, 1, 0, 1, 1, 3, 4, 4, 4, 4,
0, 1, 1, 2, 3, 2, 3, 3, 3, 3,
3, 4, 6, 6, 6, 4, 4, 1, 1, 3,
1, 1, 2, 2, 1, 1, 2, 2, 1, 2,
2, 1, 2, 2, 1, 5, 4, 5, 1, 3,
3, 3, 1, 3, 3, 1, 3, 3, 3, 1,
3, 3, 3, 3, 3, 1, 3, 3, 1, 3,
1, 3, 1, 3, 1, 3, 1, 3, 1, 5,
1, 1, 3, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 3
};
enum { YYENOMEM = -2 };
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
#define YYNOMEM goto yyexhaustedlab
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (yychar == YYEMPTY) \
{ \
yychar = (Token); \
yylval = (Value); \
YYPOPSTACK (yylen); \
yystate = *yyssp; \
goto yybackup; \
} \
else \
{ \
yyerror (yyscanner, YY_("syntax error: cannot back up")); \
YYERROR; \
} \
while (0)
/* Backward compatibility with an undocumented macro.
Use YYerror or YYUNDEF. */
#define YYERRCODE YYUNDEF
/* Enable debugging if requested. */
#if YYDEBUG
# ifndef YYFPRINTF
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
# define YYFPRINTF fprintf
# endif
# define YYDPRINTF(Args) \
do { \
if (yydebug) \
YYFPRINTF Args; \
} while (0)
# define YY_SYMBOL_PRINT(Title, Kind, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
Kind, Value, yyscanner); \
YYFPRINTF (stderr, "\n"); \
} \
} while (0)
/*-----------------------------------.
| Print this symbol's value on YYO. |
`-----------------------------------*/
static void
yy_symbol_value_print (FILE *yyo,
yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, yyscan_t yyscanner)
{
FILE *yyoutput = yyo;
YY_USE (yyoutput);
YY_USE (yyscanner);
if (!yyvaluep)
return;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
YY_USE (yykind);
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
/*---------------------------.
| Print this symbol on YYO. |
`---------------------------*/
static void
yy_symbol_print (FILE *yyo,
yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, yyscan_t yyscanner)
{
YYFPRINTF (yyo, "%s %s (",
yykind < YYNTOKENS ? "token" : "nterm", yysymbol_name (yykind));
yy_symbol_value_print (yyo, yykind, yyvaluep, yyscanner);
YYFPRINTF (yyo, ")");
}
/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included). |
`------------------------------------------------------------------*/
static void
yy_stack_print (yy_state_t *yybottom, yy_state_t *yytop)
{
YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++)
{
int yybot = *yybottom;
YYFPRINTF (stderr, " %d", yybot);
}
YYFPRINTF (stderr, "\n");
}
# define YY_STACK_PRINT(Bottom, Top) \
do { \
if (yydebug) \
yy_stack_print ((Bottom), (Top)); \
} while (0)
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
static void
yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp,
int yyrule, yyscan_t yyscanner)
{
int yylno = yyrline[yyrule];
int yynrhs = yyr2[yyrule];
int yyi;
YYFPRINTF (stderr, "Reducing stack by rule %d (line %d):\n",
yyrule - 1, yylno);
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
YYFPRINTF (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr,
YY_ACCESSING_SYMBOL (+yyssp[yyi + 1 - yynrhs]),
&yyvsp[(yyi + 1) - (yynrhs)], yyscanner);
YYFPRINTF (stderr, "\n");
}
}
# define YY_REDUCE_PRINT(Rule) \
do { \
if (yydebug) \
yy_reduce_print (yyssp, yyvsp, Rule, yyscanner); \
} while (0)
/* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */
int yydebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args) ((void) 0)
# define YY_SYMBOL_PRINT(Title, Kind, Value, Location)
# define YY_STACK_PRINT(Bottom, Top)
# define YY_REDUCE_PRINT(Rule)
#endif /* !YYDEBUG */
/* YYINITDEPTH -- initial size of the parser's stacks. */
#ifndef YYINITDEPTH
# define YYINITDEPTH 200
#endif
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
if the built-in stack extension method is used).
Do not make this value too large; the results are undefined if
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
evaluated with infinite-precision integer arithmetic. */
#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif
/* Context of a parse error. */
typedef struct
{
yy_state_t *yyssp;
yysymbol_kind_t yytoken;
} yypcontext_t;
/* Put in YYARG at most YYARGN of the expected tokens given the
current YYCTX, and return the number of tokens stored in YYARG. If
YYARG is null, return the number of expected tokens (guaranteed to
be less than YYNTOKENS). Return YYENOMEM on memory exhaustion.
Return 0 if there are more than YYARGN expected tokens, yet fill
YYARG up to YYARGN. */
static int
yypcontext_expected_tokens (const yypcontext_t *yyctx,
yysymbol_kind_t yyarg[], int yyargn)
{
/* Actual size of YYARG. */
int yycount = 0;
int yyn = yypact[+*yyctx->yyssp];
if (!yypact_value_is_default (yyn))
{
/* Start YYX at -YYN if negative to avoid negative indexes in
YYCHECK. In other words, skip the first -YYN actions for
this state because they are default actions. */
int yyxbegin = yyn < 0 ? -yyn : 0;
/* Stay within bounds of both yycheck and yytname. */
int yychecklim = YYLAST - yyn + 1;
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
int yyx;
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
if (yycheck[yyx + yyn] == yyx && yyx != YYSYMBOL_YYerror
&& !yytable_value_is_error (yytable[yyx + yyn]))
{
if (!yyarg)
++yycount;
else if (yycount == yyargn)
return 0;
else
yyarg[yycount++] = YY_CAST (yysymbol_kind_t, yyx);
}
}
if (yyarg && yycount == 0 && 0 < yyargn)
yyarg[0] = YYSYMBOL_YYEMPTY;
return yycount;
}
#ifndef yystrlen
# if defined __GLIBC__ && defined _STRING_H
# define yystrlen(S) (YY_CAST (YYPTRDIFF_T, strlen (S)))
# else
/* Return the length of YYSTR. */
static YYPTRDIFF_T
yystrlen (const char *yystr)
{
YYPTRDIFF_T yylen;
for (yylen = 0; yystr[yylen]; yylen++)
continue;
return yylen;
}
# endif
#endif
#ifndef yystpcpy
# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
# define yystpcpy stpcpy
# else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
YYDEST. */
static char *
yystpcpy (char *yydest, const char *yysrc)
{
char *yyd = yydest;
const char *yys = yysrc;
while ((*yyd++ = *yys++) != '\0')
continue;
return yyd - 1;
}
# endif
#endif
#ifndef yytnamerr
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
quotes and backslashes, so that it's suitable for yyerror. The
heuristic is that double-quoting is unnecessary unless the string
contains an apostrophe, a comma, or backslash (other than
backslash-backslash). YYSTR is taken from yytname. If YYRES is
null, do not copy; instead, return the length of what the result
would have been. */
static YYPTRDIFF_T
yytnamerr (char *yyres, const char *yystr)
{
if (*yystr == '"')
{
YYPTRDIFF_T yyn = 0;
char const *yyp = yystr;
for (;;)
switch (*++yyp)
{
case '\'':
case ',':
goto do_not_strip_quotes;
case '\\':
if (*++yyp != '\\')
goto do_not_strip_quotes;
else
goto append;
append:
default:
if (yyres)
yyres[yyn] = *yyp;
yyn++;
break;
case '"':
if (yyres)
yyres[yyn] = '\0';
return yyn;
}
do_not_strip_quotes: ;
}
if (yyres)
return yystpcpy (yyres, yystr) - yyres;
else
return yystrlen (yystr);
}
#endif
static int
yy_syntax_error_arguments (const yypcontext_t *yyctx,
yysymbol_kind_t yyarg[], int yyargn)
{
/* Actual size of YYARG. */
int yycount = 0;
/* There are many possibilities here to consider:
- If this state is a consistent state with a default action, then
the only way this function was invoked is if the default action
is an error action. In that case, don't check for expected
tokens because there are none.
- The only way there can be no lookahead present (in yychar) is if
this state is a consistent state with a default action. Thus,
detecting the absence of a lookahead is sufficient to determine
that there is no unexpected or expected token to report. In that
case, just report a simple "syntax error".
- Don't assume there isn't a lookahead just because this state is a
consistent state with a default action. There might have been a
previous inconsistent state, consistent state with a non-default
action, or user semantic action that manipulated yychar.
- Of course, the expected token list depends on states to have
correct lookahead information, and it depends on the parser not
to perform extra reductions after fetching a lookahead from the
scanner and before detecting a syntax error. Thus, state merging
(from LALR or IELR) and default reductions corrupt the expected
token list. However, the list is correct for canonical LR with
one exception: it will still contain any token that will not be
accepted due to an error action in a later state.
*/
if (yyctx->yytoken != YYSYMBOL_YYEMPTY)
{
int yyn;
if (yyarg)
yyarg[yycount] = yyctx->yytoken;
++yycount;
yyn = yypcontext_expected_tokens (yyctx,
yyarg ? yyarg + 1 : yyarg, yyargn - 1);
if (yyn == YYENOMEM)
return YYENOMEM;
else
yycount += yyn;
}
return yycount;
}
/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
about the unexpected token YYTOKEN for the state stack whose top is
YYSSP.
Return 0 if *YYMSG was successfully written. Return -1 if *YYMSG is
not large enough to hold the message. In that case, also set
*YYMSG_ALLOC to the required number of bytes. Return YYENOMEM if the
required number of bytes is too large to store. */
static int
yysyntax_error (YYPTRDIFF_T *yymsg_alloc, char **yymsg,
const yypcontext_t *yyctx)
{
enum { YYARGS_MAX = 5 };
/* Internationalized format string. */
const char *yyformat = YY_NULLPTR;
/* Arguments of yyformat: reported tokens (one for the "unexpected",
one per "expected"). */
yysymbol_kind_t yyarg[YYARGS_MAX];
/* Cumulated lengths of YYARG. */
YYPTRDIFF_T yysize = 0;
/* Actual size of YYARG. */
int yycount = yy_syntax_error_arguments (yyctx, yyarg, YYARGS_MAX);
if (yycount == YYENOMEM)
return YYENOMEM;
switch (yycount)
{
#define YYCASE_(N, S) \
case N: \
yyformat = S; \
break
default: /* Avoid compiler warnings. */
YYCASE_(0, YY_("syntax error"));
YYCASE_(1, YY_("syntax error, unexpected %s"));
YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
#undef YYCASE_
}
/* Compute error message size. Don't count the "%s"s, but reserve
room for the terminator. */
yysize = yystrlen (yyformat) - 2 * yycount + 1;
{
int yyi;
for (yyi = 0; yyi < yycount; ++yyi)
{
YYPTRDIFF_T yysize1
= yysize + yytnamerr (YY_NULLPTR, yytname[yyarg[yyi]]);
if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
yysize = yysize1;
else
return YYENOMEM;
}
}
if (*yymsg_alloc < yysize)
{
*yymsg_alloc = 2 * yysize;
if (! (yysize <= *yymsg_alloc
&& *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
*yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
return -1;
}
/* Avoid sprintf, as that infringes on the user's name space.
Don't have undefined behavior even if the translation
produced a string with the wrong number of "%s"s. */
{
char *yyp = *yymsg;
int yyi = 0;
while ((*yyp = *yyformat) != '\0')
if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
{
yyp += yytnamerr (yyp, yytname[yyarg[yyi++]]);
yyformat += 2;
}
else
{
++yyp;
++yyformat;
}
}
return 0;
}
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
static void
yydestruct (const char *yymsg,
yysymbol_kind_t yykind, YYSTYPE *yyvaluep, yyscan_t yyscanner)
{
YY_USE (yyvaluep);
YY_USE (yyscanner);
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp);
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
YY_USE (yykind);
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
/*----------.
| yyparse. |
`----------*/
int
yyparse (yyscan_t yyscanner)
{
/* Lookahead token kind. */
int yychar;
/* The semantic value of the lookahead symbol. */
/* Default value used for initialization, for pacifying older GCCs
or non-GCC compilers. */
YY_INITIAL_VALUE (static YYSTYPE yyval_default;)
YYSTYPE yylval YY_INITIAL_VALUE (= yyval_default);
/* Number of syntax errors so far. */
int yynerrs = 0;
yy_state_fast_t yystate = 0;
/* Number of tokens to shift before error messages enabled. */
int yyerrstatus = 0;
/* Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* Their size. */
YYPTRDIFF_T yystacksize = YYINITDEPTH;
/* The state stack: array, bottom, top. */
yy_state_t yyssa[YYINITDEPTH];
yy_state_t *yyss = yyssa;
yy_state_t *yyssp = yyss;
/* The semantic value stack: array, bottom, top. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs = yyvsa;
YYSTYPE *yyvsp = yyvs;
int yyn;
/* The return value of yyparse. */
int yyresult;
/* Lookahead symbol kind. */
yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
/* Buffer for error messages, and its allocated size. */
char yymsgbuf[128];
char *yymsg = yymsgbuf;
YYPTRDIFF_T yymsg_alloc = sizeof yymsgbuf;
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
/* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */
int yylen = 0;
YYDPRINTF ((stderr, "Starting parse\n"));
yychar = YYEMPTY; /* Cause a token to be read. */
goto yysetstate;
/*------------------------------------------------------------.
| yynewstate -- push a new state, which is found in yystate. |
`------------------------------------------------------------*/
yynewstate:
/* In all cases, when you get here, the value and location stacks
have just been pushed. So pushing a state here evens the stacks. */
yyssp++;
/*--------------------------------------------------------------------.
| yysetstate -- set current state (the top of the stack) to yystate. |
`--------------------------------------------------------------------*/
yysetstate:
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
YY_ASSERT (0 <= yystate && yystate < YYNSTATES);
YY_IGNORE_USELESS_CAST_BEGIN
*yyssp = YY_CAST (yy_state_t, yystate);
YY_IGNORE_USELESS_CAST_END
YY_STACK_PRINT (yyss, yyssp);
if (yyss + yystacksize - 1 <= yyssp)
#if !defined yyoverflow && !defined YYSTACK_RELOCATE
YYNOMEM;
#else
{
/* Get the current used size of the three stacks, in elements. */
YYPTRDIFF_T yysize = yyssp - yyss + 1;
# if defined yyoverflow
{
/* Give user a chance to reallocate the stack. Use copies of
these so that the &'s don't force the real ones into
memory. */
yy_state_t *yyss1 = yyss;
YYSTYPE *yyvs1 = yyvs;
/* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might
be undefined if yyoverflow is a macro. */
yyoverflow (YY_("memory exhausted"),
&yyss1, yysize * YYSIZEOF (*yyssp),
&yyvs1, yysize * YYSIZEOF (*yyvsp),
&yystacksize);
yyss = yyss1;
yyvs = yyvs1;
}
# else /* defined YYSTACK_RELOCATE */
/* Extend the stack our own way. */
if (YYMAXDEPTH <= yystacksize)
YYNOMEM;
yystacksize *= 2;
if (YYMAXDEPTH < yystacksize)
yystacksize = YYMAXDEPTH;
{
yy_state_t *yyss1 = yyss;
union yyalloc *yyptr =
YY_CAST (union yyalloc *,
YYSTACK_ALLOC (YY_CAST (YYSIZE_T, YYSTACK_BYTES (yystacksize))));
if (! yyptr)
YYNOMEM;
YYSTACK_RELOCATE (yyss_alloc, yyss);
YYSTACK_RELOCATE (yyvs_alloc, yyvs);
# undef YYSTACK_RELOCATE
if (yyss1 != yyssa)
YYSTACK_FREE (yyss1);
}
# endif
yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1;
YY_IGNORE_USELESS_CAST_BEGIN
YYDPRINTF ((stderr, "Stack size increased to %ld\n",
YY_CAST (long, yystacksize)));
YY_IGNORE_USELESS_CAST_END
if (yyss + yystacksize - 1 <= yyssp)
YYABORT;
}
#endif /* !defined yyoverflow && !defined YYSTACK_RELOCATE */
if (yystate == YYFINAL)
YYACCEPT;
goto yybackup;
/*-----------.
| yybackup. |
`-----------*/
yybackup:
/* Do appropriate processing given the current state. Read a
lookahead token if we need one and don't already have one. */
/* First try to decide what to do without reference to lookahead token. */
yyn = yypact[yystate];
if (yypact_value_is_default (yyn))
goto yydefault;
/* Not known => get a lookahead token if don't already have one. */
/* YYCHAR is either empty, or end-of-input, or a valid lookahead. */
if (yychar == YYEMPTY)
{
YYDPRINTF ((stderr, "Reading a token\n"));
yychar = yylex (&yylval, yyscanner);
}
if (yychar <= YYEOF)
{
yychar = YYEOF;
yytoken = YYSYMBOL_YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
else if (yychar == YYerror)
{
/* The scanner already issued an error message, process directly
to error recovery. But do not keep the error token as
lookahead, it is too special and may lead us to an endless
loop in error recovery. */
yychar = YYUNDEF;
yytoken = YYSYMBOL_YYerror;
goto yyerrlab1;
}
else
{
yytoken = YYTRANSLATE (yychar);
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
goto yydefault;
yyn = yytable[yyn];
if (yyn <= 0)
{
if (yytable_value_is_error (yyn))
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
/* Shift the lookahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
yystate = yyn;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
/* Discard the shifted token. */
yychar = YYEMPTY;
goto yynewstate;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
goto yyreduce;
/*-----------------------------.
| yyreduce -- do a reduction. |
`-----------------------------*/
yyreduce:
/* yyn is the number of a rule to reduce with. */
yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
'$$ = $1'.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. Assigning to YYVAL
unconditionally makes the parser a bit smaller, and it avoids a
GCC warning that YYVAL may be used uninitialized. */
yyval = yyvsp[1-yylen];
YY_REDUCE_PRINT (yyn);
switch (yyn)
{
case 2: /* Goal: CompilationUnit */
#line 185 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2480 "cmDependsJavaParser.cxx"
break;
case 3: /* Literal: IntegerLiteral */
#line 194 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2491 "cmDependsJavaParser.cxx"
break;
case 4: /* Literal: jp_FLOATINGPOINTLITERAL */
#line 202 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2502 "cmDependsJavaParser.cxx"
break;
case 5: /* Literal: jp_BOOLEANLITERAL */
#line 210 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2513 "cmDependsJavaParser.cxx"
break;
case 6: /* Literal: jp_CHARACTERLITERAL */
#line 218 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2524 "cmDependsJavaParser.cxx"
break;
case 7: /* Literal: jp_STRINGLITERAL */
#line 226 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2535 "cmDependsJavaParser.cxx"
break;
case 8: /* Literal: jp_NULLLITERAL */
#line 234 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2546 "cmDependsJavaParser.cxx"
break;
case 9: /* IntegerLiteral: jp_DECIMALINTEGERLITERAL */
#line 243 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2557 "cmDependsJavaParser.cxx"
break;
case 10: /* IntegerLiteral: jp_HEXINTEGERLITERAL */
#line 251 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2568 "cmDependsJavaParser.cxx"
break;
case 11: /* Type: PrimitiveType */
#line 260 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2579 "cmDependsJavaParser.cxx"
break;
case 12: /* Type: ReferenceType */
#line 268 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2590 "cmDependsJavaParser.cxx"
break;
case 13: /* PrimitiveType: jp_BYTE_TYPE */
#line 277 "cmDependsJavaParser.y"
{
jpElementStart(0);
}
#line 2598 "cmDependsJavaParser.cxx"
break;
case 14: /* PrimitiveType: jp_SHORT_TYPE */
#line 282 "cmDependsJavaParser.y"
{
jpElementStart(0);
}
#line 2606 "cmDependsJavaParser.cxx"
break;
case 15: /* PrimitiveType: jp_INT_TYPE */
#line 287 "cmDependsJavaParser.y"
{
jpElementStart(0);
}
#line 2614 "cmDependsJavaParser.cxx"
break;
case 16: /* PrimitiveType: jp_LONG_TYPE */
#line 292 "cmDependsJavaParser.y"
{
jpElementStart(0);
}
#line 2622 "cmDependsJavaParser.cxx"
break;
case 17: /* PrimitiveType: jp_CHAR_TYPE */
#line 297 "cmDependsJavaParser.y"
{
jpElementStart(0);
}
#line 2630 "cmDependsJavaParser.cxx"
break;
case 18: /* PrimitiveType: jp_FLOAT_TYPE */
#line 302 "cmDependsJavaParser.y"
{
jpElementStart(0);
}
#line 2638 "cmDependsJavaParser.cxx"
break;
case 19: /* PrimitiveType: jp_DOUBLE_TYPE */
#line 307 "cmDependsJavaParser.y"
{
jpElementStart(0);
}
#line 2646 "cmDependsJavaParser.cxx"
break;
case 20: /* PrimitiveType: jp_BOOLEAN_TYPE */
#line 312 "cmDependsJavaParser.y"
{
jpElementStart(0);
}
#line 2654 "cmDependsJavaParser.cxx"
break;
case 21: /* ReferenceType: ClassOrInterfaceType */
#line 318 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2665 "cmDependsJavaParser.cxx"
break;
case 22: /* ReferenceType: ArrayType */
#line 326 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2676 "cmDependsJavaParser.cxx"
break;
case 23: /* ClassOrInterfaceType: Name */
#line 335 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpStoreClass((yyvsp[0].str));
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2688 "cmDependsJavaParser.cxx"
break;
case 24: /* ClassType: ClassOrInterfaceType */
#line 345 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2699 "cmDependsJavaParser.cxx"
break;
case 25: /* InterfaceType: ClassOrInterfaceType */
#line 354 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2710 "cmDependsJavaParser.cxx"
break;
case 26: /* ArrayType: PrimitiveType Dims */
#line 363 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2721 "cmDependsJavaParser.cxx"
break;
case 27: /* ArrayType: Name Dims */
#line 371 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpStoreClass((yyvsp[-1].str));
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2733 "cmDependsJavaParser.cxx"
break;
case 28: /* Name: SimpleName */
#line 381 "cmDependsJavaParser.y"
{
jpElementStart(1);
(yyval.str) = (yyvsp[0].str);
}
#line 2742 "cmDependsJavaParser.cxx"
break;
case 29: /* Name: QualifiedName */
#line 387 "cmDependsJavaParser.y"
{
jpElementStart(1);
(yyval.str) = (yyvsp[0].str);
}
#line 2751 "cmDependsJavaParser.cxx"
break;
case 30: /* SimpleName: Identifier */
#line 394 "cmDependsJavaParser.y"
{
jpElementStart(1);
(yyval.str) = (yyvsp[0].str);
}
#line 2760 "cmDependsJavaParser.cxx"
break;
case 31: /* Identifier: jp_NAME */
#line 401 "cmDependsJavaParser.y"
{
jpElementStart(1);
(yyval.str) = (yyvsp[0].str);
}
#line 2769 "cmDependsJavaParser.cxx"
break;
case 32: /* Identifier: jp_DOLLAR jp_NAME */
#line 407 "cmDependsJavaParser.y"
{
jpElementStart(2);
(yyval.str) = (yyvsp[0].str);
}
#line 2778 "cmDependsJavaParser.cxx"
break;
case 33: /* QualifiedName: Name jp_DOT Identifier */
#line 414 "cmDependsJavaParser.y"
{
jpElementStart(3);
yyGetParser->AddClassFound((yyvsp[-2].str));
yyGetParser->UpdateCombine((yyvsp[-2].str), (yyvsp[0].str));
yyGetParser->DeallocateParserType(&((yyvsp[-2].str)));
(yyval.str) = const_cast<char*>(yyGetParser->GetCurrentCombine());
}
#line 2790 "cmDependsJavaParser.cxx"
break;
case 34: /* QualifiedName: Name jp_DOT jp_CLASS */
#line 423 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpStoreClass((yyvsp[-2].str));
jpCheckEmpty(3);
yyGetParser->SetCurrentCombine("");
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2803 "cmDependsJavaParser.cxx"
break;
case 35: /* QualifiedName: Name jp_DOT jp_THIS */
#line 433 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpStoreClass((yyvsp[-2].str));
yyGetParser->SetCurrentCombine("");
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2816 "cmDependsJavaParser.cxx"
break;
case 36: /* QualifiedName: SimpleType jp_DOT jp_CLASS */
#line 443 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2827 "cmDependsJavaParser.cxx"
break;
case 37: /* SimpleType: PrimitiveType */
#line 452 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2838 "cmDependsJavaParser.cxx"
break;
case 38: /* SimpleType: jp_VOID */
#line 460 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2849 "cmDependsJavaParser.cxx"
break;
case 39: /* CompilationUnit: PackageDeclarationopt ImportDeclarations TypeDeclarations */
#line 469 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2860 "cmDependsJavaParser.cxx"
break;
case 40: /* PackageDeclarationopt: %empty */
#line 477 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2870 "cmDependsJavaParser.cxx"
break;
case 41: /* PackageDeclarationopt: PackageDeclaration */
#line 484 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2881 "cmDependsJavaParser.cxx"
break;
case 42: /* ImportDeclarations: %empty */
#line 492 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2891 "cmDependsJavaParser.cxx"
break;
case 43: /* ImportDeclarations: ImportDeclarations ImportDeclaration */
#line 499 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2902 "cmDependsJavaParser.cxx"
break;
case 44: /* TypeDeclarations: %empty */
#line 507 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2912 "cmDependsJavaParser.cxx"
break;
case 45: /* TypeDeclarations: TypeDeclarations TypeDeclaration */
#line 514 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2923 "cmDependsJavaParser.cxx"
break;
case 46: /* PackageDeclaration: jp_PACKAGE Name jp_SEMICOL */
#line 523 "cmDependsJavaParser.y"
{
jpElementStart(3);
yyGetParser->SetCurrentPackage((yyvsp[-1].str));
yyGetParser->DeallocateParserType(&((yyvsp[-1].str)));
yyGetParser->SetCurrentCombine("");
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2937 "cmDependsJavaParser.cxx"
break;
case 47: /* ImportDeclaration: SingleTypeImportDeclaration */
#line 535 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2948 "cmDependsJavaParser.cxx"
break;
case 48: /* ImportDeclaration: TypeImportOnDemandDeclaration */
#line 543 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2959 "cmDependsJavaParser.cxx"
break;
case 49: /* SingleTypeImportDeclaration: jp_IMPORT Name jp_SEMICOL */
#line 552 "cmDependsJavaParser.y"
{
jpElementStart(3);
yyGetParser->AddPackagesImport((yyvsp[-1].str));
yyGetParser->DeallocateParserType(&((yyvsp[-1].str)));
yyGetParser->SetCurrentCombine("");
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2973 "cmDependsJavaParser.cxx"
break;
case 50: /* TypeImportOnDemandDeclaration: jp_IMPORT Name jp_DOT jp_TIMES jp_SEMICOL */
#line 564 "cmDependsJavaParser.y"
{
jpElementStart(5);
std::string str = (yyvsp[-3].str);
str += ".*";
yyGetParser->AddPackagesImport(str.c_str());
yyGetParser->DeallocateParserType(&((yyvsp[-3].str)));
yyGetParser->SetCurrentCombine("");
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2988 "cmDependsJavaParser.cxx"
break;
case 51: /* TypeDeclaration: ClassDeclaration */
#line 577 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 2999 "cmDependsJavaParser.cxx"
break;
case 52: /* TypeDeclaration: InterfaceDeclaration */
#line 585 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3010 "cmDependsJavaParser.cxx"
break;
case 53: /* TypeDeclaration: jp_SEMICOL */
#line 593 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3021 "cmDependsJavaParser.cxx"
break;
case 54: /* Modifiers: Modifier */
#line 602 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3032 "cmDependsJavaParser.cxx"
break;
case 55: /* Modifiers: Modifiers Modifier */
#line 610 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3043 "cmDependsJavaParser.cxx"
break;
case 67: /* ClassHeader: Modifiersopt jp_CLASS Identifier */
#line 625 "cmDependsJavaParser.y"
{
yyGetParser->StartClass((yyvsp[0].str));
jpElementStart(3);
yyGetParser->DeallocateParserType(&((yyvsp[0].str)));
jpCheckEmpty(3);
}
#line 3054 "cmDependsJavaParser.cxx"
break;
case 68: /* ClassDeclaration: ClassHeader ClassBody */
#line 635 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
yyGetParser->EndClass();
}
#line 3066 "cmDependsJavaParser.cxx"
break;
case 69: /* ClassDeclaration: ClassHeader Interfaces ClassBody */
#line 644 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
yyGetParser->EndClass();
}
#line 3078 "cmDependsJavaParser.cxx"
break;
case 70: /* ClassDeclaration: ClassHeader Super ClassBody */
#line 653 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
yyGetParser->EndClass();
}
#line 3090 "cmDependsJavaParser.cxx"
break;
case 71: /* ClassDeclaration: ClassHeader Super Interfaces ClassBody */
#line 662 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
yyGetParser->EndClass();
}
#line 3102 "cmDependsJavaParser.cxx"
break;
case 72: /* Modifiersopt: %empty */
#line 671 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3112 "cmDependsJavaParser.cxx"
break;
case 73: /* Modifiersopt: Modifiers */
#line 678 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3123 "cmDependsJavaParser.cxx"
break;
case 74: /* Super: jp_EXTENDS ClassType */
#line 687 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3134 "cmDependsJavaParser.cxx"
break;
case 75: /* Interfaces: jp_IMPLEMENTS InterfaceTypeList */
#line 696 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3145 "cmDependsJavaParser.cxx"
break;
case 76: /* InterfaceTypeList: InterfaceType */
#line 705 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3156 "cmDependsJavaParser.cxx"
break;
case 77: /* InterfaceTypeList: InterfaceTypeList jp_COMMA InterfaceType */
#line 713 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3167 "cmDependsJavaParser.cxx"
break;
case 78: /* ClassBody: jp_CURLYSTART ClassBodyDeclarations jp_CURLYEND */
#line 722 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3178 "cmDependsJavaParser.cxx"
break;
case 79: /* ClassBodyDeclarations: %empty */
#line 730 "cmDependsJavaParser.y"
{
jpElementStart(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3188 "cmDependsJavaParser.cxx"
break;
case 80: /* ClassBodyDeclarations: ClassBodyDeclarations ClassBodyDeclaration */
#line 737 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3199 "cmDependsJavaParser.cxx"
break;
case 81: /* ClassBodyDeclaration: ClassMemberDeclaration */
#line 746 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3210 "cmDependsJavaParser.cxx"
break;
case 82: /* ClassBodyDeclaration: StaticInitializer */
#line 754 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3221 "cmDependsJavaParser.cxx"
break;
case 83: /* ClassBodyDeclaration: ConstructorDeclaration */
#line 762 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3232 "cmDependsJavaParser.cxx"
break;
case 84: /* ClassBodyDeclaration: TypeDeclaration */
#line 770 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3243 "cmDependsJavaParser.cxx"
break;
case 85: /* ClassMemberDeclaration: FieldDeclaration */
#line 779 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3254 "cmDependsJavaParser.cxx"
break;
case 86: /* ClassMemberDeclaration: MethodDeclaration */
#line 787 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3265 "cmDependsJavaParser.cxx"
break;
case 87: /* FieldDeclaration: Modifiersopt Type VariableDeclarators jp_SEMICOL */
#line 796 "cmDependsJavaParser.y"
{
jpElementStart(4);
}
#line 3273 "cmDependsJavaParser.cxx"
break;
case 88: /* VariableDeclarators: VariableDeclarator */
#line 802 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3284 "cmDependsJavaParser.cxx"
break;
case 89: /* VariableDeclarators: VariableDeclarators jp_COMMA VariableDeclarator */
#line 810 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3295 "cmDependsJavaParser.cxx"
break;
case 90: /* VariableDeclarator: VariableDeclaratorId */
#line 819 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3306 "cmDependsJavaParser.cxx"
break;
case 91: /* VariableDeclarator: VariableDeclaratorId jp_EQUALS VariableInitializer */
#line 827 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3317 "cmDependsJavaParser.cxx"
break;
case 92: /* VariableDeclaratorId: Identifier */
#line 836 "cmDependsJavaParser.y"
{
jpElementStart(1);
yyGetParser->DeallocateParserType(&((yyvsp[0].str)));
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3329 "cmDependsJavaParser.cxx"
break;
case 93: /* VariableDeclaratorId: VariableDeclaratorId jp_BRACKETSTART jp_BRACKETEND */
#line 845 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3340 "cmDependsJavaParser.cxx"
break;
case 94: /* VariableInitializer: Expression */
#line 854 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3351 "cmDependsJavaParser.cxx"
break;
case 95: /* VariableInitializer: ArrayInitializer */
#line 862 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3362 "cmDependsJavaParser.cxx"
break;
case 96: /* MethodDeclaration: MethodHeader jp_SEMICOL */
#line 871 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3373 "cmDependsJavaParser.cxx"
break;
case 97: /* MethodDeclaration: MethodHeader MethodBody */
#line 879 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3384 "cmDependsJavaParser.cxx"
break;
case 98: /* MethodDeclaration: MethodHeader MethodBody jp_SEMICOL */
#line 887 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3395 "cmDependsJavaParser.cxx"
break;
case 99: /* MethodHeader: Modifiersopt Type MethodDeclarator Throwsopt */
#line 896 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3407 "cmDependsJavaParser.cxx"
break;
case 100: /* MethodHeader: Modifiersopt jp_VOID MethodDeclarator Throwsopt */
#line 905 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3419 "cmDependsJavaParser.cxx"
break;
case 101: /* Throwsopt: %empty */
#line 914 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3430 "cmDependsJavaParser.cxx"
break;
case 102: /* Throwsopt: Throws */
#line 922 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3442 "cmDependsJavaParser.cxx"
break;
case 103: /* MethodDeclarator: Identifier jp_PARESTART FormalParameterListopt jp_PAREEND */
#line 932 "cmDependsJavaParser.y"
{
jpElementStart(4);
yyGetParser->DeallocateParserType(&((yyvsp[-3].str)));
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3455 "cmDependsJavaParser.cxx"
break;
case 104: /* MethodDeclarator: MethodDeclarator jp_BRACKETSTART jp_BRACKETEND */
#line 942 "cmDependsJavaParser.y"
{
jpElementStart(3);
}
#line 3464 "cmDependsJavaParser.cxx"
break;
case 105: /* FormalParameterListopt: %empty */
#line 948 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3475 "cmDependsJavaParser.cxx"
break;
case 107: /* FormalParameterList: FormalParameter */
#line 959 "cmDependsJavaParser.y"
{
jpElementStart(1);
}
#line 3484 "cmDependsJavaParser.cxx"
break;
case 108: /* FormalParameterList: FormalParameterList jp_COMMA FormalParameter */
#line 965 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3496 "cmDependsJavaParser.cxx"
break;
case 109: /* FormalParameter: Modifiersopt Type VariableDeclaratorId */
#line 975 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3508 "cmDependsJavaParser.cxx"
break;
case 110: /* Throws: jp_THROWS ClassTypeList */
#line 985 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3520 "cmDependsJavaParser.cxx"
break;
case 111: /* ClassTypeList: ClassType */
#line 995 "cmDependsJavaParser.y"
{
jpElementStart(1);
}
#line 3529 "cmDependsJavaParser.cxx"
break;
case 112: /* ClassTypeList: ClassTypeList jp_COMMA ClassType */
#line 1001 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3541 "cmDependsJavaParser.cxx"
break;
case 113: /* MethodBody: Block */
#line 1011 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3553 "cmDependsJavaParser.cxx"
break;
case 114: /* StaticInitializer: jp_STATIC Block */
#line 1021 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3565 "cmDependsJavaParser.cxx"
break;
case 115: /* ConstructorDeclaration: Modifiersopt ConstructorDeclarator Throwsopt ConstructorBody */
#line 1031 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3577 "cmDependsJavaParser.cxx"
break;
case 116: /* ConstructorDeclaration: Modifiersopt ConstructorDeclarator Throwsopt ConstructorBody jp_SEMICOL */
#line 1040 "cmDependsJavaParser.y"
{
jpElementStart(5);
jpCheckEmpty(5);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3589 "cmDependsJavaParser.cxx"
break;
case 117: /* ConstructorDeclarator: SimpleName jp_PARESTART FormalParameterListopt jp_PAREEND */
#line 1050 "cmDependsJavaParser.y"
{
jpElementStart(4);
yyGetParser->DeallocateParserType(&((yyvsp[-3].str)));
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3602 "cmDependsJavaParser.cxx"
break;
case 118: /* ConstructorBody: jp_CURLYSTART ExplicitConstructorInvocationopt BlockStatementsopt jp_CURLYEND */
#line 1061 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3614 "cmDependsJavaParser.cxx"
break;
case 119: /* ExplicitConstructorInvocationopt: %empty */
#line 1070 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3625 "cmDependsJavaParser.cxx"
break;
case 120: /* ExplicitConstructorInvocationopt: ExplicitConstructorInvocationopt ExplicitConstructorInvocation */
#line 1078 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3637 "cmDependsJavaParser.cxx"
break;
case 121: /* ExplicitConstructorInvocation: jp_THIS jp_PARESTART ArgumentListopt jp_PAREEND jp_SEMICOL */
#line 1088 "cmDependsJavaParser.y"
{
jpElementStart(5);
jpCheckEmpty(5);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3649 "cmDependsJavaParser.cxx"
break;
case 122: /* ExplicitConstructorInvocation: jp_SUPER jp_PARESTART ArgumentListopt jp_PAREEND jp_SEMICOL */
#line 1097 "cmDependsJavaParser.y"
{
jpElementStart(5);
jpCheckEmpty(5);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3661 "cmDependsJavaParser.cxx"
break;
case 123: /* InterfaceHeader: Modifiersopt jp_INTERFACE Identifier */
#line 1107 "cmDependsJavaParser.y"
{
yyGetParser->StartClass((yyvsp[0].str));
jpElementStart(3);
yyGetParser->DeallocateParserType(&((yyvsp[0].str)));
jpCheckEmpty(3);
}
#line 3672 "cmDependsJavaParser.cxx"
break;
case 124: /* InterfaceDeclaration: InterfaceHeader ExtendsInterfacesopt InterfaceBody */
#line 1116 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
yyGetParser->EndClass();
}
#line 3684 "cmDependsJavaParser.cxx"
break;
case 125: /* ExtendsInterfacesopt: %empty */
#line 1125 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3694 "cmDependsJavaParser.cxx"
break;
case 126: /* ExtendsInterfacesopt: ExtendsInterfaces */
#line 1132 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3706 "cmDependsJavaParser.cxx"
break;
case 127: /* ExtendsInterfaces: jp_EXTENDS InterfaceType */
#line 1142 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3718 "cmDependsJavaParser.cxx"
break;
case 128: /* ExtendsInterfaces: ExtendsInterfaces jp_COMMA InterfaceType */
#line 1151 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3730 "cmDependsJavaParser.cxx"
break;
case 129: /* InterfaceBody: jp_CURLYSTART InterfaceMemberDeclarations jp_CURLYEND */
#line 1161 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3742 "cmDependsJavaParser.cxx"
break;
case 130: /* InterfaceMemberDeclarations: %empty */
#line 1170 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3753 "cmDependsJavaParser.cxx"
break;
case 131: /* InterfaceMemberDeclarations: InterfaceMemberDeclarations InterfaceMemberDeclaration */
#line 1178 "cmDependsJavaParser.y"
{
jpElementStart(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3764 "cmDependsJavaParser.cxx"
break;
case 132: /* InterfaceMemberDeclaration: ConstantDeclaration */
#line 1187 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3776 "cmDependsJavaParser.cxx"
break;
case 133: /* InterfaceMemberDeclaration: AbstractMethodDeclaration */
#line 1196 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3788 "cmDependsJavaParser.cxx"
break;
case 134: /* InterfaceMemberDeclaration: ClassDeclaration */
#line 1205 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3800 "cmDependsJavaParser.cxx"
break;
case 135: /* InterfaceMemberDeclaration: ClassDeclaration jp_SEMICOL */
#line 1214 "cmDependsJavaParser.y"
{
jpElementStart(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3811 "cmDependsJavaParser.cxx"
break;
case 136: /* InterfaceMemberDeclaration: InterfaceDeclaration */
#line 1222 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3823 "cmDependsJavaParser.cxx"
break;
case 137: /* InterfaceMemberDeclaration: InterfaceDeclaration jp_SEMICOL */
#line 1231 "cmDependsJavaParser.y"
{
jpElementStart(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3834 "cmDependsJavaParser.cxx"
break;
case 138: /* ConstantDeclaration: FieldDeclaration */
#line 1240 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3846 "cmDependsJavaParser.cxx"
break;
case 139: /* AbstractMethodDeclaration: MethodHeader Semicols */
#line 1250 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3858 "cmDependsJavaParser.cxx"
break;
case 140: /* Semicols: jp_SEMICOL */
#line 1260 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3870 "cmDependsJavaParser.cxx"
break;
case 141: /* Semicols: Semicols jp_SEMICOL */
#line 1269 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3882 "cmDependsJavaParser.cxx"
break;
case 142: /* ArrayInitializer: jp_CURLYSTART VariableInitializersOptional jp_CURLYEND */
#line 1279 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3894 "cmDependsJavaParser.cxx"
break;
case 143: /* VariableInitializersOptional: %empty */
#line 1288 "cmDependsJavaParser.y"
{
jpElementStart(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3905 "cmDependsJavaParser.cxx"
break;
case 144: /* VariableInitializersOptional: VariableInitializers */
#line 1296 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3917 "cmDependsJavaParser.cxx"
break;
case 145: /* VariableInitializersOptional: VariableInitializers jp_COMMA */
#line 1305 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3929 "cmDependsJavaParser.cxx"
break;
case 146: /* VariableInitializers: VariableInitializer */
#line 1315 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3941 "cmDependsJavaParser.cxx"
break;
case 147: /* VariableInitializers: VariableInitializers jp_COMMA VariableInitializer */
#line 1324 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3953 "cmDependsJavaParser.cxx"
break;
case 148: /* Block: jp_CURLYSTART BlockStatementsopt jp_CURLYEND */
#line 1334 "cmDependsJavaParser.y"
{
jpElementStart(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3964 "cmDependsJavaParser.cxx"
break;
case 149: /* BlockStatementsopt: %empty */
#line 1342 "cmDependsJavaParser.y"
{
jpElementStart(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3975 "cmDependsJavaParser.cxx"
break;
case 150: /* BlockStatementsopt: BlockStatements */
#line 1350 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3987 "cmDependsJavaParser.cxx"
break;
case 151: /* BlockStatements: BlockStatement */
#line 1360 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 3999 "cmDependsJavaParser.cxx"
break;
case 152: /* BlockStatements: BlockStatements BlockStatement */
#line 1369 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4011 "cmDependsJavaParser.cxx"
break;
case 153: /* BlockStatement: LocalVariableDeclarationStatement */
#line 1379 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4023 "cmDependsJavaParser.cxx"
break;
case 154: /* BlockStatement: Statement */
#line 1388 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4035 "cmDependsJavaParser.cxx"
break;
case 155: /* BlockStatement: ClassDeclaration */
#line 1397 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4047 "cmDependsJavaParser.cxx"
break;
case 156: /* LocalVariableDeclarationStatement: LocalVariableDeclaration jp_SEMICOL */
#line 1407 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4059 "cmDependsJavaParser.cxx"
break;
case 157: /* LocalVariableDeclaration: Modifiers Type VariableDeclarators */
#line 1417 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4071 "cmDependsJavaParser.cxx"
break;
case 158: /* LocalVariableDeclaration: Type VariableDeclarators */
#line 1426 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4083 "cmDependsJavaParser.cxx"
break;
case 159: /* Statement: StatementWithoutTrailingSubstatement */
#line 1436 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4095 "cmDependsJavaParser.cxx"
break;
case 160: /* Statement: LabeledStatement */
#line 1445 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4107 "cmDependsJavaParser.cxx"
break;
case 161: /* Statement: IfThenStatement */
#line 1454 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4119 "cmDependsJavaParser.cxx"
break;
case 162: /* Statement: IfThenElseStatement */
#line 1463 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4131 "cmDependsJavaParser.cxx"
break;
case 163: /* Statement: WhileStatement */
#line 1472 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4143 "cmDependsJavaParser.cxx"
break;
case 164: /* Statement: ForStatement */
#line 1481 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4155 "cmDependsJavaParser.cxx"
break;
case 165: /* StatementNoShortIf: StatementWithoutTrailingSubstatement */
#line 1491 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4167 "cmDependsJavaParser.cxx"
break;
case 166: /* StatementNoShortIf: LabeledStatementNoShortIf */
#line 1500 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4179 "cmDependsJavaParser.cxx"
break;
case 167: /* StatementNoShortIf: IfThenElseStatementNoShortIf */
#line 1509 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4191 "cmDependsJavaParser.cxx"
break;
case 168: /* StatementNoShortIf: WhileStatementNoShortIf */
#line 1518 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4203 "cmDependsJavaParser.cxx"
break;
case 169: /* StatementNoShortIf: ForStatementNoShortIf */
#line 1527 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4215 "cmDependsJavaParser.cxx"
break;
case 170: /* StatementWithoutTrailingSubstatement: Block */
#line 1537 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4227 "cmDependsJavaParser.cxx"
break;
case 171: /* StatementWithoutTrailingSubstatement: EmptyStatement */
#line 1546 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4239 "cmDependsJavaParser.cxx"
break;
case 172: /* StatementWithoutTrailingSubstatement: ExpressionStatement */
#line 1555 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4251 "cmDependsJavaParser.cxx"
break;
case 173: /* StatementWithoutTrailingSubstatement: SwitchStatement */
#line 1564 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4263 "cmDependsJavaParser.cxx"
break;
case 174: /* StatementWithoutTrailingSubstatement: DoStatement */
#line 1573 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4275 "cmDependsJavaParser.cxx"
break;
case 175: /* StatementWithoutTrailingSubstatement: BreakStatement */
#line 1582 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4287 "cmDependsJavaParser.cxx"
break;
case 176: /* StatementWithoutTrailingSubstatement: ContinueStatement */
#line 1591 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4299 "cmDependsJavaParser.cxx"
break;
case 177: /* StatementWithoutTrailingSubstatement: ReturnStatement */
#line 1600 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4311 "cmDependsJavaParser.cxx"
break;
case 178: /* StatementWithoutTrailingSubstatement: SynchronizedStatement */
#line 1609 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4323 "cmDependsJavaParser.cxx"
break;
case 179: /* StatementWithoutTrailingSubstatement: ThrowStatement */
#line 1618 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4335 "cmDependsJavaParser.cxx"
break;
case 180: /* StatementWithoutTrailingSubstatement: TryStatement */
#line 1627 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4347 "cmDependsJavaParser.cxx"
break;
case 181: /* StatementWithoutTrailingSubstatement: AssertStatement */
#line 1636 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4359 "cmDependsJavaParser.cxx"
break;
case 182: /* EmptyStatement: jp_SEMICOL */
#line 1646 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4371 "cmDependsJavaParser.cxx"
break;
case 183: /* LabeledStatement: Identifier jp_COLON Statement */
#line 1656 "cmDependsJavaParser.y"
{
jpElementStart(3);
yyGetParser->DeallocateParserType(&((yyvsp[-2].str)));
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4384 "cmDependsJavaParser.cxx"
break;
case 184: /* LabeledStatementNoShortIf: Identifier jp_COLON StatementNoShortIf */
#line 1667 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4396 "cmDependsJavaParser.cxx"
break;
case 185: /* ExpressionStatement: StatementExpression jp_SEMICOL */
#line 1677 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4408 "cmDependsJavaParser.cxx"
break;
case 186: /* StatementExpression: Assignment */
#line 1687 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4420 "cmDependsJavaParser.cxx"
break;
case 187: /* StatementExpression: PreIncrementExpression */
#line 1696 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4432 "cmDependsJavaParser.cxx"
break;
case 188: /* StatementExpression: PreDecrementExpression */
#line 1705 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4444 "cmDependsJavaParser.cxx"
break;
case 189: /* StatementExpression: PostIncrementExpression */
#line 1714 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4456 "cmDependsJavaParser.cxx"
break;
case 190: /* StatementExpression: PostDecrementExpression */
#line 1723 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4468 "cmDependsJavaParser.cxx"
break;
case 191: /* StatementExpression: MethodInvocation */
#line 1732 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4480 "cmDependsJavaParser.cxx"
break;
case 192: /* StatementExpression: ClassInstanceCreationExpression */
#line 1741 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4492 "cmDependsJavaParser.cxx"
break;
case 193: /* IfThenStatement: jp_IF jp_PARESTART Expression jp_PAREEND Statement */
#line 1751 "cmDependsJavaParser.y"
{
jpElementStart(5);
jpCheckEmpty(5);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4504 "cmDependsJavaParser.cxx"
break;
case 194: /* IfThenElseStatement: jp_IF jp_PARESTART Expression jp_PAREEND StatementNoShortIf jp_ELSE Statement */
#line 1761 "cmDependsJavaParser.y"
{
jpElementStart(7);
jpCheckEmpty(7);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4516 "cmDependsJavaParser.cxx"
break;
case 195: /* IfThenElseStatementNoShortIf: jp_IF jp_PARESTART Expression jp_PAREEND StatementNoShortIf jp_ELSE StatementNoShortIf */
#line 1771 "cmDependsJavaParser.y"
{
jpElementStart(7);
jpCheckEmpty(7);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4528 "cmDependsJavaParser.cxx"
break;
case 196: /* SwitchStatement: jp_SWITCH jp_PARESTART Expression jp_PAREEND SwitchBlock */
#line 1781 "cmDependsJavaParser.y"
{
jpElementStart(5);
}
#line 4537 "cmDependsJavaParser.cxx"
break;
case 197: /* SwitchBlock: jp_CURLYSTART SwitchBlockStatementGroups SwitchLabelsopt jp_CURLYEND */
#line 1788 "cmDependsJavaParser.y"
{
jpElementStart(4);
}
#line 4546 "cmDependsJavaParser.cxx"
break;
case 198: /* SwitchLabelsopt: %empty */
#line 1794 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4557 "cmDependsJavaParser.cxx"
break;
case 199: /* SwitchLabelsopt: SwitchLabels */
#line 1802 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4569 "cmDependsJavaParser.cxx"
break;
case 200: /* SwitchBlockStatementGroups: %empty */
#line 1811 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4580 "cmDependsJavaParser.cxx"
break;
case 201: /* SwitchBlockStatementGroups: SwitchBlockStatementGroups SwitchBlockStatementGroup */
#line 1819 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4592 "cmDependsJavaParser.cxx"
break;
case 202: /* SwitchBlockStatementGroup: SwitchLabels BlockStatements */
#line 1829 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4604 "cmDependsJavaParser.cxx"
break;
case 203: /* SwitchLabels: SwitchLabel */
#line 1839 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4616 "cmDependsJavaParser.cxx"
break;
case 204: /* SwitchLabels: SwitchLabels SwitchLabel */
#line 1848 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4628 "cmDependsJavaParser.cxx"
break;
case 205: /* SwitchLabel: jp_CASE ConstantExpression jp_COLON */
#line 1858 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4640 "cmDependsJavaParser.cxx"
break;
case 206: /* SwitchLabel: jp_DEFAULT jp_COLON */
#line 1867 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4652 "cmDependsJavaParser.cxx"
break;
case 207: /* WhileStatement: jp_WHILE jp_PARESTART Expression jp_PAREEND Statement */
#line 1877 "cmDependsJavaParser.y"
{
jpElementStart(5);
}
#line 4661 "cmDependsJavaParser.cxx"
break;
case 208: /* WhileStatementNoShortIf: jp_WHILE jp_PARESTART Expression jp_PAREEND StatementNoShortIf */
#line 1884 "cmDependsJavaParser.y"
{
jpElementStart(5);
}
#line 4670 "cmDependsJavaParser.cxx"
break;
case 209: /* DoStatement: jp_DO Statement jp_WHILE jp_PARESTART Expression jp_PAREEND jp_SEMICOL */
#line 1891 "cmDependsJavaParser.y"
{
jpElementStart(7);
}
#line 4679 "cmDependsJavaParser.cxx"
break;
case 210: /* ForStatement: jp_FOR jp_PARESTART ForInitopt jp_SEMICOL Expressionopt jp_SEMICOL ForUpdateopt jp_PAREEND Statement */
#line 1899 "cmDependsJavaParser.y"
{
jpElementStart(9);
}
#line 4688 "cmDependsJavaParser.cxx"
break;
case 211: /* ForUpdateopt: %empty */
#line 1905 "cmDependsJavaParser.y"
{
jpElementStart(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4699 "cmDependsJavaParser.cxx"
break;
case 212: /* ForUpdateopt: ForUpdate */
#line 1913 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4711 "cmDependsJavaParser.cxx"
break;
case 213: /* ForInitopt: %empty */
#line 1922 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4722 "cmDependsJavaParser.cxx"
break;
case 214: /* ForInitopt: ForInit */
#line 1930 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4734 "cmDependsJavaParser.cxx"
break;
case 215: /* ForStatementNoShortIf: jp_FOR jp_PARESTART ForInitopt jp_SEMICOL Expressionopt jp_SEMICOL ForUpdateopt jp_PAREEND StatementNoShortIf */
#line 1941 "cmDependsJavaParser.y"
{
jpElementStart(9);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4745 "cmDependsJavaParser.cxx"
break;
case 216: /* Expressionopt: %empty */
#line 1949 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4756 "cmDependsJavaParser.cxx"
break;
case 217: /* Expressionopt: Expression */
#line 1957 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4768 "cmDependsJavaParser.cxx"
break;
case 218: /* ForInit: StatementExpressionList */
#line 1967 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4780 "cmDependsJavaParser.cxx"
break;
case 219: /* ForInit: LocalVariableDeclaration */
#line 1976 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4792 "cmDependsJavaParser.cxx"
break;
case 220: /* ForUpdate: StatementExpressionList */
#line 1986 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4804 "cmDependsJavaParser.cxx"
break;
case 221: /* StatementExpressionList: StatementExpression */
#line 1996 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4816 "cmDependsJavaParser.cxx"
break;
case 222: /* StatementExpressionList: StatementExpressionList jp_COMMA StatementExpression */
#line 2005 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4828 "cmDependsJavaParser.cxx"
break;
case 223: /* AssertStatement: jp_ASSERT Expression jp_SEMICOL */
#line 2015 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4840 "cmDependsJavaParser.cxx"
break;
case 224: /* AssertStatement: jp_ASSERT Expression jp_COLON Expression jp_SEMICOL */
#line 2024 "cmDependsJavaParser.y"
{
jpElementStart(5);
jpCheckEmpty(5);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4852 "cmDependsJavaParser.cxx"
break;
case 225: /* BreakStatement: jp_BREAK Identifieropt jp_SEMICOL */
#line 2034 "cmDependsJavaParser.y"
{
jpElementStart(3);
yyGetParser->DeallocateParserType(&((yyvsp[-1].str)));
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4865 "cmDependsJavaParser.cxx"
break;
case 226: /* Identifieropt: %empty */
#line 2044 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4876 "cmDependsJavaParser.cxx"
break;
case 227: /* Identifieropt: Identifier */
#line 2052 "cmDependsJavaParser.y"
{
jpElementStart(1);
}
#line 4885 "cmDependsJavaParser.cxx"
break;
case 228: /* ContinueStatement: jp_CONTINUE Identifieropt jp_SEMICOL */
#line 2059 "cmDependsJavaParser.y"
{
jpElementStart(3);
yyGetParser->DeallocateParserType(&((yyvsp[-1].str)));
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4898 "cmDependsJavaParser.cxx"
break;
case 229: /* ReturnStatement: jp_RETURN Expressionopt jp_SEMICOL */
#line 2070 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4910 "cmDependsJavaParser.cxx"
break;
case 230: /* ThrowStatement: jp_THROW Expression jp_SEMICOL */
#line 2080 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4922 "cmDependsJavaParser.cxx"
break;
case 231: /* SynchronizedStatement: jp_SYNCHRONIZED jp_PARESTART Expression jp_PAREEND Block */
#line 2090 "cmDependsJavaParser.y"
{
jpElementStart(5);
jpCheckEmpty(5);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4934 "cmDependsJavaParser.cxx"
break;
case 232: /* TryStatement: jp_TRY Block Catches */
#line 2100 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4946 "cmDependsJavaParser.cxx"
break;
case 233: /* TryStatement: jp_TRY Block Catchesopt Finally */
#line 2109 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4958 "cmDependsJavaParser.cxx"
break;
case 234: /* Catchesopt: %empty */
#line 2118 "cmDependsJavaParser.y"
{
jpElementStart(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4969 "cmDependsJavaParser.cxx"
break;
case 235: /* Catchesopt: Catches */
#line 2126 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4981 "cmDependsJavaParser.cxx"
break;
case 236: /* Catches: CatchClause */
#line 2136 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 4993 "cmDependsJavaParser.cxx"
break;
case 237: /* Catches: Catches CatchClause */
#line 2145 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5005 "cmDependsJavaParser.cxx"
break;
case 238: /* CatchClause: jp_CATCH jp_PARESTART FormalParameter jp_PAREEND Block */
#line 2155 "cmDependsJavaParser.y"
{
jpElementStart(5);
}
#line 5014 "cmDependsJavaParser.cxx"
break;
case 239: /* Finally: jp_FINALLY Block */
#line 2162 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5026 "cmDependsJavaParser.cxx"
break;
case 240: /* Primary: PrimaryNoNewArray */
#line 2172 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5038 "cmDependsJavaParser.cxx"
break;
case 241: /* Primary: ArrayCreationExpression */
#line 2181 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5050 "cmDependsJavaParser.cxx"
break;
case 242: /* PrimaryNoNewArray: Literal */
#line 2191 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5062 "cmDependsJavaParser.cxx"
break;
case 243: /* PrimaryNoNewArray: jp_THIS */
#line 2200 "cmDependsJavaParser.y"
{
jpElementStart(1);
}
#line 5071 "cmDependsJavaParser.cxx"
break;
case 244: /* PrimaryNoNewArray: jp_PARESTART Expression jp_PAREEND */
#line 2206 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5083 "cmDependsJavaParser.cxx"
break;
case 245: /* PrimaryNoNewArray: ClassInstanceCreationExpression */
#line 2215 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5095 "cmDependsJavaParser.cxx"
break;
case 246: /* PrimaryNoNewArray: FieldAccess */
#line 2224 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5107 "cmDependsJavaParser.cxx"
break;
case 247: /* PrimaryNoNewArray: MethodInvocation */
#line 2233 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5119 "cmDependsJavaParser.cxx"
break;
case 248: /* PrimaryNoNewArray: ArrayAccess */
#line 2242 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5131 "cmDependsJavaParser.cxx"
break;
case 249: /* ClassInstanceCreationExpression: New ClassType jp_PARESTART ArgumentListopt jp_PAREEND ClassBodyOpt */
#line 2252 "cmDependsJavaParser.y"
{
jpElementStart(6);
jpCheckEmpty(6);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5143 "cmDependsJavaParser.cxx"
break;
case 250: /* ClassBodyOpt: %empty */
#line 2261 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5154 "cmDependsJavaParser.cxx"
break;
case 251: /* ClassBodyOpt: ClassBody */
#line 2269 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5166 "cmDependsJavaParser.cxx"
break;
case 252: /* ArgumentListopt: %empty */
#line 2278 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5177 "cmDependsJavaParser.cxx"
break;
case 253: /* ArgumentListopt: ArgumentList */
#line 2286 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5189 "cmDependsJavaParser.cxx"
break;
case 254: /* ArgumentList: Expression */
#line 2296 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5201 "cmDependsJavaParser.cxx"
break;
case 255: /* ArgumentList: ArgumentList jp_COMMA Expression */
#line 2305 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5213 "cmDependsJavaParser.cxx"
break;
case 256: /* ArrayCreationExpression: New PrimitiveType DimExprs Dimsopt */
#line 2315 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5225 "cmDependsJavaParser.cxx"
break;
case 257: /* ArrayCreationExpression: New ClassOrInterfaceType DimExprs Dimsopt */
#line 2324 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5237 "cmDependsJavaParser.cxx"
break;
case 258: /* ArrayCreationExpression: New PrimitiveType Dims ArrayInitializer */
#line 2333 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5249 "cmDependsJavaParser.cxx"
break;
case 259: /* ArrayCreationExpression: New ClassOrInterfaceType Dims ArrayInitializer */
#line 2342 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5261 "cmDependsJavaParser.cxx"
break;
case 260: /* Dimsopt: %empty */
#line 2351 "cmDependsJavaParser.y"
{
jpElementStart(0);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5272 "cmDependsJavaParser.cxx"
break;
case 261: /* Dimsopt: Dims */
#line 2359 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5284 "cmDependsJavaParser.cxx"
break;
case 262: /* DimExprs: DimExpr */
#line 2369 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5296 "cmDependsJavaParser.cxx"
break;
case 263: /* DimExprs: DimExprs DimExpr */
#line 2378 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5308 "cmDependsJavaParser.cxx"
break;
case 264: /* DimExpr: jp_BRACKETSTART Expression jp_BRACKETEND */
#line 2388 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5320 "cmDependsJavaParser.cxx"
break;
case 265: /* Dims: jp_BRACKETSTART jp_BRACKETEND */
#line 2398 "cmDependsJavaParser.y"
{
jpElementStart(2);
}
#line 5329 "cmDependsJavaParser.cxx"
break;
case 266: /* Dims: Dims jp_BRACKETSTART jp_BRACKETEND */
#line 2404 "cmDependsJavaParser.y"
{
jpElementStart(3);
}
#line 5338 "cmDependsJavaParser.cxx"
break;
case 267: /* FieldAccess: Primary jp_DOT Identifier */
#line 2411 "cmDependsJavaParser.y"
{
jpElementStart(3);
yyGetParser->DeallocateParserType(&((yyvsp[0].str)));
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5351 "cmDependsJavaParser.cxx"
break;
case 268: /* FieldAccess: jp_SUPER jp_DOT Identifier */
#line 2421 "cmDependsJavaParser.y"
{
jpElementStart(3);
yyGetParser->DeallocateParserType(&((yyvsp[0].str)));
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5364 "cmDependsJavaParser.cxx"
break;
case 269: /* FieldAccess: jp_THIS jp_DOT Identifier */
#line 2431 "cmDependsJavaParser.y"
{
jpElementStart(3);
yyGetParser->DeallocateParserType(&((yyvsp[0].str)));
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5377 "cmDependsJavaParser.cxx"
break;
case 270: /* FieldAccess: Primary jp_DOT jp_THIS */
#line 2441 "cmDependsJavaParser.y"
{
jpElementStart(3);
yyGetParser->DeallocateParserType(&((yyvsp[0].str)));
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5390 "cmDependsJavaParser.cxx"
break;
case 271: /* MethodInvocation: Name jp_PARESTART ArgumentListopt jp_PAREEND */
#line 2452 "cmDependsJavaParser.y"
{
jpElementStart(4);
yyGetParser->DeallocateParserType(&((yyvsp[-3].str)));
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5403 "cmDependsJavaParser.cxx"
break;
case 272: /* MethodInvocation: Primary jp_DOT Identifier jp_PARESTART ArgumentListopt jp_PAREEND */
#line 2462 "cmDependsJavaParser.y"
{
jpElementStart(6);
yyGetParser->DeallocateParserType(&((yyvsp[-5].str)));
yyGetParser->DeallocateParserType(&((yyvsp[-3].str)));
jpCheckEmpty(6);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5417 "cmDependsJavaParser.cxx"
break;
case 273: /* MethodInvocation: jp_SUPER jp_DOT Identifier jp_PARESTART ArgumentListopt jp_PAREEND */
#line 2473 "cmDependsJavaParser.y"
{
jpElementStart(6);
yyGetParser->DeallocateParserType(&((yyvsp[-3].str)));
jpCheckEmpty(6);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5430 "cmDependsJavaParser.cxx"
break;
case 274: /* MethodInvocation: jp_THIS jp_DOT Identifier jp_PARESTART ArgumentListopt jp_PAREEND */
#line 2483 "cmDependsJavaParser.y"
{
jpElementStart(6);
yyGetParser->DeallocateParserType(&((yyvsp[-3].str)));
jpCheckEmpty(6);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5443 "cmDependsJavaParser.cxx"
break;
case 275: /* ArrayAccess: Name jp_BRACKETSTART Expression jp_BRACKETEND */
#line 2494 "cmDependsJavaParser.y"
{
jpElementStart(4);
yyGetParser->DeallocateParserType(&((yyvsp[-3].str)));
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5456 "cmDependsJavaParser.cxx"
break;
case 276: /* ArrayAccess: PrimaryNoNewArray jp_BRACKETSTART Expression jp_BRACKETEND */
#line 2504 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5468 "cmDependsJavaParser.cxx"
break;
case 277: /* PostfixExpression: Primary */
#line 2514 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5480 "cmDependsJavaParser.cxx"
break;
case 278: /* PostfixExpression: Name */
#line 2523 "cmDependsJavaParser.y"
{
jpElementStart(1);
yyGetParser->DeallocateParserType(&((yyvsp[0].str)));
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5492 "cmDependsJavaParser.cxx"
break;
case 279: /* PostfixExpression: ArrayType jp_DOT jp_CLASS */
#line 2532 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5504 "cmDependsJavaParser.cxx"
break;
case 280: /* PostfixExpression: PostIncrementExpression */
#line 2541 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5516 "cmDependsJavaParser.cxx"
break;
case 281: /* PostfixExpression: PostDecrementExpression */
#line 2550 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5528 "cmDependsJavaParser.cxx"
break;
case 282: /* PostIncrementExpression: PostfixExpression jp_PLUSPLUS */
#line 2560 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5540 "cmDependsJavaParser.cxx"
break;
case 283: /* PostDecrementExpression: PostfixExpression jp_MINUSMINUS */
#line 2570 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5552 "cmDependsJavaParser.cxx"
break;
case 284: /* UnaryExpression: PreIncrementExpression */
#line 2580 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5564 "cmDependsJavaParser.cxx"
break;
case 285: /* UnaryExpression: PreDecrementExpression */
#line 2589 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5576 "cmDependsJavaParser.cxx"
break;
case 286: /* UnaryExpression: jp_PLUS UnaryExpression */
#line 2598 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5588 "cmDependsJavaParser.cxx"
break;
case 287: /* UnaryExpression: jp_MINUS UnaryExpression */
#line 2607 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5600 "cmDependsJavaParser.cxx"
break;
case 288: /* UnaryExpression: UnaryExpressionNotPlusMinus */
#line 2616 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5612 "cmDependsJavaParser.cxx"
break;
case 289: /* PreIncrementExpression: jp_PLUSPLUS UnaryExpression */
#line 2626 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5624 "cmDependsJavaParser.cxx"
break;
case 290: /* PreDecrementExpression: jp_MINUSMINUS UnaryExpression */
#line 2636 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5636 "cmDependsJavaParser.cxx"
break;
case 291: /* UnaryExpressionNotPlusMinus: PostfixExpression */
#line 2646 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5648 "cmDependsJavaParser.cxx"
break;
case 292: /* UnaryExpressionNotPlusMinus: jp_TILDE UnaryExpression */
#line 2655 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5660 "cmDependsJavaParser.cxx"
break;
case 293: /* UnaryExpressionNotPlusMinus: jp_EXCLAMATION UnaryExpression */
#line 2664 "cmDependsJavaParser.y"
{
jpElementStart(2);
jpCheckEmpty(2);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5672 "cmDependsJavaParser.cxx"
break;
case 294: /* UnaryExpressionNotPlusMinus: CastExpression */
#line 2673 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5684 "cmDependsJavaParser.cxx"
break;
case 295: /* CastExpression: jp_PARESTART PrimitiveType Dimsopt jp_PAREEND UnaryExpression */
#line 2683 "cmDependsJavaParser.y"
{
jpElementStart(5);
jpCheckEmpty(5);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5696 "cmDependsJavaParser.cxx"
break;
case 296: /* CastExpression: jp_PARESTART Expression jp_PAREEND UnaryExpressionNotPlusMinus */
#line 2692 "cmDependsJavaParser.y"
{
jpElementStart(4);
jpCheckEmpty(4);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5708 "cmDependsJavaParser.cxx"
break;
case 297: /* CastExpression: jp_PARESTART Name Dims jp_PAREEND UnaryExpressionNotPlusMinus */
#line 2701 "cmDependsJavaParser.y"
{
jpElementStart(5);
}
#line 5717 "cmDependsJavaParser.cxx"
break;
case 298: /* MultiplicativeExpression: UnaryExpression */
#line 2708 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5729 "cmDependsJavaParser.cxx"
break;
case 299: /* MultiplicativeExpression: MultiplicativeExpression jp_TIMES UnaryExpression */
#line 2717 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5741 "cmDependsJavaParser.cxx"
break;
case 300: /* MultiplicativeExpression: MultiplicativeExpression jp_DIVIDE UnaryExpression */
#line 2726 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5753 "cmDependsJavaParser.cxx"
break;
case 301: /* MultiplicativeExpression: MultiplicativeExpression jp_PERCENT UnaryExpression */
#line 2735 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5765 "cmDependsJavaParser.cxx"
break;
case 302: /* AdditiveExpression: MultiplicativeExpression */
#line 2745 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5777 "cmDependsJavaParser.cxx"
break;
case 303: /* AdditiveExpression: AdditiveExpression jp_PLUS MultiplicativeExpression */
#line 2754 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5789 "cmDependsJavaParser.cxx"
break;
case 304: /* AdditiveExpression: AdditiveExpression jp_MINUS MultiplicativeExpression */
#line 2763 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5801 "cmDependsJavaParser.cxx"
break;
case 305: /* ShiftExpression: AdditiveExpression */
#line 2773 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5813 "cmDependsJavaParser.cxx"
break;
case 306: /* ShiftExpression: ShiftExpression jp_LTLT AdditiveExpression */
#line 2782 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5825 "cmDependsJavaParser.cxx"
break;
case 307: /* ShiftExpression: ShiftExpression jp_GTGT AdditiveExpression */
#line 2791 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5837 "cmDependsJavaParser.cxx"
break;
case 308: /* ShiftExpression: ShiftExpression jp_GTGTGT AdditiveExpression */
#line 2800 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5849 "cmDependsJavaParser.cxx"
break;
case 309: /* RelationalExpression: ShiftExpression */
#line 2810 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5861 "cmDependsJavaParser.cxx"
break;
case 310: /* RelationalExpression: RelationalExpression jp_LESSTHAN ShiftExpression */
#line 2819 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5873 "cmDependsJavaParser.cxx"
break;
case 311: /* RelationalExpression: RelationalExpression jp_GREATER ShiftExpression */
#line 2828 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5885 "cmDependsJavaParser.cxx"
break;
case 312: /* RelationalExpression: RelationalExpression jp_LTEQUALS ShiftExpression */
#line 2837 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5897 "cmDependsJavaParser.cxx"
break;
case 313: /* RelationalExpression: RelationalExpression jp_GTEQUALS ShiftExpression */
#line 2846 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5909 "cmDependsJavaParser.cxx"
break;
case 314: /* RelationalExpression: RelationalExpression jp_INSTANCEOF ReferenceType */
#line 2855 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5921 "cmDependsJavaParser.cxx"
break;
case 315: /* EqualityExpression: RelationalExpression */
#line 2865 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5933 "cmDependsJavaParser.cxx"
break;
case 316: /* EqualityExpression: EqualityExpression jp_EQUALSEQUALS RelationalExpression */
#line 2874 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5945 "cmDependsJavaParser.cxx"
break;
case 317: /* EqualityExpression: EqualityExpression jp_EXCLAMATIONEQUALS RelationalExpression */
#line 2883 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5957 "cmDependsJavaParser.cxx"
break;
case 318: /* AndExpression: EqualityExpression */
#line 2893 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5969 "cmDependsJavaParser.cxx"
break;
case 319: /* AndExpression: AndExpression jp_AND EqualityExpression */
#line 2902 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5981 "cmDependsJavaParser.cxx"
break;
case 320: /* ExclusiveOrExpression: AndExpression */
#line 2912 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 5993 "cmDependsJavaParser.cxx"
break;
case 321: /* ExclusiveOrExpression: ExclusiveOrExpression jp_CARROT AndExpression */
#line 2921 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6005 "cmDependsJavaParser.cxx"
break;
case 322: /* InclusiveOrExpression: ExclusiveOrExpression */
#line 2931 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6017 "cmDependsJavaParser.cxx"
break;
case 323: /* InclusiveOrExpression: InclusiveOrExpression jp_PIPE ExclusiveOrExpression */
#line 2940 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6029 "cmDependsJavaParser.cxx"
break;
case 324: /* ConditionalAndExpression: InclusiveOrExpression */
#line 2950 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6041 "cmDependsJavaParser.cxx"
break;
case 325: /* ConditionalAndExpression: ConditionalAndExpression jp_ANDAND InclusiveOrExpression */
#line 2959 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6053 "cmDependsJavaParser.cxx"
break;
case 326: /* ConditionalOrExpression: ConditionalAndExpression */
#line 2969 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6065 "cmDependsJavaParser.cxx"
break;
case 327: /* ConditionalOrExpression: ConditionalOrExpression jp_PIPEPIPE ConditionalAndExpression */
#line 2978 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6077 "cmDependsJavaParser.cxx"
break;
case 328: /* ConditionalExpression: ConditionalOrExpression */
#line 2988 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6089 "cmDependsJavaParser.cxx"
break;
case 329: /* ConditionalExpression: ConditionalOrExpression jp_QUESTION Expression jp_COLON ConditionalExpression */
#line 2997 "cmDependsJavaParser.y"
{
jpElementStart(5);
jpCheckEmpty(5);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6101 "cmDependsJavaParser.cxx"
break;
case 330: /* AssignmentExpression: ConditionalExpression */
#line 3007 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6113 "cmDependsJavaParser.cxx"
break;
case 331: /* AssignmentExpression: Assignment */
#line 3016 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6125 "cmDependsJavaParser.cxx"
break;
case 332: /* Assignment: LeftHandSide AssignmentOperator AssignmentExpression */
#line 3026 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6137 "cmDependsJavaParser.cxx"
break;
case 333: /* LeftHandSide: Name */
#line 3036 "cmDependsJavaParser.y"
{
jpElementStart(1);
yyGetParser->DeallocateParserType(&((yyvsp[0].str)));
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6150 "cmDependsJavaParser.cxx"
break;
case 334: /* LeftHandSide: FieldAccess */
#line 3046 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6162 "cmDependsJavaParser.cxx"
break;
case 335: /* LeftHandSide: ArrayAccess */
#line 3055 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6174 "cmDependsJavaParser.cxx"
break;
case 336: /* AssignmentOperator: jp_EQUALS */
#line 3065 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6186 "cmDependsJavaParser.cxx"
break;
case 337: /* AssignmentOperator: jp_TIMESEQUALS */
#line 3074 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6198 "cmDependsJavaParser.cxx"
break;
case 338: /* AssignmentOperator: jp_DIVIDEEQUALS */
#line 3083 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6210 "cmDependsJavaParser.cxx"
break;
case 339: /* AssignmentOperator: jp_PERCENTEQUALS */
#line 3092 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6222 "cmDependsJavaParser.cxx"
break;
case 340: /* AssignmentOperator: jp_PLUSEQUALS */
#line 3101 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6234 "cmDependsJavaParser.cxx"
break;
case 341: /* AssignmentOperator: jp_MINUSEQUALS */
#line 3110 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6246 "cmDependsJavaParser.cxx"
break;
case 342: /* AssignmentOperator: jp_LESLESEQUALS */
#line 3119 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6258 "cmDependsJavaParser.cxx"
break;
case 343: /* AssignmentOperator: jp_GTGTEQUALS */
#line 3128 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6270 "cmDependsJavaParser.cxx"
break;
case 344: /* AssignmentOperator: jp_GTGTGTEQUALS */
#line 3137 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6282 "cmDependsJavaParser.cxx"
break;
case 345: /* AssignmentOperator: jp_ANDEQUALS */
#line 3146 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6294 "cmDependsJavaParser.cxx"
break;
case 346: /* AssignmentOperator: jp_CARROTEQUALS */
#line 3155 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6306 "cmDependsJavaParser.cxx"
break;
case 347: /* AssignmentOperator: jp_PIPEEQUALS */
#line 3164 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6318 "cmDependsJavaParser.cxx"
break;
case 348: /* Expression: AssignmentExpression */
#line 3174 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6330 "cmDependsJavaParser.cxx"
break;
case 349: /* ConstantExpression: Expression */
#line 3184 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6342 "cmDependsJavaParser.cxx"
break;
case 350: /* New: jp_NEW */
#line 3194 "cmDependsJavaParser.y"
{
jpElementStart(1);
jpCheckEmpty(1);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6354 "cmDependsJavaParser.cxx"
break;
case 351: /* New: Name jp_DOT jp_NEW */
#line 3203 "cmDependsJavaParser.y"
{
jpElementStart(3);
jpStoreClass((yyvsp[-2].str));
jpCheckEmpty(3);
(yyval.str) = 0;
yyGetParser->SetCurrentCombine("");
}
#line 6367 "cmDependsJavaParser.cxx"
break;
#line 6371 "cmDependsJavaParser.cxx"
default: break;
}
/* User semantic actions sometimes alter yychar, and that requires
that yytoken be updated with the new translation. We take the
approach of translating immediately before every use of yytoken.
One alternative is translating here after every semantic action,
but that translation would be missed if the semantic action invokes
YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
incorrect destructor might then be invoked immediately. In the
case of YYERROR or YYBACKUP, subsequent parser actions might lead
to an incorrect destructor call or verbose syntax error message
before the lookahead is translated. */
YY_SYMBOL_PRINT ("-> $$ =", YY_CAST (yysymbol_kind_t, yyr1[yyn]), &yyval, &yyloc);
YYPOPSTACK (yylen);
yylen = 0;
*++yyvsp = yyval;
/* Now 'shift' the result of the reduction. Determine what state
that goes to, based on the state we popped back to and the rule
number reduced by. */
{
const int yylhs = yyr1[yyn] - YYNTOKENS;
const int yyi = yypgoto[yylhs] + *yyssp;
yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp
? yytable[yyi]
: yydefgoto[yylhs]);
}
goto yynewstate;
/*--------------------------------------.
| yyerrlab -- here on detecting error. |
`--------------------------------------*/
yyerrlab:
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = yychar == YYEMPTY ? YYSYMBOL_YYEMPTY : YYTRANSLATE (yychar);
/* If not already recovering from an error, report this error. */
if (!yyerrstatus)
{
++yynerrs;
{
yypcontext_t yyctx
= {yyssp, yytoken};
char const *yymsgp = YY_("syntax error");
int yysyntax_error_status;
yysyntax_error_status = yysyntax_error (&yymsg_alloc, &yymsg, &yyctx);
if (yysyntax_error_status == 0)
yymsgp = yymsg;
else if (yysyntax_error_status == -1)
{
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
yymsg = YY_CAST (char *,
YYSTACK_ALLOC (YY_CAST (YYSIZE_T, yymsg_alloc)));
if (yymsg)
{
yysyntax_error_status
= yysyntax_error (&yymsg_alloc, &yymsg, &yyctx);
yymsgp = yymsg;
}
else
{
yymsg = yymsgbuf;
yymsg_alloc = sizeof yymsgbuf;
yysyntax_error_status = YYENOMEM;
}
}
yyerror (yyscanner, yymsgp);
if (yysyntax_error_status == YYENOMEM)
YYNOMEM;
}
}
if (yyerrstatus == 3)
{
/* If just tried and failed to reuse lookahead token after an
error, discard it. */
if (yychar <= YYEOF)
{
/* Return failure if at end of input. */
if (yychar == YYEOF)
YYABORT;
}
else
{
yydestruct ("Error: discarding",
yytoken, &yylval, yyscanner);
yychar = YYEMPTY;
}
}
/* Else will try to reuse lookahead token after shifting the error
token. */
goto yyerrlab1;
/*---------------------------------------------------.
| yyerrorlab -- error raised explicitly by YYERROR. |
`---------------------------------------------------*/
yyerrorlab:
/* Pacify compilers when the user code never invokes YYERROR and the
label yyerrorlab therefore never appears in user code. */
if (0)
YYERROR;
++yynerrs;
/* Do not reclaim the symbols of the rule whose action triggered
this YYERROR. */
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
yystate = *yyssp;
goto yyerrlab1;
/*-------------------------------------------------------------.
| yyerrlab1 -- common code for both syntax error and YYERROR. |
`-------------------------------------------------------------*/
yyerrlab1:
yyerrstatus = 3; /* Each real token shifted decrements this. */
/* Pop stack until we find a state that shifts the error token. */
for (;;)
{
yyn = yypact[yystate];
if (!yypact_value_is_default (yyn))
{
yyn += YYSYMBOL_YYerror;
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYSYMBOL_YYerror)
{
yyn = yytable[yyn];
if (0 < yyn)
break;
}
}
/* Pop the current state because it cannot handle the error token. */
if (yyssp == yyss)
YYABORT;
yydestruct ("Error: popping",
YY_ACCESSING_SYMBOL (yystate), yyvsp, yyscanner);
YYPOPSTACK (1);
yystate = *yyssp;
YY_STACK_PRINT (yyss, yyssp);
}
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
/* Shift the error token. */
YY_SYMBOL_PRINT ("Shifting", YY_ACCESSING_SYMBOL (yyn), yyvsp, yylsp);
yystate = yyn;
goto yynewstate;
/*-------------------------------------.
| yyacceptlab -- YYACCEPT comes here. |
`-------------------------------------*/
yyacceptlab:
yyresult = 0;
goto yyreturnlab;
/*-----------------------------------.
| yyabortlab -- YYABORT comes here. |
`-----------------------------------*/
yyabortlab:
yyresult = 1;
goto yyreturnlab;
/*-----------------------------------------------------------.
| yyexhaustedlab -- YYNOMEM (memory exhaustion) comes here. |
`-----------------------------------------------------------*/
yyexhaustedlab:
yyerror (yyscanner, YY_("memory exhausted"));
yyresult = 2;
goto yyreturnlab;
/*----------------------------------------------------------.
| yyreturnlab -- parsing is finished, clean up and return. |
`----------------------------------------------------------*/
yyreturnlab:
if (yychar != YYEMPTY)
{
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = YYTRANSLATE (yychar);
yydestruct ("Cleanup: discarding lookahead",
yytoken, &yylval, yyscanner);
}
/* Do not reclaim the symbols of the rule whose action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);
YY_STACK_PRINT (yyss, yyssp);
while (yyssp != yyss)
{
yydestruct ("Cleanup: popping",
YY_ACCESSING_SYMBOL (+*yyssp), yyvsp, yyscanner);
YYPOPSTACK (1);
}
#ifndef yyoverflow
if (yyss != yyssa)
YYSTACK_FREE (yyss);
#endif
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
return yyresult;
}
#line 3212 "cmDependsJavaParser.y"
/* End of grammar */
/*--------------------------------------------------------------------------*/
void cmDependsJava_yyerror(yyscan_t yyscanner, const char* message)
{
yyGetParser->Error(message);
}
|