Module: Rattler::Compiler::Metagrammar
Instance Method Summary collapse
- #match_action_code ⇒ Object
- #match_action_code! ⇒ Object
- #match_atom ⇒ Object
- #match_atom! ⇒ Object
- #match_attributed ⇒ Object
- #match_attributed! ⇒ Object
- #match_attributed_terms ⇒ Object
- #match_attributed_terms! ⇒ Object
- #match_block_close ⇒ Object
- #match_block_close! ⇒ Object
- #match_directive ⇒ Object
- #match_directive! ⇒ Object
- #match_expression ⇒ Object
- #match_expression! ⇒ Object
- #match_fail_expr ⇒ Object
- #match_fail_expr! ⇒ Object
- #match_fragments ⇒ Object
- #match_fragments! ⇒ Object
- #match_grammar ⇒ Object
- #match_grammar! ⇒ Object
- #match_heading ⇒ Object
- #match_heading! ⇒ Object
- #match_includes ⇒ Object
- #match_includes! ⇒ Object
- #match_inline_directive ⇒ Object
- #match_inline_directive! ⇒ Object
- #match_labelable ⇒ Object
- #match_labelable! ⇒ Object
- #match_labeled ⇒ Object
- #match_labeled! ⇒ Object
- #match_list ⇒ Object
- #match_list! ⇒ Object
- #match_list_term ⇒ Object
- #match_list_term! ⇒ Object
- #match_module_decl ⇒ Object
- #match_module_decl! ⇒ Object
- #match_node_action ⇒ Object
- #match_node_action! ⇒ Object
- #match_old_node_action ⇒ Object
- #match_old_node_action! ⇒ Object
- #match_prefixable ⇒ Object
- #match_prefixable! ⇒ Object
- #match_prefixed ⇒ Object
- #match_prefixed! ⇒ Object
- #match_primary ⇒ Object
- #match_primary! ⇒ Object
- #match_repeat_count ⇒ Object
- #match_repeat_count! ⇒ Object
- #match_require_statement ⇒ Object
- #match_require_statement! ⇒ Object
- #match_requires ⇒ Object
- #match_requires! ⇒ Object
- #match_rule ⇒ Object
- #match_rule! ⇒ Object
- #match_rules ⇒ Object
- #match_rules! ⇒ Object
- #match_semantic_action ⇒ Object
- #match_semantic_action! ⇒ Object
- #match_semantic_term ⇒ Object
- #match_semantic_term! ⇒ Object
- #match_start_directive ⇒ Object
- #match_start_directive! ⇒ Object
- #match_suffixable ⇒ Object
- #match_suffixable! ⇒ Object
- #match_suffixed ⇒ Object
- #match_suffixed! ⇒ Object
- #match_term ⇒ Object
- #match_term! ⇒ Object
- #match_terms ⇒ Object
- #match_terms! ⇒ Object
- #match_unattributed ⇒ Object
- #match_unattributed! ⇒ Object
- #match_wc_decl ⇒ Object
- #match_wc_decl! ⇒ Object
- #match_wc_directive ⇒ Object
- #match_wc_directive! ⇒ Object
- #match_ws_decl ⇒ Object
- #match_ws_decl! ⇒ Object
- #match_ws_directive ⇒ Object
- #match_ws_directive! ⇒ Object
- #start_rule ⇒ Object
Instance Method Details
#match_action_code ⇒ Object
593 594 595 |
# File 'lib/rattler/compiler/metagrammar.rb', line 593 def match_action_code #:nodoc: apply :match_action_code! end |
#match_action_code! ⇒ Object
598 599 600 601 602 603 604 |
# File 'lib/rattler/compiler/metagrammar.rb', line 598 def match_action_code! #:nodoc: begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>(?>\{)(?>(?>[^}])*)(?>\})|[^{}])*)/) && @scanner[1] end || fail { :action_code } end |
#match_atom ⇒ Object
1311 1312 1313 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1311 def match_atom #:nodoc: apply :match_atom! end |
#match_atom! ⇒ Object
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 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1316 def match_atom! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>EOF)(?![[:alnum:]_]))/) && Eof.parsed([]) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>E)(?![[:alnum:]_]))/) && ESymbol.parsed([]) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>super)(?![[:alnum:]_]))/) && (Super[:pending]) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = begin begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>ALNUM)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>ALPHA)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>ASCII)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>BLANK)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>CNTRL)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>DIGIT)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>GRAPH)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>LOWER)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>PRINT)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>PUNCT)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>SPACE)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>UPPER)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>XDIGIT)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>WORD)(?![[:alnum:]_]))/) && @scanner[1] end end) && (posix_class r0_0) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = begin p1 = @scanner.pos begin @scanner.skip(/(?!(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>EOF)(?![[:alnum:]_])))/) && begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>[[:alpha:]])(?>(?>[[:alnum:]_])*))/) && @scanner[1] end end || begin @scanner.pos = p1 false end end) && @scanner.skip(/(?!(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?><\-))/) && Apply.parsed([r0_0]) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = begin begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>")(?>(?>(?>\\)(?>.)|[^"])*)(?>"))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>')(?>(?>(?>\\)(?>.)|[^'])*)(?>'))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\()(?>(?>(?>\\)(?>.)|[^)])*)(?>\)))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\{)(?>(?>(?>\\)(?>.)|[^}])*)(?>\}))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\[)(?>(?>(?>\\)(?>.)|[^\]])*)(?>\]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%<)(?>(?>(?>\\)(?>.)|[^>])*)(?>>))/) && @scanner[1] end || begin p1 = @scanner.pos begin @scanner.skip(/(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*/) && begin p2 = @scanner.pos begin @scanner.skip(/%/) && (r2_0 = @scanner.scan(/[[:punct:]]/)) && begin while begin @scanner.skip(/(?>\\)(?>.)/) || begin p3 = @scanner.pos begin @scanner.skip(/(?!#{r2_0})/) && @scanner.skip(/./) && true end || begin @scanner.pos = p3 false end end end; end true end && @scanner.skip(/#{r2_0}/) && @scanner.string[p2...(@scanner.pos)] end || begin @scanner.pos = p2 false end end end || begin @scanner.pos = p1 false end end end) && (literal r0_0) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>`)(?>(?>(?>\\)(?>.)|[^`])*)(?>`))/) && @scanner[1] end) && (word_literal r0_0) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>\[)(?>(?>(?!\])(?>(?>\[:)(?>(?>alnum)(?![[:alnum:]_])|(?>alpha)(?![[:alnum:]_])|(?>ascii)(?![[:alnum:]_])|(?>blank)(?![[:alnum:]_])|(?>cntrl)(?![[:alnum:]_])|(?>digit)(?![[:alnum:]_])|(?>graph)(?![[:alnum:]_])|(?>lower)(?![[:alnum:]_])|(?>print)(?![[:alnum:]_])|(?>punct)(?![[:alnum:]_])|(?>space)(?![[:alnum:]_])|(?>upper)(?![[:alnum:]_])|(?>xdigit)(?![[:alnum:]_]))(?>:\])|(?>(?>\\)(?>[0-3])(?>[0-7])(?>[0-7])|(?>\\x)(?>[[:xdigit:]])(?>[[:xdigit:]])|(?>\\)(?>.)|[^\\\]])(?>(?>(?>\-)(?>(?>\\)(?>[0-3])(?>[0-7])(?>[0-7])|(?>\\x)(?>[[:xdigit:]])(?>[[:xdigit:]])|(?>\\)(?>.)|[^\\\]]))?)))+)(?>\]))/) && @scanner[1] end) && (char_class r0_0) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>\$)(?>[[:lower:]])(?>(?>[[:alnum:]_])*))/) && @scanner[1] end) && BackReference.parsed([r0_0]) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\.)/) && (Match[/./]) end || begin @scanner.pos = p0 false end end || fail { :atom } end |
#match_attributed ⇒ Object
532 533 534 |
# File 'lib/rattler/compiler/metagrammar.rb', line 532 def match_attributed #:nodoc: apply :match_attributed! end |
#match_attributed! ⇒ Object
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 |
# File 'lib/rattler/compiler/metagrammar.rb', line 537 def match_attributed! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = ((r = match(:attributed)) ? [r] : [])) && (r0_1 = begin match(:semantic_action) || match(:node_action) end) && AttributedSequence.parsed(select_captures([r0_0, r0_1])) end || begin @scanner.pos = p0 false end end || match(:attributed_terms) || fail! { :attributed } end |
#match_attributed_terms ⇒ Object
715 716 717 |
# File 'lib/rattler/compiler/metagrammar.rb', line 715 def match_attributed_terms #:nodoc: apply :match_attributed_terms! end |
#match_attributed_terms! ⇒ Object
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 |
# File 'lib/rattler/compiler/metagrammar.rb', line 720 def match_attributed_terms! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = match(:attributed)) && (r0_1 = match(:term)) && Sequence.parsed(select_captures([r0_0, r0_1])) end || begin @scanner.pos = p0 false end end || match(:terms) || fail! { :attributed_terms } end |
#match_block_close ⇒ Object
432 433 434 |
# File 'lib/rattler/compiler/metagrammar.rb', line 432 def match_block_close #:nodoc: apply :match_block_close! end |
#match_block_close! ⇒ Object
437 438 439 440 441 442 443 444 445 446 447 448 449 |
# File 'lib/rattler/compiler/metagrammar.rb', line 437 def match_block_close! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\})/) && (end_block) end || begin @scanner.pos = p0 false end end || fail { :block_close } end |
#match_directive ⇒ Object
254 255 256 |
# File 'lib/rattler/compiler/metagrammar.rb', line 254 def match_directive #:nodoc: apply :match_directive! end |
#match_directive! ⇒ Object
259 260 261 262 263 264 265 |
# File 'lib/rattler/compiler/metagrammar.rb', line 259 def match_directive! #:nodoc: match(:ws_directive) || match(:wc_directive) || match(:inline_directive) || match(:fragments) || fail! { :directive } end |
#match_expression ⇒ Object
509 510 511 |
# File 'lib/rattler/compiler/metagrammar.rb', line 509 def match_expression #:nodoc: apply :match_expression! end |
#match_expression! ⇒ Object
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 |
# File 'lib/rattler/compiler/metagrammar.rb', line 514 def match_expression! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = match(:expression)) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\/)/) && (r0_1 = match(:attributed)) && Choice.parsed(select_captures([r0_0, r0_1])) end || begin @scanner.pos = p0 false end end || match(:attributed) || fail! { :expression } end |
#match_fail_expr ⇒ Object
772 773 774 |
# File 'lib/rattler/compiler/metagrammar.rb', line 772 def match_fail_expr #:nodoc: apply :match_fail_expr! end |
#match_fail_expr! ⇒ Object
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 |
# File 'lib/rattler/compiler/metagrammar.rb', line 777 def match_fail_expr! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = begin begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>fail)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>fail_rule)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>fail_parse)(?![[:alnum:]_]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>expected)(?![[:alnum:]_]))/) && @scanner[1] end end) && (r0_1 = begin begin p1 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\()/) && (r1_0 = begin begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>")(?>(?>(?>\\)(?>.)|[^"])*)(?>"))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>')(?>(?>(?>\\)(?>.)|[^'])*)(?>'))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\()(?>(?>(?>\\)(?>.)|[^)])*)(?>\)))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\{)(?>(?>(?>\\)(?>.)|[^}])*)(?>\}))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\[)(?>(?>(?>\\)(?>.)|[^\]])*)(?>\]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%<)(?>(?>(?>\\)(?>.)|[^>])*)(?>>))/) && @scanner[1] end || begin p2 = @scanner.pos begin @scanner.skip(/(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*/) && begin p3 = @scanner.pos begin @scanner.skip(/%/) && (r3_0 = @scanner.scan(/[[:punct:]]/)) && begin while begin @scanner.skip(/(?>\\)(?>.)/) || begin p4 = @scanner.pos begin @scanner.skip(/(?!#{r3_0})/) && @scanner.skip(/./) && true end || begin @scanner.pos = p4 false end end end; end true end && @scanner.skip(/#{r3_0}/) && @scanner.string[p3...(@scanner.pos)] end || begin @scanner.pos = p3 false end end end || begin @scanner.pos = p2 false end end end) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\))/) && r1_0 end || begin @scanner.pos = p1 false end end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>")(?>(?>(?>\\)(?>.)|[^"])*)(?>"))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>')(?>(?>(?>\\)(?>.)|[^'])*)(?>'))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\()(?>(?>(?>\\)(?>.)|[^)])*)(?>\)))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\{)(?>(?>(?>\\)(?>.)|[^}])*)(?>\}))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\[)(?>(?>(?>\\)(?>.)|[^\]])*)(?>\]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%<)(?>(?>(?>\\)(?>.)|[^>])*)(?>>))/) && @scanner[1] end || begin p1 = @scanner.pos begin @scanner.skip(/(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*/) && begin p2 = @scanner.pos begin @scanner.skip(/%/) && (r2_0 = @scanner.scan(/[[:punct:]]/)) && begin while begin @scanner.skip(/(?>\\)(?>.)/) || begin p3 = @scanner.pos begin @scanner.skip(/(?!#{r2_0})/) && @scanner.skip(/./) && true end || begin @scanner.pos = p3 false end end end; end true end && @scanner.skip(/#{r2_0}/) && @scanner.string[p2...(@scanner.pos)] end || begin @scanner.pos = p2 false end end end || begin @scanner.pos = p1 false end end end) && Fail.parsed([r0_0, r0_1]) end || begin @scanner.pos = p0 false end end || fail { :fail_expr } end |
#match_fragments ⇒ Object
401 402 403 |
# File 'lib/rattler/compiler/metagrammar.rb', line 401 def match_fragments #:nodoc: apply :match_fragments! end |
#match_fragments! ⇒ Object
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 |
# File 'lib/rattler/compiler/metagrammar.rb', line 406 def match_fragments! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>%fragments)(?![[:alnum:]_]))/) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\{)/) && (start_fragments) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>%fragments)(?![[:alnum:]_]))/) && (set_fragments) end || begin @scanner.pos = p0 false end end || fail { :fragments } end |
#match_grammar ⇒ Object
18 19 20 |
# File 'lib/rattler/compiler/metagrammar.rb', line 18 def match_grammar #:nodoc: apply :match_grammar! end |
#match_grammar! ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/rattler/compiler/metagrammar.rb', line 23 def match_grammar! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = match(:heading)) && (r0_1 = match(:rules)) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)\z/) && Grammar.parsed(select_captures([r0_0, r0_1])) end || begin @scanner.pos = p0 false end end || fail { :grammar } end |
#match_heading ⇒ Object
40 41 42 |
# File 'lib/rattler/compiler/metagrammar.rb', line 40 def match_heading #:nodoc: apply :match_heading! end |
#match_heading! ⇒ Object
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/rattler/compiler/metagrammar.rb', line 45 def match_heading! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = match(:requires)) && (r0_1 = ((r = match(:module_decl)) ? [r] : [])) && (r0_2 = match(:includes)) && (r0_3 = ((r = match(:start_directive)) ? [r] : [])) && (heading r0_0, r0_1, r0_2, r0_3) end || begin @scanner.pos = p0 false end end || fail { :heading } end |
#match_includes ⇒ Object
162 163 164 |
# File 'lib/rattler/compiler/metagrammar.rb', line 162 def match_includes #:nodoc: apply :match_includes! end |
#match_includes! ⇒ Object
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/rattler/compiler/metagrammar.rb', line 167 def match_includes! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = begin a0 = [] while r = begin @scanner.skip(/(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>include)(?![[:alnum:]_])))(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>(?>(?>[[:upper:]])(?>(?>[[:alnum:]_])*)(?>::))*)(?>[[:upper:]])(?>(?>[[:alnum:]_])*)))(?>(?>(?>[[:blank:]])*)(?>\z|;|(?>(?>\r)?)(?>\n)|(?>\#)(?>(?>[^\n])*)))/) && @scanner[1] end a0 << r end a0 end) && ({ :includes => r0_0 }) end || begin @scanner.pos = p0 false end end || fail { :includes } end |
#match_inline_directive ⇒ Object
370 371 372 |
# File 'lib/rattler/compiler/metagrammar.rb', line 370 def match_inline_directive #:nodoc: apply :match_inline_directive! end |
#match_inline_directive! ⇒ Object
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
# File 'lib/rattler/compiler/metagrammar.rb', line 375 def match_inline_directive! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>%inline)(?![[:alnum:]_]))/) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\{)/) && (start_inline) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>%inline)(?![[:alnum:]_]))/) && (set_inline) end || begin @scanner.pos = p0 false end end || fail { :inline_directive } end |
#match_labelable ⇒ Object
973 974 975 |
# File 'lib/rattler/compiler/metagrammar.rb', line 973 def match_labelable #:nodoc: apply :match_labelable! end |
#match_labelable! ⇒ Object
978 979 980 981 982 983 |
# File 'lib/rattler/compiler/metagrammar.rb', line 978 def match_labelable! #:nodoc: match(:semantic_term) || match(:list) || match(:list_term) || fail! { :labelable } end |
#match_labeled ⇒ Object
948 949 950 |
# File 'lib/rattler/compiler/metagrammar.rb', line 948 def match_labeled #:nodoc: apply :match_labeled! end |
#match_labeled! ⇒ Object
953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 |
# File 'lib/rattler/compiler/metagrammar.rb', line 953 def match_labeled! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>[[:lower:]])(?>(?>[[:alnum:]_])*))/) && @scanner[1] end) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>:)/) && (r0_1 = match(:labelable)) && Label.parsed(select_captures([r0_0, r0_1])) end || begin @scanner.pos = p0 false end end || fail { :labeled } end |
#match_list ⇒ Object
1039 1040 1041 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1039 def match_list #:nodoc: apply :match_list! end |
#match_list! ⇒ Object
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 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1044 def match_list! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = match(:list_term)) && @scanner.skip(/(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\*))(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>,))/) && (r0_1 = match(:list_term)) && (list0 r0_0, r0_1) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = match(:list_term)) && @scanner.skip(/(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\+))(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>,))/) && (r0_1 = match(:list_term)) && (list1 r0_0, r0_1) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = match(:list_term)) && (r0_1 = match(:repeat_count)) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>,)/) && (r0_2 = match(:list_term)) && ListParser.parsed(select_captures([r0_0, r0_1, r0_2])) end || begin @scanner.pos = p0 false end end || fail { :list } end |
#match_list_term ⇒ Object
1086 1087 1088 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1086 def match_list_term #:nodoc: apply :match_list_term! end |
#match_list_term! ⇒ Object
1091 1092 1093 1094 1095 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1091 def match_list_term! #:nodoc: match(:prefixed) || match(:prefixable) || (fail! { :term }) end |
#match_module_decl ⇒ Object
118 119 120 |
# File 'lib/rattler/compiler/metagrammar.rb', line 118 def match_module_decl #:nodoc: apply :match_module_decl! end |
#match_module_decl! ⇒ Object
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 |
# File 'lib/rattler/compiler/metagrammar.rb', line 123 def match_module_decl! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>parser)(?![[:alnum:]_]))/) && (r0_0 = begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>(?>(?>[[:upper:]])(?>(?>[[:alnum:]_])*)(?>::))*)(?>[[:upper:]])(?>(?>[[:alnum:]_])*))/) && @scanner[1] end) && (r0_1 = ((r = begin @scanner.skip(/(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?><))(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>(?>(?>[[:upper:]])(?>(?>[[:alnum:]_])*)(?>::))*)(?>[[:upper:]])(?>(?>[[:alnum:]_])*)))/) && @scanner[1] end) ? [r] : [])) && @scanner.skip(/(?>(?>[[:blank:]])*)(?>\z|;|(?>(?>\r)?)(?>\n)|(?>\#)(?>(?>[^\n])*))/) && (parser_decl r0_0, r0_1) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>grammar)(?![[:alnum:]_]))/) && (r0_0 = begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>(?>(?>[[:upper:]])(?>(?>[[:alnum:]_])*)(?>::))*)(?>[[:upper:]])(?>(?>[[:alnum:]_])*))/) && @scanner[1] end) && @scanner.skip(/(?>(?>[[:blank:]])*)(?>\z|;|(?>(?>\r)?)(?>\n)|(?>\#)(?>(?>[^\n])*))/) && ({ :grammar_name => r0_0 }) end || begin @scanner.pos = p0 false end end || fail { :module_decl } end |
#match_node_action ⇒ Object
607 608 609 |
# File 'lib/rattler/compiler/metagrammar.rb', line 607 def match_node_action #:nodoc: apply :match_node_action! end |
#match_node_action! ⇒ Object
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 |
# File 'lib/rattler/compiler/metagrammar.rb', line 612 def match_node_action! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?><)/) && (r0_0 = ((r = begin p1 = @scanner.pos begin (r1_0 = begin begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>[[:lower:]])(?>(?>[[:alnum:]_])*))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>(?>(?>[[:upper:]])(?>(?>[[:alnum:]_])*)(?>::))*)(?>[[:upper:]])(?>(?>[[:alnum:]_])*))/) && @scanner[1] end end) && (r1_1 = ((r = begin @scanner.skip(/(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\.))(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>[[:lower:]])(?>(?>[[:alnum:]_])*)))/) && @scanner[1] end) ? [r] : [])) && [r1_0, r1_1] end || begin @scanner.pos = p1 false end end) ? [r] : [])) && (r0_1 = ((r = begin begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>")(?>(?>(?>\\)(?>.)|[^"])*)(?>"))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>')(?>(?>(?>\\)(?>.)|[^'])*)(?>'))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\()(?>(?>(?>\\)(?>.)|[^)])*)(?>\)))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\{)(?>(?>(?>\\)(?>.)|[^}])*)(?>\}))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%\[)(?>(?>(?>\\)(?>.)|[^\]])*)(?>\]))/) && @scanner[1] end || begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>%<)(?>(?>(?>\\)(?>.)|[^>])*)(?>>))/) && @scanner[1] end || begin p1 = @scanner.pos begin @scanner.skip(/(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*/) && begin p2 = @scanner.pos begin @scanner.skip(/%/) && (r2_0 = @scanner.scan(/[[:punct:]]/)) && begin while begin @scanner.skip(/(?>\\)(?>.)/) || begin p3 = @scanner.pos begin @scanner.skip(/(?!#{r2_0})/) && @scanner.skip(/./) && true end || begin @scanner.pos = p3 false end end end; end true end && @scanner.skip(/#{r2_0}/) && @scanner.string[p2...(@scanner.pos)] end || begin @scanner.pos = p2 false end end end || begin @scanner.pos = p1 false end end end) ? [r] : [])) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>>)/) && NodeAction.parsed([r0_0, r0_1]) end || begin @scanner.pos = p0 false end end || fail { :node_action } end |
#match_old_node_action ⇒ Object
557 558 559 |
# File 'lib/rattler/compiler/metagrammar.rb', line 557 def match_old_node_action #:nodoc: apply :match_old_node_action! end |
#match_old_node_action! ⇒ Object
562 563 564 565 566 567 568 |
# File 'lib/rattler/compiler/metagrammar.rb', line 562 def match_old_node_action! #:nodoc: begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>[[:lower:]])(?>(?>[[:alnum:]_])*))|(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>(?>(?>[[:upper:]])(?>(?>[[:alnum:]_])*)(?>::))*)(?>[[:upper:]])(?>(?>[[:alnum:]_])*)))(?>(?>(?>\.)(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>[[:lower:]])(?>(?>[[:alnum:]_])*))))?))/) && @scanner[1] end || fail { :old_node_action } end |
#match_prefixable ⇒ Object
1152 1153 1154 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1152 def match_prefixable #:nodoc: apply :match_prefixable! end |
#match_prefixable! ⇒ Object
1157 1158 1159 1160 1161 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1157 def match_prefixable! #:nodoc: match(:prefixed) || match(:suffixable) || (fail! { :primary }) end |
#match_prefixed ⇒ Object
1098 1099 1100 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1098 def match_prefixed #:nodoc: apply :match_prefixed! end |
#match_prefixed! ⇒ Object
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 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1103 def match_prefixed! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>&)/) && (r0_0 = match(:prefixable)) && Assert.parsed(select_captures([r0_0])) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>!)/) && (r0_0 = match(:prefixable)) && Disallow.parsed(select_captures([r0_0])) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>~)/) && (r0_0 = match(:prefixable)) && Skip.parsed(select_captures([r0_0])) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>@)/) && (r0_0 = match(:prefixable)) && Token.parsed(select_captures([r0_0])) end || begin @scanner.pos = p0 false end end || fail { :prefixed } end |
#match_primary ⇒ Object
1288 1289 1290 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1288 def match_primary #:nodoc: apply :match_primary! end |
#match_primary! ⇒ Object
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1293 def match_primary! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\()/) && (r0_0 = match(:expression)) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\))/) && r0_0 end || begin @scanner.pos = p0 false end end || match(:atom) || fail! { :primary } end |
#match_repeat_count ⇒ Object
1221 1222 1223 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1221 def match_repeat_count #:nodoc: apply :match_repeat_count! end |
#match_repeat_count! ⇒ Object
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 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1226 def match_repeat_count! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>[[:digit:]])+)/) && @scanner[1] end) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\.\.)/) && (r0_1 = begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>[[:digit:]])+)/) && @scanner[1] end) && ([r0_0, r0_1].map {|s| s.to_i }) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>[[:digit:]])+)/) && @scanner[1] end) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\.\.)/) && ([r0_0.to_i, nil]) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>[[:digit:]])+)/) && @scanner[1] end) && ([r0_0.to_i] * 2) end || begin @scanner.pos = p0 false end end || fail { :repeat_count } end |
#match_require_statement ⇒ Object
89 90 91 |
# File 'lib/rattler/compiler/metagrammar.rb', line 89 def match_require_statement #:nodoc: apply :match_require_statement! end |
#match_require_statement! ⇒ Object
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'lib/rattler/compiler/metagrammar.rb', line 94 def match_require_statement! #:nodoc: begin @scanner.skip(/(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>require)(?![[:alnum:]_])))(?>(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>(?!(?>(?>[[:blank:]])*)(?>\z|;|(?>(?>\r)?)(?>\n)|(?>\#)(?>(?>[^\n])*)))(?>.))+))(?>(?>(?>[[:blank:]])*)(?>\z|;|(?>(?>\r)?)(?>\n)|(?>\#)(?>(?>[^\n])*)))/) && @scanner[1] end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>require_relative)(?![[:alnum:]_]))/) && (r0_0 = begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>(?!(?>(?>[[:blank:]])*)(?>\z|;|(?>(?>\r)?)(?>\n)|(?>\#)(?>(?>[^\n])*)))(?>.))+)/) && @scanner[1] end) && @scanner.skip(/(?>(?>[[:blank:]])*)(?>\z|;|(?>(?>\r)?)(?>\n)|(?>\#)(?>(?>[^\n])*))/) && ( r0_0) end || begin @scanner.pos = p0 false end end || fail { :require_statement } end |
#match_requires ⇒ Object
63 64 65 |
# File 'lib/rattler/compiler/metagrammar.rb', line 63 def match_requires #:nodoc: apply :match_requires! end |
#match_requires! ⇒ Object
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/rattler/compiler/metagrammar.rb', line 68 def match_requires! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = begin a0 = [] while r = match(:require_statement) a0 << r end select_captures(a0) end) && ({ :requires => r0_0 }) end || begin @scanner.pos = p0 false end end || fail { :requires } end |
#match_rule ⇒ Object
452 453 454 |
# File 'lib/rattler/compiler/metagrammar.rb', line 452 def match_rule #:nodoc: apply :match_rule! end |
#match_rule! ⇒ Object
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 |
# File 'lib/rattler/compiler/metagrammar.rb', line 457 def match_rule! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = begin p1 = @scanner.pos begin @scanner.skip(/(?!(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>EOF)(?![[:alnum:]_])))/) && begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>[[:alpha:]])(?>(?>[[:alnum:]_])*))/) && @scanner[1] end end || begin @scanner.pos = p1 false end end) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?><\-)/) && (r0_1 = match(:expression)) && (rule r0_0, r0_1) end || begin @scanner.pos = p0 false end end || fail { :rule } end |
#match_rules ⇒ Object
224 225 226 |
# File 'lib/rattler/compiler/metagrammar.rb', line 224 def match_rules #:nodoc: apply :match_rules! end |
#match_rules! ⇒ Object
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
# File 'lib/rattler/compiler/metagrammar.rb', line 229 def match_rules! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = begin a0 = [] while r = begin match(:directive) || match(:rule) || match(:block_close) end a0 << r end select_captures(a0) end) && RuleSet.parsed(select_captures([r0_0])) end || begin @scanner.pos = p0 false end end || fail { :rules } end |
#match_semantic_action ⇒ Object
571 572 573 |
# File 'lib/rattler/compiler/metagrammar.rb', line 571 def match_semantic_action #:nodoc: apply :match_semantic_action! end |
#match_semantic_action! ⇒ Object
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 |
# File 'lib/rattler/compiler/metagrammar.rb', line 576 def match_semantic_action! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\{)/) && (r0_0 = match(:action_code)) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\})/) && SemanticAction.parsed(select_captures([r0_0])) end || begin @scanner.pos = p0 false end end || fail { :semantic_action } end |
#match_semantic_term ⇒ Object
986 987 988 |
# File 'lib/rattler/compiler/metagrammar.rb', line 986 def match_semantic_term #:nodoc: apply :match_semantic_term! end |
#match_semantic_term! ⇒ Object
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 |
# File 'lib/rattler/compiler/metagrammar.rb', line 991 def match_semantic_term! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\^)/) && match(:semantic_action) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>&)/) && (r0_0 = match(:semantic_action)) && (Assert[r0_0]) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>!)/) && (r0_0 = match(:semantic_action)) && (Disallow[r0_0]) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>~)/) && (r0_0 = match(:semantic_action)) && (Skip[r0_0]) end || begin @scanner.pos = p0 false end end || fail { :semantic_term } end |
#match_start_directive ⇒ Object
191 192 193 |
# File 'lib/rattler/compiler/metagrammar.rb', line 191 def match_start_directive #:nodoc: apply :match_start_directive! end |
#match_start_directive! ⇒ Object
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 |
# File 'lib/rattler/compiler/metagrammar.rb', line 196 def match_start_directive! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>%start)(?![[:alnum:]_]))/) && (r0_0 = begin p1 = @scanner.pos begin @scanner.skip(/(?!(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>EOF)(?![[:alnum:]_])))/) && begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)((?>[[:alpha:]])(?>(?>[[:alnum:]_])*))/) && @scanner[1] end end || begin @scanner.pos = p1 false end end) && ({ :start_rule => r0_0 }) end || begin @scanner.pos = p0 false end end || fail { :start_directive } end |
#match_suffixable ⇒ Object
1276 1277 1278 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1276 def match_suffixable #:nodoc: apply :match_suffixable! end |
#match_suffixable! ⇒ Object
1281 1282 1283 1284 1285 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1281 def match_suffixable! #:nodoc: match(:suffixed) || match(:primary) || (fail! { :primary }) end |
#match_suffixed ⇒ Object
1164 1165 1166 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1164 def match_suffixed #:nodoc: apply :match_suffixed! end |
#match_suffixed! ⇒ Object
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 |
# File 'lib/rattler/compiler/metagrammar.rb', line 1169 def match_suffixed! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = match(:suffixable)) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\?)/) && (optional r0_0) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = match(:suffixable)) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\*)/) && @scanner.skip(/(?!(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>,))/) && (zero_or_more r0_0) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = match(:suffixable)) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\+)/) && @scanner.skip(/(?!(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>,))/) && (one_or_more r0_0) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = match(:suffixable)) && (r0_1 = match(:repeat_count)) && @scanner.skip(/(?!(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>,))/) && Repeat.parsed(select_captures([r0_0, r0_1])) end || begin @scanner.pos = p0 false end end || fail { :suffixed } end |
#match_term ⇒ Object
759 760 761 |
# File 'lib/rattler/compiler/metagrammar.rb', line 759 def match_term #:nodoc: apply :match_term! end |
#match_term! ⇒ Object
764 765 766 767 768 769 |
# File 'lib/rattler/compiler/metagrammar.rb', line 764 def match_term! #:nodoc: match(:fail_expr) || match(:labeled) || match(:labelable) || fail! { :term } end |
#match_terms ⇒ Object
737 738 739 |
# File 'lib/rattler/compiler/metagrammar.rb', line 737 def match_terms #:nodoc: apply :match_terms! end |
#match_terms! ⇒ Object
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 |
# File 'lib/rattler/compiler/metagrammar.rb', line 742 def match_terms! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = match(:terms)) && (r0_1 = match(:term)) && Sequence.parsed(select_captures([r0_0, r0_1])) end || begin @scanner.pos = p0 false end end || match(:term) || fail! { :terms } end |
#match_unattributed ⇒ Object
486 487 488 |
# File 'lib/rattler/compiler/metagrammar.rb', line 486 def match_unattributed #:nodoc: apply :match_unattributed! end |
#match_unattributed! ⇒ Object
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 |
# File 'lib/rattler/compiler/metagrammar.rb', line 491 def match_unattributed! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = match(:unattributed)) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\/)/) && (r0_1 = match(:terms)) && Choice.parsed(select_captures([r0_0, r0_1])) end || begin @scanner.pos = p0 false end end || match(:terms) || fail! { :unattributed } end |
#match_wc_decl ⇒ Object
350 351 352 |
# File 'lib/rattler/compiler/metagrammar.rb', line 350 def match_wc_decl #:nodoc: apply :match_wc_decl! end |
#match_wc_decl! ⇒ Object
355 356 357 358 359 360 361 362 363 364 365 366 367 |
# File 'lib/rattler/compiler/metagrammar.rb', line 355 def match_wc_decl! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>%word_character)(?![[:alnum:]_]))/) && match(:unattributed) end || begin @scanner.pos = p0 false end end || fail { :wc_decl } end |
#match_wc_directive ⇒ Object
319 320 321 |
# File 'lib/rattler/compiler/metagrammar.rb', line 319 def match_wc_directive #:nodoc: apply :match_wc_directive! end |
#match_wc_directive! ⇒ Object
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 |
# File 'lib/rattler/compiler/metagrammar.rb', line 324 def match_wc_directive! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = match(:wc_decl)) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\{)/) && (start_wc r0_0) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = match(:wc_decl)) && (set_wc r0_0) end || begin @scanner.pos = p0 false end end || fail { :wc_directive } end |
#match_ws_decl ⇒ Object
299 300 301 |
# File 'lib/rattler/compiler/metagrammar.rb', line 299 def match_ws_decl #:nodoc: apply :match_ws_decl! end |
#match_ws_decl! ⇒ Object
304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'lib/rattler/compiler/metagrammar.rb', line 304 def match_ws_decl! #:nodoc: begin p0 = @scanner.pos begin @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>(?>%whitespace)(?![[:alnum:]_]))/) && match(:unattributed) end || begin @scanner.pos = p0 false end end || fail { :ws_decl } end |
#match_ws_directive ⇒ Object
268 269 270 |
# File 'lib/rattler/compiler/metagrammar.rb', line 268 def match_ws_directive #:nodoc: apply :match_ws_directive! end |
#match_ws_directive! ⇒ Object
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
# File 'lib/rattler/compiler/metagrammar.rb', line 273 def match_ws_directive! #:nodoc: begin p0 = @scanner.pos begin (r0_0 = match(:ws_decl)) && @scanner.skip(/(?>(?>(?>[[:space:]])+|(?>\#)(?>(?>[^\n])*))*)(?>\{)/) && (start_ws r0_0) end || begin @scanner.pos = p0 false end end || begin p0 = @scanner.pos begin (r0_0 = match(:ws_decl)) && (set_ws r0_0) end || begin @scanner.pos = p0 false end end || fail { :ws_directive } end |
#start_rule ⇒ Object
13 14 15 |
# File 'lib/rattler/compiler/metagrammar.rb', line 13 def start_rule #:nodoc: :grammar end |