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
|
# -*- racc -*-
class Ruby26Parser
token kCLASS kMODULE kDEF kUNDEF kBEGIN kRESCUE kENSURE kEND kIF kUNLESS
kTHEN kELSIF kELSE kCASE kWHEN kWHILE kUNTIL kFOR kBREAK kNEXT
kREDO kRETRY kIN kDO kDO_COND kDO_BLOCK kDO_LAMBDA kRETURN kYIELD kSUPER
kSELF kNIL kTRUE kFALSE kAND kOR kNOT kIF_MOD kUNLESS_MOD kWHILE_MOD
kUNTIL_MOD kRESCUE_MOD kALIAS kDEFINED klBEGIN klEND k__LINE__
k__FILE__ k__ENCODING__ tIDENTIFIER tFID tGVAR tIVAR tCONSTANT
tLABEL tCVAR tNTH_REF tBACK_REF tSTRING_CONTENT tINTEGER tFLOAT
tREGEXP_END tUPLUS tUMINUS tUMINUS_NUM tPOW tCMP tEQ tEQQ tNEQ
tGEQ tLEQ tANDOP tOROP tMATCH tNMATCH tDOT tDOT2 tDOT3 tAREF
tASET tLSHFT tRSHFT tCOLON2 tCOLON3 tOP_ASGN tASSOC tLPAREN
tLPAREN2 tRPAREN tLPAREN_ARG tLBRACK tLBRACK2 tRBRACK tLBRACE
tLBRACE_ARG tSTAR tSTAR2 tAMPER tAMPER2 tTILDE tPERCENT tDIVIDE
tPLUS tMINUS tLT tGT tPIPE tBANG tCARET tLCURLY tRCURLY
tBACK_REF2 tSYMBEG tSTRING_BEG tXSTRING_BEG tREGEXP_BEG
tWORDS_BEG tQWORDS_BEG tSTRING_DBEG tSTRING_DVAR tSTRING_END
tSTRING tSYMBOL tNL tEH tCOLON tCOMMA tSPACE tSEMI tLAMBDA
tLAMBEG tDSTAR tCHAR tSYMBOLS_BEG tQSYMBOLS_BEG tSTRING_DEND
tRATIONAL tIMAGINARY
tLABEL_END
tLONELY
tBDOT2 tBDOT3
preclow
nonassoc tLOWEST
nonassoc tLBRACE_ARG
nonassoc kIF_MOD kUNLESS_MOD kWHILE_MOD kUNTIL_MOD
left kOR kAND
right kNOT
nonassoc kDEFINED
right tEQL tOP_ASGN
left kRESCUE_MOD
right tEH tCOLON
nonassoc tDOT2 tDOT3 tBDOT2 tBDOT3
left tOROP
left tANDOP
nonassoc tCMP tEQ tEQQ tNEQ tMATCH tNMATCH
left tGT tGEQ tLT tLEQ
left tPIPE tCARET
left tAMPER2
left tLSHFT tRSHFT
left tPLUS tMINUS
left tSTAR2 tDIVIDE tPERCENT # TODO: tSTAR2 -> tMULT
right tUMINUS_NUM tUMINUS
right tPOW
right tBANG tTILDE tUPLUS
prechigh
rule
program: {
self.lexer.lex_state = EXPR_BEG
}
top_compstmt
{
result = new_compstmt val
lexer.cond.pop # local_pop
lexer.cmdarg.pop
}
top_compstmt: top_stmts opt_terms
{
stmt, _ = val
result = stmt
}
top_stmts: none
| top_stmt
| top_stmts terms top_stmt
{
result = self.block_append val[0], val[2]
}
| error top_stmt
top_stmt: stmt
| klBEGIN
{
if (self.in_def || self.in_single > 0) then
debug 11
yyerror "BEGIN in method"
end
self.env.extend
}
begin_block
{
(_, lineno), _, iter = val
iter.line lineno
(_, preexe,) = iter
preexe.line lineno
result = iter
}
begin_block: tLCURLY { result = lexer.lineno } top_compstmt tRCURLY
{
_, line, stmt, _ = val
result = new_iter s(:preexe).line(line), 0, stmt
}
bodystmt: compstmt opt_rescue k_else
{
res = _values[-2]
# TODO: move down to main match so I can just use val
yyerror "else without rescue is useless" unless res
}
compstmt
opt_ensure
{
body, resc, _, _, els, ens = val
result = new_body [body, resc, els, ens]
}
| compstmt opt_rescue opt_ensure
{
body, resc, ens = val
result = new_body [body, resc, nil, ens]
}
compstmt: stmts opt_terms
{
result = new_compstmt val
}
stmts: none
| stmt_or_begin # TODO: newline_node ?
| stmts terms stmt_or_begin
{
result = self.block_append val[0], val[2]
}
| error stmt
{
result = val[1]
debug 12
}
stmt_or_begin: stmt
| klBEGIN
{
yyerror "BEGIN is permitted only at toplevel"
}
begin_block
{
result = val[2] # wtf?
}
stmt: kALIAS fitem
{
lexer.lex_state = EXPR_FNAME
}
fitem
{
(_, line), lhs, _, rhs = val
result = s(:alias, lhs, rhs).line(line).line line
}
| kALIAS tGVAR tGVAR
{
(_, line), (lhs, _), (rhs, _) = val
result = s(:valias, lhs.to_sym, rhs.to_sym).line line
}
| kALIAS tGVAR tBACK_REF
{
(_, line), (lhs, _), (rhs, _) = val
result = s(:valias, lhs.to_sym, :"$#{rhs}").line line
}
| kALIAS tGVAR tNTH_REF
{
yyerror "can't make alias for the number variables"
}
| kUNDEF undef_list
{
result = val[1]
}
| stmt kIF_MOD expr_value
{
t, _, c = val
result = new_if c, t, nil
}
| stmt kUNLESS_MOD expr_value
{
f, _, c = val
result = new_if c, nil, f
}
| stmt kWHILE_MOD expr_value
{
e, _, c = val
result = new_while e, c, true
}
| stmt kUNTIL_MOD expr_value
{
e, _, c = val
result = new_until e, c, true
}
| stmt kRESCUE_MOD stmt
{
body, _, resbody = val
resbody = new_resbody s(:array).line(resbody.line), resbody
result = new_rescue body, resbody
}
| klEND tLCURLY compstmt tRCURLY
{
(_, line), _, stmt, _ = val
if (self.in_def || self.in_single > 0) then
debug 13
yyerror "END in method; use at_exit"
end
result = new_iter s(:postexe).line(line), 0, stmt
}
| command_asgn
| mlhs tEQL command_call
{
result = new_masgn val[0], val[2], :wrap
}
| lhs tEQL mrhs
{
lhs, _, rhs = val
result = new_assign lhs, s(:svalue, rhs).line(rhs.line)
}
| mlhs tEQL mrhs_arg
{
result = new_masgn val[0], val[2]
}
| expr
command_asgn: lhs tEQL command_rhs
{
result = new_assign val[0], val[2]
}
# | lhs tEQL command_asgn
# {
# result = new_assign val[0], val[2]
# }
| var_lhs tOP_ASGN command_rhs
{
result = new_op_asgn val
}
| primary_value tLBRACK2 opt_call_args rbracket tOP_ASGN command_rhs
{
result = new_op_asgn1 val
}
| primary_value call_op tIDENTIFIER tOP_ASGN command_rhs
{
prim, (call_op, _), (id, _), (op_asgn, _), rhs = val
result = s(:op_asgn, prim, rhs, id.to_sym, op_asgn.to_sym)
result.sexp_type = :safe_op_asgn if call_op == '&.'
result.line prim.line
}
| primary_value call_op tCONSTANT tOP_ASGN command_rhs
{
prim, (call_op, _), (id, _), (op_asgn, _), rhs = val
result = s(:op_asgn, prim, rhs, id.to_sym, op_asgn.to_sym)
result.sexp_type = :safe_op_asgn if call_op == '&.'
result.line prim.line
}
| primary_value tCOLON2 tCONSTANT tOP_ASGN command_rhs
{
lhs1, _, (lhs2, line), (id, _), rhs = val
result = s(:op_asgn, lhs1, rhs, lhs2.to_sym, id.to_sym).line line
}
| primary_value tCOLON2 tIDENTIFIER tOP_ASGN command_rhs
{
lhs1, _, (lhs2, line), (id, _), rhs = val
result = s(:op_asgn, lhs1, rhs, lhs2.to_sym, id.to_sym).line line
}
| backref tOP_ASGN command_rhs
{
self.backref_assign_error val[0]
}
command_rhs: command_call =tOP_ASGN
{
expr, = val
result = value_expr expr
}
| command_call kRESCUE_MOD stmt
{
expr, (_, line), resbody = val
expr = value_expr expr
ary = s(:array).line line
result = new_rescue(expr, new_resbody(ary, resbody))
}
| command_asgn
expr: command_call
| expr kAND expr
{
lhs, _, rhs = val
result = logical_op :and, lhs, rhs
}
| expr kOR expr
{
lhs, _, rhs = val
result = logical_op :or, lhs, rhs
}
| kNOT opt_nl expr
{
(_, line), _, expr = val
result = new_call(expr, :"!").line line
# REFACTOR: call_uni_op
}
| tBANG command_call
{
_, cmd = val
result = new_call(cmd, :"!").line cmd.line
# TODO: fix line number to tBANG... but causes BAD shift/reduce conflict
# REFACTOR: call_uni_op -- see parse26.y
}
| arg =tLBRACE_ARG
expr_value: expr
{
result = value_expr(val[0])
}
expr_value_do: {
lexer.cond.push true
}
expr_value do
{
lexer.cond.pop
}
{
_, expr, _, _ = val
result = expr
}
command_call: command
| block_command
block_command: block_call
| block_call call_op2 operation2 command_args
{
blk, _, (msg, _line), args = val
result = new_call(blk, msg.to_sym, args).line blk.line
}
cmd_brace_block: tLBRACE_ARG
{
# self.env.extend(:dynamic)
result = self.lexer.lineno
}
brace_body tRCURLY
{
_, line, body, _ = val
result = body
result.line line
# self.env.unextend
}
fcall: operation
{
(msg, line), = val
result = new_call(nil, msg.to_sym).line line
}
command: fcall command_args =tLOWEST
{
call, args = val
result = call.concat args.sexp_body
}
| fcall command_args cmd_brace_block
{
call, args, block = val
result = call.concat args.sexp_body
if block then
block_dup_check result, block
result, operation = block, result
result.insert 1, operation
end
}
| primary_value call_op operation2 command_args =tLOWEST
{
lhs, callop, (op, _), args = val
result = new_call lhs, op.to_sym, args, callop
result.line lhs.line
}
| primary_value call_op operation2 command_args cmd_brace_block
{
recv, _, (msg, _line), args, block = val
call = new_call recv, msg.to_sym, args, val[1]
block_dup_check call, block
block.insert 1, call
result = block
}
| primary_value tCOLON2 operation2 command_args =tLOWEST
{
lhs, _, (id, line), args = val
result = new_call lhs, id.to_sym, args
result.line line
}
| primary_value tCOLON2 operation2 command_args cmd_brace_block
{
recv, _, (msg, _line), args, block = val
call = new_call recv, msg.to_sym, args
block_dup_check call, block
block.insert 1, call
result = block
}
| kSUPER command_args
{
result = new_super val[1]
}
| kYIELD command_args
{
(_, line), args = val
result = new_yield args
result.line line # TODO: push to new_yield
}
| k_return call_args
{
line = val[0].last
result = s(:return, ret_args(val[1])).line(line)
}
| kBREAK call_args
{
(_, line), args = val
result = s(:break, ret_args(args)).line line
}
| kNEXT call_args
{
line = val[0].last
result = s(:next, ret_args(val[1])).line(line)
}
mlhs: mlhs_basic
| tLPAREN mlhs_inner rparen
{
result = val[1]
}
mlhs_inner: mlhs_basic
| tLPAREN mlhs_inner rparen
{
_, arg, _ = val
l = arg.line
result = s(:masgn, s(:array, arg).line(l)).line l
}
mlhs_basic: mlhs_head
{
head, = val
result = s(:masgn, head).line head.line
}
| mlhs_head mlhs_item
{
lhs, rhs = val
result = s(:masgn, lhs << rhs.compact).line lhs.line
}
| mlhs_head tSTAR mlhs_node
{
head, _, tail = val
head << s(:splat, tail).line(tail.line)
result = s(:masgn, head).line head.line
}
| mlhs_head tSTAR mlhs_node tCOMMA mlhs_post
{
ary1, _, splat, _, ary2 = val
result = list_append ary1, s(:splat, splat).line(splat.line)
result.concat ary2.sexp_body
result = s(:masgn, result).line result.line
}
| mlhs_head tSTAR
{
head, _ = val
l = head.line
result = s(:masgn, head << s(:splat).line(l)).line l
}
| mlhs_head tSTAR tCOMMA mlhs_post
{
head, _, _, post = val
ary = list_append head, s(:splat).line(head.line)
ary.concat post.sexp_body
result = s(:masgn, ary).line ary.line
}
| tSTAR mlhs_node
{
_, node = val
l = node.line
splat = s(:splat, node).line l
ary = s(:array, splat).line l
result = s(:masgn, ary).line l
}
| tSTAR mlhs_node tCOMMA mlhs_post
{
_, node, _, post = val
splat = s(:splat, node).line node.line
ary = s(:array, splat).line splat.line
ary.concat post.sexp_body
result = s(:masgn, ary).line ary.line
}
| tSTAR
{
l = lexer.lineno
result = s(:masgn, s(:array, s(:splat).line(l)).line(l)).line l
}
| tSTAR tCOMMA mlhs_post
{
_, _, post = val
l = post.line
splat = s(:splat).line l
ary = s(:array, splat, *post.sexp_body).line l
result = s(:masgn, ary).line l
}
mlhs_item: mlhs_node
| tLPAREN mlhs_inner rparen
{
result = val[1]
}
mlhs_head: mlhs_item tCOMMA
{
lhs, _ = val
result = s(:array, lhs).line lhs.line
}
| mlhs_head mlhs_item tCOMMA
{
result = val[0] << val[1].compact
}
mlhs_post: mlhs_item
{
item, = val
result = s(:array, item).line item.line
}
| mlhs_post tCOMMA mlhs_item
{
result = list_append val[0], val[2]
}
mlhs_node: user_variable
{
result = self.assignable val[0]
}
| keyword_variable
{
result = self.assignable val[0]
}
| primary_value tLBRACK2 opt_call_args rbracket
{
result = self.aryset val[0], val[2]
}
| primary_value call_op tIDENTIFIER
{
lhs, call_op, (id, _line) = val
result = new_attrasgn lhs, id, call_op
}
| primary_value tCOLON2 tIDENTIFIER
{
recv, _, (id, _line) = val
result = new_attrasgn recv, id
}
| primary_value call_op tCONSTANT
{
lhs, call_op, (id, _line) = val
result = new_attrasgn lhs, id, call_op
}
| primary_value tCOLON2 tCONSTANT
{
if (self.in_def || self.in_single > 0) then
debug 14
yyerror "dynamic constant assignment"
end
expr, _, (id, _line) = val
l = expr.line
result = s(:const, s(:colon2, expr, id.to_sym).line(l), nil).line l
}
| tCOLON3 tCONSTANT
{
if (self.in_def || self.in_single > 0) then
debug 15
yyerror "dynamic constant assignment"
end
_, (id, l) = val
result = s(:const, nil, s(:colon3, id.to_sym).line(l)).line l
}
| backref
{
ref, = val
self.backref_assign_error ref
}
lhs: user_variable
{
var, = val
result = self.assignable var
}
| keyword_variable
{
var, = val
result = self.assignable var
debug 16
}
| primary_value tLBRACK2 opt_call_args rbracket
{
lhs, _, args, _ = val
result = self.aryset lhs, args
}
| primary_value call_op tIDENTIFIER # REFACTOR
{
lhs, op, (id, _line) = val
result = new_attrasgn lhs, id, op
}
| primary_value tCOLON2 tIDENTIFIER
{
lhs, _, (id, _line) = val
result = new_attrasgn lhs, id
}
| primary_value call_op tCONSTANT # REFACTOR?
{
lhs, call_op, (id, _line) = val
result = new_attrasgn lhs, id, call_op
}
| primary_value tCOLON2 tCONSTANT
{
expr, _, (id, _line) = val
if (self.in_def || self.in_single > 0) then
debug 17
yyerror "dynamic constant assignment"
end
l = expr.line
result = s(:const, s(:colon2, expr, id.to_sym).line(l)).line l
}
| tCOLON3 tCONSTANT
{
_, (id, l) = val
if (self.in_def || self.in_single > 0) then
debug 18
yyerror "dynamic constant assignment"
end
result = s(:const, s(:colon3, id.to_sym).line(l)).line l
}
| backref
{
self.backref_assign_error val[0]
}
cname: tIDENTIFIER
{
yyerror "class/module name must be CONSTANT"
}
| tCONSTANT
cpath: tCOLON3 cname
{
result = wrap :colon3, val[1]
}
| cname
{
(id, line), = val
result = [id.to_sym, line] # TODO: sexp?
}
| primary_value tCOLON2 cname
{
pval, _, (name, _line) = val
result = s(:colon2, pval, name.to_sym)
result.line pval.line
}
fname: tIDENTIFIER | tCONSTANT | tFID
| op
{
lexer.lex_state = EXPR_END
}
| reswords
fitem: fname
{
result = wrap :lit, val[0]
}
| symbol
undef_list: fitem
{
result = new_undef val[0]
}
|
undef_list tCOMMA
{
lexer.lex_state = EXPR_FNAME
}
fitem
{
result = new_undef val[0], val[3]
}
op: tPIPE | tCARET | tAMPER2 | tCMP | tEQ | tEQQ
| tMATCH | tNMATCH | tGT | tGEQ | tLT | tLEQ
| tNEQ | tLSHFT | tRSHFT | tPLUS | tMINUS | tSTAR2
| tSTAR | tDIVIDE | tPERCENT | tPOW | tDSTAR | tBANG | tTILDE
| tUPLUS | tUMINUS | tAREF | tASET | tBACK_REF2
reswords: k__LINE__ | k__FILE__ | k__ENCODING__ | klBEGIN | klEND
| kALIAS | kAND | kBEGIN | kBREAK | kCASE
| kCLASS | kDEF | kDEFINED | kDO | kELSE
| kELSIF | kEND | kENSURE | kFALSE | kFOR
| kIN | kMODULE | kNEXT | kNIL | kNOT
| kOR | kREDO | kRESCUE | kRETRY | kRETURN
| kSELF | kSUPER | kTHEN | kTRUE | kUNDEF
| kWHEN | kYIELD | kIF | kUNLESS | kWHILE
| kUNTIL
arg: lhs tEQL arg_rhs
{
result = new_assign val[0], val[2]
}
| var_lhs tOP_ASGN arg_rhs
{
result = new_op_asgn val
}
| primary_value tLBRACK2 opt_call_args rbracket tOP_ASGN arg_rhs
{
result = new_op_asgn1 val
}
| primary_value call_op tIDENTIFIER tOP_ASGN arg_rhs
{
result = new_op_asgn2 val
}
| primary_value call_op tCONSTANT tOP_ASGN arg_rhs
{
result = new_op_asgn2 val
}
| primary_value tCOLON2 tIDENTIFIER tOP_ASGN arg_rhs
{
lhs, _, (id, _line), (op, _), rhs = val
result = s(:op_asgn, lhs, rhs, id.to_sym, op.to_sym).line lhs.line
}
| primary_value tCOLON2 tCONSTANT tOP_ASGN arg_rhs
{
lhs1, _, (lhs2, _line), op, rhs = val
lhs = s(:colon2, lhs1, lhs2.to_sym).line lhs1.line
result = new_const_op_asgn [lhs, op, rhs]
}
| tCOLON3 tCONSTANT tOP_ASGN arg_rhs
{
_, lhs, op, rhs = val
lhs = wrap :colon3, lhs
result = new_const_op_asgn [lhs, op, rhs]
}
| backref tOP_ASGN arg_rhs
{
# TODO: lhs = var_field val[0]
asgn = new_op_asgn val
result = self.backref_assign_error asgn
}
| arg tDOT2 arg
{
v1, v2 = val[0], val[2]
if v1.sexp_type == :lit and v2.sexp_type == :lit and Integer === v1.last and Integer === v2.last then
result = s(:lit, (v1.last)..(v2.last)).line v1.line
else
result = s(:dot2, v1, v2).line v1.line
end
}
| arg tDOT3 arg
{
v1, v2 = val[0], val[2]
if v1.sexp_type == :lit and v2.sexp_type == :lit and Integer === v1.last and Integer === v2.last then
result = s(:lit, (v1.last)...(v2.last)).line v1.line
else
result = s(:dot3, v1, v2).line v1.line
end
}
| arg tDOT2
{
v1, _ = val
v2 = nil
result = s(:dot2, v1, v2).line v1.line
}
| arg tDOT3
{
v1, _ = val
v2 = nil
result = s(:dot3, v1, v2).line v1.line
}
| arg tPLUS arg
{
result = new_call val[0], :+, argl(val[2])
}
| arg tMINUS arg
{
result = new_call val[0], :-, argl(val[2])
}
| arg tSTAR2 arg # TODO: rename
{
result = new_call val[0], :*, argl(val[2])
}
| arg tDIVIDE arg
{
result = new_call val[0], :"/", argl(val[2])
}
| arg tPERCENT arg
{
result = new_call val[0], :"%", argl(val[2])
}
| arg tPOW arg
{
result = new_call val[0], :**, argl(val[2])
}
| tUMINUS_NUM simple_numeric tPOW arg
{
_, (num, line), _, arg = val
lit = s(:lit, num).line line
result = new_call(new_call(lit, :"**", argl(arg)), :"-@")
}
| tUPLUS arg
{
result = new_call val[1], :"+@"
}
| tUMINUS arg
{
result = new_call val[1], :"-@"
}
| arg tPIPE arg
{
result = new_call val[0], :"|", argl(val[2])
}
| arg tCARET arg
{
result = new_call val[0], :"^", argl(val[2])
}
| arg tAMPER2 arg
{
result = new_call val[0], :"&", argl(val[2])
}
| arg tCMP arg
{
result = new_call val[0], :"<=>", argl(val[2])
}
| rel_expr =tCMP
| arg tEQ arg
{
result = new_call val[0], :"==", argl(val[2])
}
| arg tEQQ arg
{
result = new_call val[0], :"===", argl(val[2])
}
| arg tNEQ arg
{
result = new_call val[0], :"!=", argl(val[2])
}
| arg tMATCH arg
{
lhs, _, rhs = val
result = new_match lhs, rhs
}
| arg tNMATCH arg
{
lhs, _, rhs = val
result = s(:not, new_match(lhs, rhs)).line lhs.line
}
| tBANG arg
{
_, arg = val
result = new_call arg, :"!"
result.line arg.line
}
| tTILDE arg
{
result = new_call value_expr(val[1]), :"~"
}
| arg tLSHFT arg
{
val[0] = value_expr val[0]
val[2] = value_expr val[2]
result = new_call val[0], :"\<\<", argl(val[2])
}
| arg tRSHFT arg
{
val[0] = value_expr val[0]
val[2] = value_expr val[2]
result = new_call val[0], :">>", argl(val[2])
}
| arg tANDOP arg
{
result = logical_op :and, val[0], val[2]
}
| arg tOROP arg
{
result = logical_op :or, val[0], val[2]
}
| kDEFINED opt_nl arg
{
(_, line), _, arg = val
result = s(:defined, arg).line line
}
| arg tEH arg opt_nl tCOLON arg
{
c, _, t, _, _, f = val
result = s(:if, c, t, f).line c.line
}
| primary
relop: tGT
| tLT
| tGEQ
| tLEQ
rel_expr: arg relop arg =tGT
{
lhs, (op, _), rhs = val
result = new_call lhs, op.to_sym, argl(rhs)
}
| rel_expr relop arg =tGT
{
lhs, (op, _), rhs = val
warn "comparison '%s' after comparison", op
result = new_call lhs, op.to_sym, argl(rhs)
}
arg_value: arg
{
result = value_expr(val[0])
}
aref_args: none
| args trailer
{
result = args [val[0]]
}
| args tCOMMA assocs trailer
{
result = args [val[0], array_to_hash(val[2])]
}
| assocs trailer
{
result = args [array_to_hash(val[0])]
}
arg_rhs: arg =tOP_ASGN
| arg kRESCUE_MOD arg
{
body, (_, line), resbody = val
body = value_expr body
resbody = remove_begin resbody
ary = s(:array).line line
result = new_rescue(body, new_resbody(ary, resbody))
}
paren_args: tLPAREN2 opt_call_args rparen
{
_, args, _ = val
result = args
}
opt_paren_args: none
| paren_args
opt_call_args: none
| call_args
| args tCOMMA
{
result = args val
}
| args tCOMMA assocs tCOMMA
{
result = args [val[0], array_to_hash(val[2])]
}
| assocs tCOMMA
{
result = args [array_to_hash(val[0])]
}
call_args: command
{
warning "parenthesize argument(s) for future version"
result = call_args val
}
| args opt_block_arg
{
result = call_args val
}
| assocs opt_block_arg
{
result = call_args [array_to_hash(val[0]), val[1]]
}
| args tCOMMA assocs opt_block_arg
{
result = call_args [val[0], array_to_hash(val[2]), val[3]]
}
| block_arg
{
result = call_args val
}
command_args: {
# parse26.y line 2200
# If call_args starts with a open paren '(' or
# '[', look-ahead reading of the letters calls
# CMDARG_PUSH(0), but the push must be done
# after CMDARG_PUSH(1). So this code makes them
# consistent by first cancelling the premature
# CMDARG_PUSH(0), doing CMDARG_PUSH(1), and
# finally redoing CMDARG_PUSH(0).
result = yychar = self.last_token_type.first
lookahead = [:tLPAREN, :tLPAREN_ARG, :tLPAREN2, :tLBRACK, :tLBRACK2].include?(yychar)
lexer.cmdarg.pop if lookahead
lexer.cmdarg.push true
lexer.cmdarg.push false if lookahead
}
call_args
{
yychar, args = val
# call_args can be followed by tLBRACE_ARG (that
# does CMDARG_PUSH(0) in the lexer) but the push
# must be done after CMDARG_POP() in the parser.
# So this code does CMDARG_POP() to pop 0 pushed
# by tLBRACE_ARG, CMDARG_POP() to pop 1 pushed
# by command_args, and CMDARG_PUSH(0) to restore
# back the flag set by tLBRACE_ARG.
lookahead = [:tLBRACE_ARG].include?(yychar)
lexer.cmdarg.pop if lookahead
lexer.cmdarg.pop
lexer.cmdarg.push false if lookahead
result = args
}
block_arg: tAMPER arg_value
{
_, arg = val
result = s(:block_pass, arg).line arg.line
}
opt_block_arg: tCOMMA block_arg
{
result = val[1]
}
| none
args: arg_value
{
arg, = val
lineno = arg.line || lexer.lineno # HACK
result = s(:array, arg).line lineno
}
| tSTAR arg_value
{
_, arg = val
result = s(:array, s(:splat, arg).line(arg.line)).line arg.line
}
| args tCOMMA arg_value
{
args, _, id = val
result = self.list_append args, id
}
| args tCOMMA tSTAR arg_value
{
# TODO: the line number from tSTAR has been dropped
args, _, _, id = val
line = lexer.lineno
result = self.list_append args, s(:splat, id).line(line)
}
mrhs_arg: mrhs
{
result = new_masgn_arg val[0]
}
| arg_value
{
result = new_masgn_arg val[0], :wrap
}
mrhs: args tCOMMA arg_value
{
result = val[0] << val[2]
}
| args tCOMMA tSTAR arg_value
{
# TODO: make all tXXXX terminals include lexer.lineno
arg, _, _, splat = val
result = self.arg_concat arg, splat
}
| tSTAR arg_value
{
_, arg = val
result = s(:splat, arg).line arg.line
}
primary: literal
| strings
| xstring
| regexp
| words
| qwords
| symbols
| qsymbols
| var_ref
| backref
| tFID
{
(msg, line), = val
result = new_call nil, msg.to_sym
result.line line
}
| k_begin
{
lexer.cmdarg.push false
result = self.lexer.lineno
}
bodystmt k_end
{
lexer.cmdarg.pop
result = new_begin val
}
| tLPAREN_ARG
{
lexer.lex_state = EXPR_ENDARG
result = lexer.lineno
}
rparen
{
_, line, _ = val
result = s(:begin).line line
}
| tLPAREN_ARG
stmt
{
lexer.lex_state = EXPR_ENDARG
}
rparen
{
_, stmt, _, _, = val
# warning "(...) interpreted as grouped expression"
result = stmt
}
| tLPAREN compstmt tRPAREN
{
_, stmt, _ = val
result = stmt
result ||= s(:nil).line lexer.lineno
result.paren = true
}
| primary_value tCOLON2 tCONSTANT
{
expr, _, (id, _line) = val
result = s(:colon2, expr, id.to_sym).line expr.line
}
| tCOLON3 tCONSTANT
{
result = wrap :colon3, val[1]
}
| tLBRACK { result = lexer.lineno } aref_args tRBRACK
{
_, line, args, _ = val
result = args || s(:array)
result.sexp_type = :array # aref_args is :args
result.line line
}
| tLBRACE
{
result = self.lexer.lineno
}
assoc_list tRCURLY
{
result = new_hash val
}
| k_return
{
(_, line), = val
result = s(:return).line line
}
| kYIELD tLPAREN2 call_args rparen
{
(_, line), _, args, _ = val
result = new_yield(args).line line
}
| kYIELD tLPAREN2 rparen
{
(_, line), _, _ = val
result = new_yield.line line
}
| kYIELD
{
(_, line), = val
result = new_yield.line line
}
| kDEFINED opt_nl tLPAREN2 expr rparen
{
(_, line), _, _, arg, _ = val
result = s(:defined, arg).line line
}
| kNOT tLPAREN2 expr rparen
{
_, _, lhs, _ = val
result = new_call lhs, :"!"
}
| kNOT tLPAREN2 rparen
{
debug 20
}
| fcall brace_block
{
call, iter = val
iter.insert 1, call
result = iter
# FIX: probably not: call.line = iter.line
}
| method_call
| method_call brace_block
{
call, iter = val[0], val[1]
block_dup_check call, iter
iter.insert 1, call # FIX
result = iter
}
| lambda
{
expr, = val
result = expr
}
| k_if expr_value then compstmt if_tail k_end
{
_, c, _, t, f, _ = val
result = new_if c, t, f
}
| k_unless expr_value then compstmt opt_else k_end
{
_, c, _, t, f, _ = val
result = new_if c, f, t
}
| k_while expr_value_do compstmt k_end
{
_, cond, body, _ = val
result = new_while body, cond, true
}
| k_until expr_value_do compstmt k_end
{
_, cond, body, _ = val
result = new_until body, cond, true
}
| k_case expr_value opt_terms case_body k_end
{
(_, line), expr, _, body, _ = val
result = new_case expr, body, line
}
| k_case opt_terms case_body k_end
{
(_, line), _, body, _ = val
result = new_case nil, body, line
}
| k_for for_var kIN expr_value_do compstmt k_end
{
_, var, _, iter, body, _ = val
result = new_for iter, var, body
}
| k_class
{
result = self.lexer.lineno
}
cpath superclass
{
if (self.in_def || self.in_single > 0) then
yyerror "class definition in method body"
end
self.env.extend
}
bodystmt k_end
{
result = new_class val
self.env.unextend
self.lexer.ignore_body_comments
}
| k_class tLSHFT
{
result = self.lexer.lineno
}
expr
{
result = self.in_def
self.in_def = false
}
term
{
result = self.in_single
self.in_single = 0
self.env.extend
}
bodystmt k_end
{
result = new_sclass val
self.env.unextend
self.lexer.ignore_body_comments
}
| k_module
{
result = self.lexer.lineno
}
cpath
{
yyerror "module definition in method body" if
self.in_def or self.in_single > 0
self.env.extend
}
bodystmt k_end
{
result = new_module val
self.env.unextend
self.lexer.ignore_body_comments
}
| k_def fname
{
result = self.in_def
self.in_def = true # group = local_push
self.env.extend
lexer.cmdarg.push false
lexer.cond.push false
}
f_arglist bodystmt k_end
{
result, in_def = new_defn val
lexer.cond.pop # group = local_pop
lexer.cmdarg.pop
self.env.unextend
self.in_def = in_def
self.lexer.ignore_body_comments
}
| k_def singleton dot_or_colon
{
lexer.lex_state = EXPR_FNAME
}
fname
{
result = self.in_def
self.in_single += 1 # TODO: remove?
self.in_def = true # local_push
self.env.extend
lexer.cmdarg.push false
lexer.cond.push false
lexer.lex_state = EXPR_ENDFN|EXPR_LABEL
}
f_arglist bodystmt k_end
{
# [kdef, recv, _, _, (name, line), in_def, args, body, kend]
# =>
# [kdef, recv, (name, line), in_def, args, body, kend]
val.delete_at 3
val.delete_at 2
result, in_def = new_defs val
lexer.cond.pop # group = local_pop
lexer.cmdarg.pop
self.env.unextend
self.in_def = in_def
self.in_single -= 1
# TODO: restore cur_arg ? what's cur_arg?
self.lexer.ignore_body_comments
}
| kBREAK
{
(_, line), = val
result = s(:break).line line
}
| kNEXT
{
(_, line), = val
result = s(:next).line line
}
| kREDO
{
(_, line), = val
result = s(:redo).line line
}
| kRETRY
{
(_, line), = val
result = s(:retry).line line
}
primary_value: primary
{
result = value_expr(val[0])
}
# These are really stupid
k_begin: kBEGIN
k_if: kIF
k_unless: kUNLESS
k_while: kWHILE
k_until: kUNTIL
k_case: kCASE
k_for: kFOR
k_class: kCLASS
{
self.comments.push self.lexer.comments
}
k_module: kMODULE
{
self.comments.push self.lexer.comments
}
k_def: kDEF
{
self.comments.push self.lexer.comments
}
k_do: kDO
k_do_block: kDO_BLOCK
k_rescue: kRESCUE
k_ensure: kENSURE
k_when: kWHEN
k_else: kELSE
k_elsif: kELSIF
k_end: kEND
k_return: kRETURN
then: term
| kTHEN
| term kTHEN
do: term
| kDO_COND
if_tail: opt_else
| k_elsif expr_value then compstmt if_tail
{
(_, line), c, _, t, rest = val
result = s(:if, c, t, rest).line line
}
opt_else: none
| kELSE compstmt
{
result = val[1]
}
for_var: lhs
| mlhs
{
val[0].delete_at 1 if val[0][1].nil? # HACK
}
f_marg: f_norm_arg
| tLPAREN f_margs rparen
{
result = val[1]
}
f_marg_list: f_marg
{
sym, = val
result = s(:array, sym).line lexer.lineno
}
| f_marg_list tCOMMA f_marg
{
result = list_append val[0], val[2]
}
f_margs: f_marg_list
{
args, = val
result = block_var args
}
| f_marg_list tCOMMA f_rest_marg
{
args, _, rest = val
result = block_var args, rest
}
| f_marg_list tCOMMA f_rest_marg tCOMMA f_marg_list
{
lhs, _, splat, _, rhs = val
result = block_var lhs, splat, rhs
}
| f_rest_marg
{
rest, = val
result = block_var rest
}
| f_rest_marg tCOMMA f_marg_list
{
splat, _, rest = val
result = block_var splat, rest
}
f_rest_marg: tSTAR f_norm_arg
{
_, (id, line) = val
result = args ["*#{id}".to_sym]
result.line line
}
| tSTAR
{
result = args [:*]
result.line lexer.lineno # FIX: tSTAR -> line
}
block_args_tail: f_block_kwarg tCOMMA f_kwrest opt_f_block_arg
{
result = call_args val
}
| f_block_kwarg opt_f_block_arg
{
result = call_args val
}
| f_kwrest opt_f_block_arg
{
result = call_args val
}
| f_block_arg
{
(id, line), = val
result = call_args [id]
result.line line
}
opt_block_args_tail: tCOMMA block_args_tail
{
result = args val
}
| none
block_param: f_arg tCOMMA f_block_optarg tCOMMA f_rest_arg opt_block_args_tail
{
result = args val
}
| f_arg tCOMMA f_block_optarg tCOMMA f_rest_arg tCOMMA f_arg opt_block_args_tail
{
result = args val
}
| f_arg tCOMMA f_block_optarg opt_block_args_tail
{
result = args val
}
| f_arg tCOMMA f_block_optarg tCOMMA f_arg opt_block_args_tail
{
result = args val
}
| f_arg tCOMMA f_rest_arg opt_block_args_tail
{
result = args val
}
| f_arg tCOMMA
{
result = args(val) << nil
}
| f_arg tCOMMA f_rest_arg tCOMMA f_arg opt_block_args_tail
{
result = args val
}
| f_arg opt_block_args_tail
{
result = args val
}
| f_block_optarg tCOMMA f_rest_arg opt_block_args_tail
{
result = args val
}
| f_block_optarg tCOMMA f_rest_arg tCOMMA f_arg opt_block_args_tail
{
result = args val
}
| f_block_optarg opt_block_args_tail
{
result = args val
}
| f_block_optarg tCOMMA f_arg opt_block_args_tail
{
result = args val
}
| f_rest_arg opt_block_args_tail
{
result = args val
}
| f_rest_arg tCOMMA f_arg opt_block_args_tail
{
result = args val
}
| block_args_tail
{
result = args val
}
opt_block_param: none { result = 0 }
| block_param_def
{
self.lexer.command_start = true
}
block_param_def: tPIPE opt_bv_decl tPIPE
{
# TODO: current_arg = 0
result = args val
}
| tOROP
{
result = s(:args).line lexer.lineno
}
| tPIPE block_param opt_bv_decl tPIPE
{
# TODO: current_arg = 0
result = args val
}
opt_bv_decl: opt_nl
| opt_nl tSEMI bv_decls opt_nl
{
result = args val
}
bv_decls: bvar
{
result = args val
}
| bv_decls tCOMMA bvar
{
result = args val
}
bvar: tIDENTIFIER
{
result = wrap :shadow, val[0]
}
| f_bad_arg
lambda: tLAMBDA
{
self.env.extend :dynamic
result = [lexer.lineno, lexer.lpar_beg]
lexer.paren_nest += 1
lexer.lpar_beg = lexer.paren_nest
}
f_larglist
{
lexer.cmdarg.push false
}
lambda_body
{
_, (line, lpar), args, _cmdarg, body = val
lexer.lpar_beg = lpar
lexer.cmdarg.pop
call = s(:lambda).line line
result = new_iter call, args, body
result.line line
self.env.unextend # TODO: dynapush & dynapop
}
f_larglist: tLPAREN2 f_args opt_bv_decl rparen
{
result = args val
}
| f_args
{
result = val[0]
result = 0 if result == s(:args)
}
lambda_body: tLAMBEG compstmt tRCURLY
{
result = val[1]
}
| kDO_LAMBDA bodystmt kEND
{
result = val[1]
}
do_block: k_do_block do_body kEND
{
(_, line), iter, _ = val
result = iter.line line
}
block_call: command do_block
{
# TODO:
## if (nd_type($1) == NODE_YIELD) {
## compile_error(PARSER_ARG "block given to yield");
cmd, blk = val
syntax_error "Both block arg and actual block given." if
cmd.block_pass?
if inverted? val then
val = invert_block_call val
cmd, blk = val
end
result = blk
result.insert 1, cmd
}
| block_call call_op2 operation2 opt_paren_args
{
lhs, _, (id, _line), args = val
result = new_call lhs, id.to_sym, args
}
| block_call call_op2 operation2 opt_paren_args brace_block
{
iter1, _, (name, _line), args, iter2 = val
call = new_call iter1, name.to_sym, args
iter2.insert 1, call
result = iter2
}
| block_call call_op2 operation2 command_args do_block
{
iter1, _, (name, _line), args, iter2 = val
call = new_call iter1, name.to_sym, args
iter2.insert 1, call
result = iter2
}
method_call: fcall paren_args
{
call, args = val
result = call.concat args.sexp_body if args
}
| primary_value call_op operation2 opt_paren_args
{
recv, call_op, (op, _line), args = val
result = new_call recv, op.to_sym, args, call_op
}
| primary_value tCOLON2 operation2 paren_args
{
recv, _, (op, _line), args = val
result = new_call recv, op.to_sym, args
}
| primary_value tCOLON2 operation3
{
lhs, _, (id, _line) = val
result = new_call lhs, id.to_sym
}
| primary_value call_op paren_args
{
result = new_call val[0], :call, val[2], val[1]
}
| primary_value tCOLON2 paren_args
{
result = new_call val[0], :call, val[2]
}
| kSUPER paren_args
{
result = new_super val[1]
}
| kSUPER
{
result = s(:zsuper).line lexer.lineno
}
| primary_value tLBRACK2 opt_call_args rbracket
{
result = new_aref val
}
brace_block: tLCURLY
{
self.env.extend :dynamic
result = self.lexer.lineno
}
brace_body tRCURLY
{
_, line, body, _ = val
result = body
result.line line
self.env.unextend
}
| k_do
{
self.env.extend :dynamic
result = self.lexer.lineno
}
do_body kEND
{
_, line, body, _ = val
result = body
result.line line
self.env.unextend
}
brace_body: { self.env.extend :dynamic; result = self.lexer.lineno }
{ result = lexer.cmdarg.store(false) }
opt_block_param compstmt
{
line, cmdarg, param, cmpstmt = val
result = new_brace_body param, cmpstmt, line
self.env.unextend
lexer.cmdarg.restore cmdarg
lexer.cmdarg.pop # because of: cmdarg_stack >> 1 ?
}
do_body: { self.env.extend :dynamic; result = self.lexer.lineno }
{ lexer.cmdarg.push false }
opt_block_param
bodystmt
{
line, _cmdarg, param, cmpstmt = val
result = new_do_body param, cmpstmt, line
lexer.cmdarg.pop
self.env.unextend
}
case_args: arg_value
{
arg, = val
result = s(:array, arg).line arg.line
}
| tSTAR arg_value
{
_, arg = val
result = s(:array, s(:splat, arg).line(arg.line)).line arg.line
}
| case_args tCOMMA arg_value
{
args, _, id = val
result = self.list_append args, id
}
| case_args tCOMMA tSTAR arg_value
{
args, _, _, id = val
result = self.list_append args, s(:splat, id).line(id.line)
}
case_body: k_when
{
result = self.lexer.lineno
}
case_args then compstmt cases
{
result = new_when(val[2], val[4])
result.line val[1]
result << val[5] if val[5]
}
cases: opt_else | case_body
opt_rescue: k_rescue exc_list exc_var then compstmt opt_rescue
{
(_, line), klasses, var, _, body, rest = val
klasses ||= s(:array)
klasses << new_assign(var, s(:gvar, :"$!").line(var.line)) if var
klasses.line line
result = new_resbody(klasses, body)
result << rest if rest # UGH, rewritten above
}
|
{
result = nil
}
exc_list: arg_value
{
arg, = val
result = s(:array, arg).line arg.line
}
| mrhs
| none
exc_var: tASSOC lhs
{
result = val[1]
}
| none
opt_ensure: k_ensure compstmt
{
(_, line), body = val
result = body || s(:nil).line(line)
}
| none
literal: numeric
{
(lit, line), = val
result = s(:lit, lit).line line
}
| symbol
strings: string
{
str, = val
str = s(:dstr, str.value) if str.sexp_type == :evstr
result = str
}
string: tCHAR
{
debug 37
}
| string1
| string string1
{
result = self.literal_concat val[0], val[1]
}
string1: tSTRING_BEG string_contents tSTRING_END
{
(_, line), str, (_, func) = val
str = dedent str if func =~ RubyLexer::STR_FUNC_DEDENT
result = str.line line
}
| tSTRING
{
result = new_string val
}
xstring: tXSTRING_BEG xstring_contents tSTRING_END
{
result = new_xstring val
# TODO: dedent?!?! SERIOUSLY?!?
}
regexp: tREGEXP_BEG regexp_contents tREGEXP_END
{
result = new_regexp val
}
words: tWORDS_BEG tSPACE tSTRING_END
{
(_, line), _, _ = val
result = s(:array).line line
}
| tWORDS_BEG word_list tSTRING_END
{
(_, line), list, _ = val
result = list.line line
}
word_list: none
{
result = new_word_list
}
| word_list word tSPACE
{
result = val[0].dup << new_word_list_entry(val)
}
word: string_content
| word string_content
{
result = self.literal_concat val[0], val[1]
}
symbols: tSYMBOLS_BEG tSPACE tSTRING_END
{
(_, line), _, _ = val
result = s(:array).line line
}
| tSYMBOLS_BEG symbol_list tSTRING_END
{
(_, line), list, _, = val
list.line line
result = list
}
symbol_list: none
{
result = new_symbol_list
}
| symbol_list word tSPACE
{
list, * = val
result = list.dup << new_symbol_list_entry(val)
}
qwords: tQWORDS_BEG tSPACE tSTRING_END
{
(_, line), _, _ = val
result = s(:array).line line
}
| tQWORDS_BEG qword_list tSTRING_END
{
(_, line), list, _ = val
result = list.line line
}
qsymbols: tQSYMBOLS_BEG tSPACE tSTRING_END
{
(_, line), _, _ = val
result = s(:array).line line
}
| tQSYMBOLS_BEG qsym_list tSTRING_END
{
(_, line), list, _ = val
result = list.line line
}
qword_list: none
{
result = new_qword_list
}
| qword_list tSTRING_CONTENT tSPACE
{
result = val[0].dup << new_qword_list_entry(val)
}
qsym_list: none
{
result = new_qsym_list
}
| qsym_list tSTRING_CONTENT tSPACE
{
result = val[0].dup << new_qsym_list_entry(val)
}
string_contents: none
{
line = prev_value_to_lineno _values.last
result = s(:str, +"").line line
}
| string_contents string_content
{
v1, v2 = val
result = literal_concat v1, v2
}
xstring_contents: none
{
result = nil
}
| xstring_contents string_content
{
v1, v2 = val
result = literal_concat v1, v2
}
regexp_contents: none
{
result = nil
}
| regexp_contents string_content
{
v1, v2 = val
result = literal_concat v1, v2
}
string_content: tSTRING_CONTENT
{
result = new_string val
}
| tSTRING_DVAR
{
result = lexer.lex_strterm
lexer.lex_strterm = nil
lexer.lex_state = EXPR_BEG
}
string_dvar
{
_, strterm, str = val
lexer.lex_strterm = strterm
result = s(:evstr, str).line str.line
}
| tSTRING_DBEG
{
result = [lexer.lex_strterm,
lexer.brace_nest,
lexer.string_nest, # TODO: remove
lexer.lex_state,
lexer.lineno,
]
lexer.cmdarg.push false
lexer.cond.push false
lexer.lex_strterm = nil
lexer.brace_nest = 0
lexer.string_nest = 0
lexer.lex_state = EXPR_BEG
}
compstmt
tSTRING_DEND
{
_, memo, stmt, _ = val
lex_strterm, brace_nest, string_nest, oldlex_state, line = memo
# TODO: heredoc_indent
lexer.lex_strterm = lex_strterm
lexer.brace_nest = brace_nest
lexer.string_nest = string_nest
lexer.cond.pop
lexer.cmdarg.pop
lexer.lex_state = oldlex_state
case stmt
when Sexp then
case stmt.sexp_type
when :str, :dstr, :evstr then
result = stmt
else
result = s(:evstr, stmt).line line
end
when nil then
result = s(:evstr).line line
else
debug 38
raise "unknown string body: #{stmt.inspect}"
end
}
string_dvar: tGVAR
{
result = wrap :gvar, val[0]
}
| tIVAR
{
result = wrap :ivar, val[0]
}
| tCVAR
{
result = wrap :cvar, val[0]
}
| backref
symbol: ssym
| dsym
ssym: tSYMBEG sym
{
lexer.lex_state = EXPR_END
result = wrap :lit, val[1]
}
| tSYMBOL
{
lexer.lex_state = EXPR_END
result = wrap :lit, val[0]
}
sym: fname | tIVAR | tGVAR | tCVAR
dsym: tSYMBEG string_contents tSTRING_END
{
_, result, _ = val
lexer.lex_state = EXPR_END
result ||= s(:str, "").line lexer.lineno
case result.sexp_type
when :dstr then
result.sexp_type = :dsym
when :str then
result = s(:lit, result.last.to_sym).line result.line
when :evstr then
result = s(:dsym, "", result).line result.line
else
debug 39
end
}
numeric: simple_numeric
| tUMINUS_NUM simple_numeric =tLOWEST
{
_, (num, line) = val
result = [-num, line]
}
simple_numeric: tINTEGER
| tFLOAT
| tRATIONAL
| tIMAGINARY
user_variable: tIDENTIFIER
| tIVAR
| tGVAR
| tCONSTANT
| tCVAR
keyword_variable: kNIL { result = s(:nil).line lexer.lineno }
| kSELF { result = s(:self).line lexer.lineno }
| kTRUE { result = s(:true).line lexer.lineno }
| kFALSE { result = s(:false).line lexer.lineno }
| k__FILE__ { result = s(:str, self.file).line lexer.lineno }
| k__LINE__ { result = s(:lit, lexer.lineno).line lexer.lineno }
| k__ENCODING__
{
l = lexer.lineno
result =
if defined? Encoding then
s(:colon2, s(:const, :Encoding).line(l), :UTF_8).line l
else
s(:str, "Unsupported!").line l
end
}
var_ref: user_variable
{
raise "NO: #{val.inspect}" if Sexp === val.first
(var, line), = val
result = Sexp === var ? var : self.gettable(var)
result.line line
}
| keyword_variable
{
var = val[0]
result = Sexp === var ? var : self.gettable(var)
}
var_lhs: user_variable
{
result = self.assignable val[0]
}
| keyword_variable
{
result = self.assignable val[0]
debug 40
}
backref: tNTH_REF
{
(ref, line), = val
result = s(:nth_ref, ref).line line
}
| tBACK_REF
{
(ref, line), = val
result = s(:back_ref, ref).line line
}
superclass: tLT
{
lexer.lex_state = EXPR_BEG
lexer.command_start = true
}
expr_value term
{
result = val[2]
}
| none
{
result = nil
}
f_arglist: tLPAREN2 f_args rparen
{
result = end_args val
}
| {
result = self.in_kwarg
self.in_kwarg = true
self.lexer.lex_state |= EXPR_LABEL
}
f_args term
{
result = end_args val
}
args_tail: f_kwarg tCOMMA f_kwrest opt_f_block_arg
{
result = args val
}
| f_kwarg opt_f_block_arg
{
result = args val
}
| f_kwrest opt_f_block_arg
{
result = args val
}
| f_block_arg
opt_args_tail: tCOMMA args_tail
{
result = val[1]
}
|
{
result = nil
}
f_args: f_arg tCOMMA f_optarg tCOMMA f_rest_arg opt_args_tail
{
result = args val
}
| f_arg tCOMMA f_optarg tCOMMA f_rest_arg tCOMMA f_arg opt_args_tail
{
result = args val
}
| f_arg tCOMMA f_optarg opt_args_tail
{
result = args val
}
| f_arg tCOMMA f_optarg tCOMMA f_arg opt_args_tail
{
result = args val
}
| f_arg tCOMMA f_rest_arg opt_args_tail
{
result = args val
}
| f_arg tCOMMA f_rest_arg tCOMMA f_arg opt_args_tail
{
result = args val
}
| f_arg opt_args_tail
{
result = args val
}
| f_optarg tCOMMA f_rest_arg opt_args_tail
{
result = args val
}
| f_optarg tCOMMA f_rest_arg tCOMMA f_arg opt_args_tail
{
result = args val
}
| f_optarg opt_args_tail
{
result = args val
}
| f_optarg tCOMMA f_arg opt_args_tail
{
result = args val
}
| f_rest_arg opt_args_tail
{
result = args val
}
| f_rest_arg tCOMMA f_arg opt_args_tail
{
result = args val
}
| args_tail
{
result = args val
}
|
{
result = args val
# result.line lexer.lineno
}
f_bad_arg: tCONSTANT
{
yyerror "formal argument cannot be a constant"
}
| tIVAR
{
yyerror "formal argument cannot be an instance variable"
}
| tGVAR
{
yyerror "formal argument cannot be a global variable"
}
| tCVAR
{
yyerror "formal argument cannot be a class variable"
}
f_norm_arg: f_bad_arg
| tIDENTIFIER
{
(id, line), = val
identifier = id.to_sym
self.env[identifier] = :lvar
result = [identifier, line]
}
f_arg_asgn: f_norm_arg
f_arg_item: f_arg_asgn
| tLPAREN f_margs rparen
{
_, margs, _ = val
result = margs
}
f_arg: f_arg_item
{
result = new_arg val
}
| f_arg tCOMMA f_arg_item
{
list, _, item = val
if list.sexp_type == :args then
result = list
else
result = s(:args, list).line list.line
end
result << (Sexp === item ? item : item.first)
}
f_label: tLABEL
f_kw: f_label arg_value
{
# TODO: new_kw_arg
(label, line), arg = val
identifier = label.to_sym
self.env[identifier] = :lvar
kwarg = s(:kwarg, identifier, arg).line line
result = s(:array, kwarg).line line
}
| f_label
{
(label, line), = val
id = label.to_sym
self.env[id] = :lvar
result = s(:array, s(:kwarg, id).line(line)).line line
}
f_block_kw: f_label primary_value
{
# TODO: new_kw_arg
(label, line), expr = val
id = label.to_sym
self.env[id] = :lvar
result = s(:array, s(:kwarg, id, expr).line(line)).line line
}
| f_label
{
# TODO: new_kw_arg
(label, line), = val
id = label.to_sym
self.env[id] = :lvar
result = s(:array, s(:kwarg, id).line(line)).line line
}
f_block_kwarg: f_block_kw
| f_block_kwarg tCOMMA f_block_kw
{
list, _, item = val
result = list << item.last
}
f_kwarg: f_kw
| f_kwarg tCOMMA f_kw
{
result = args val
}
kwrest_mark: tPOW
| tDSTAR
f_kwrest: kwrest_mark tIDENTIFIER
{
_, (id, line) = val
name = id.to_sym
self.assignable [name, line]
result = [:"**#{name}", line]
}
| kwrest_mark
{
id = :"**"
self.env[id] = :lvar # TODO: needed?!?
result = [id, lexer.lineno] # TODO: tPOW/tDSTAR include lineno
}
f_opt: f_arg_asgn tEQL arg_value
{
lhs, _, rhs = val
result = self.assignable lhs, rhs
# TODO: detect duplicate names
}
f_block_opt: f_arg_asgn tEQL primary_value
{
lhs, _, rhs = val
result = self.assignable lhs, rhs
}
f_block_optarg: f_block_opt
{
optblk, = val
result = s(:block, optblk).line optblk.line
}
| f_block_optarg tCOMMA f_block_opt
{
optarg, _, optblk = val
result = optarg
result << optblk
}
f_optarg: f_opt
{
opt, = val
result = s(:block, opt).line opt.line
}
| f_optarg tCOMMA f_opt
{
result = self.block_append val[0], val[2]
}
restarg_mark: tSTAR2 | tSTAR
f_rest_arg: restarg_mark tIDENTIFIER
{
# TODO: differs from parse.y - needs tests
_, (id, line) = val
name = id.to_sym
self.assignable [name, line]
result = [:"*#{name}", line]
}
| restarg_mark
{
name = :"*"
self.env[name] = :lvar
result = [name, lexer.lineno] # FIX: tSTAR to include lineno
}
blkarg_mark: tAMPER2 | tAMPER
f_block_arg: blkarg_mark tIDENTIFIER
{
_, (id, line) = val
identifier = id.to_sym
self.env[identifier] = :lvar
result = ["&#{identifier}".to_sym, line]
}
opt_f_block_arg: tCOMMA f_block_arg
{
_, arg = val
result = arg
}
|
{
result = nil
}
singleton: var_ref
| tLPAREN2
{
lexer.lex_state = EXPR_BEG
}
expr rparen
{
result = val[2]
yyerror "Can't define single method for literals." if
result.sexp_type == :lit
}
assoc_list: none
{
result = s(:array).line lexer.lineno
}
| assocs trailer
assocs: assoc
| assocs tCOMMA assoc
{
list = val[0].dup
more = val[2].sexp_body
list.push(*more) unless more.empty?
result = list
result.sexp_type = :hash
}
assoc: arg_value tASSOC arg_value
{
v1, _, v2 = val
result = s(:array, v1, v2).line v1.line
}
| tLABEL arg_value
{
label, arg = val
lit = wrap :lit, label
result = s(:array, lit, arg).line lit.line
}
| tSTRING_BEG string_contents tLABEL_END arg_value
{
(_, line), sym, _, value = val
sym.sexp_type = :dsym
result = s(:array, sym, value).line line
}
| tDSTAR arg_value
{
_, arg = val
line = arg.line
result = s(:array, s(:kwsplat, arg).line(line)).line line
}
operation: tIDENTIFIER | tCONSTANT | tFID
operation2: tIDENTIFIER | tCONSTANT | tFID | op
operation3: tIDENTIFIER | tFID | op
dot_or_colon: tDOT | tCOLON2
call_op: tDOT
| tLONELY # TODO: rename tANDDOT?
call_op2: call_op
| tCOLON2
opt_terms: | terms
opt_nl: | tNL
rparen: opt_nl tRPAREN
rbracket: opt_nl tRBRACK
trailer: | tNL | tCOMMA
term: tSEMI { yyerrok }
| tNL
terms: term
| terms tSEMI { yyerrok }
none: { result = nil; }
end
---- inner
require "ruby_lexer"
require "ruby_parser_extras"
include RubyLexer::State::Values
# :stopdoc:
# Local Variables: **
# racc-token-length-max:14 **
# End: **
|