X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=tests%2Fmeta.g;h=884f2aaaf4290b6146cbac95a95f6be8ab5ba68a;hp=8c3a3436ad852b66b66556d6060f3441b836f812;hb=242a8711e98cbd3ed6d05271bf910fde38e9be9a;hpb=4e85e3e3519cf88a4469d4ead6369eaa1ab2c4e2 diff --git a/tests/meta.g b/tests/meta.g index 8c3a343..884f2aa 100644 --- a/tests/meta.g +++ b/tests/meta.g @@ -1,54 +1,59 @@ -s ::= w* Grammar w* => "gram" -Grammar ::= R+ => "grammar" -R ::= word ^"::=" Alternatives - | word ^"!::=" Alternatives - -ec ::= [~\]\\\-\~] | escaped - -Alternatives ::= EquiAlt +/ ">" -EquiAlt ::= Conjuncts +/ "|" => "alternatives" - -Sequence ::= E+ -Conjuncts ::= Rewrite - | Rewrite ^"&" Sequence - | Rewrite ^"&~" Sequence - -Rewrite ::= Sequence => "rewrite" - | Sequence ^"=>" word - | Sequence ^"=>" quoted - | Sequence "=>" "()" => "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 ::= ws 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] + +