X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=tests%2Fmeta.g;h=98a62a3ab47f95a36667b0629e9aba23cd2cb6ec;hp=4cc100b451f154a7aa895bbf37ce6e7a180e0910;hb=21740a3a499b34210969ad5f06a1b1dbd80145f3;hpb=803319e1a90376c44262ae784b43453c763e7b7d diff --git a/tests/meta.g b/tests/meta.g index 4cc100b..98a62a3 100644 --- a/tests/meta.g +++ b/tests/meta.g @@ -1,60 +1,59 @@ -s ::= ws grammar ws => "gram" -ws !::= w** -grammar ::= R+/ws => "grammar" -Grammar ::= R+ => "grammar" -R ::= word ^"::=" Alternatives - | word ^"!::=" Alternatives - -ec ::= [~\]\\\-\~] | escaped - -Alternatives ::= EquiAlt +/ ">" -EquiAlt ::= Conjuncts +/ "|" => "alternatives" - -sequence ::= Es - > Es ^"/" E /ws -Es ::= E+ -//es ::= E+/ws - -Conjuncts ::= rewrite - | rewrite ^"&" sequence - | rewrite ^"&~" sequence - -rewrite ::= sequence /ws => "rewrite" - | sequence ^"=>" word /ws - | sequence ^"=>" quoted /ws - | sequence "=>" "()" /ws => "wrap" - -range ::= ec => "range0" | ec ^"-" ec => "range0" -E ::= word => "nonTerminalY" - | [(][)] => "epsilon" - | ^"{" Alternatives "}" - | "[" [\~]? range* "]" => "range" - | E ^"*/" E - | E ^"+/" E - | E ^"?" - | E ^"~/~" - - | E ^"-" E - - | ^"!" E - | "^" quoted => "care" - | ^"`" E - | E ^"#" +s ::= grammar ws => "gram" +ws !::= w** | w** "//" (~[\n]*) "\n" ws +wp !::= w++ +grammar ::= r +/ ws => "grammar" + +r ::= word ^"::=" alternatives /ws + | word ^"!::=" alternatives /ws + +alternatives ::= (conjuncts +/ (ws "|" ws)) +/ (ws ">" ws) + +conjuncts ::= sequence + | sequence ^"&" e*/ws /ws + | sequence ^"&~" e*/ws /ws + +ps ::= e*/ws => "ps" + | (e+/ws ws)? "^" quoted (ws e+/ws)? => "ps2" +psy ::= ps + | ps wp ^"/" ws e +psx ::= psy => "psy" + | e "<-" psy /ws => "psyl" + | psy "->" e /ws => "psyr" + | e "<-" psy "->" e /ws => "psylr" +sequence ::= quoted => "qprod" + > psx + | psx ^"=>" (word|quoted) /ws + +ec ::= ~[\-\]\\] + | escaped + +range ::= ec => "range" + | ec ^"-" ec + +e ::= word => "nonTerminal" | quoted => "literal" + | ^"()" + | ^"{" sequence "}" /ws + | ^"[" range* "]" - | (E ^"**" > E ^"*") - | (E ^"++" > E ^"+") + | (e ^"++" /ws > e ^"+" /ws) + | (e ^"++/" e /ws > e ^"+/" e /ws) + | (e ^"**" /ws > e ^"*" /ws) + | (e ^"**/" e /ws > e ^"*/" e /ws) + | e ^"?" /ws - | "(" word ^")" - > ^"(" Alternatives ")" + | "(" word ^")" /ws + > ^"(" alternatives ")" /ws + | ^"~" e w !::= " " - | "//" [~\n]* "\n" | "\n" | "\r" -an ::= [a-zA-Z0-9_] -word ::= an++ => "sify" -quoted ::= "\"" ([~\"\\] | escaped)* "\"" => "sify" +word ::= [a-zA-Z0-9_]++ +quoted ::= "\"" ((~[\"\\] | escaped)+) "\"" + | "\"\"" => "" escaped ::= "\\n" => "\n" | "\\r" => "\r" - | "\\" [~nr] + | "\\" ~[nr] + +