X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=tests%2Fmeta.g;h=f709a77bddf1564ba243bb56a6f4a23d185cef8e;hp=7b1595d32d3195063ba75319145966c0715317c9;hb=be24ec463cd9a9a4f907c5a6167d8029726753ea;hpb=b39089b9e525f796a9f31e4707aac5ac0d6cfc3b diff --git a/tests/meta.g b/tests/meta.g index 7b1595d..f709a77 100644 --- a/tests/meta.g +++ b/tests/meta.g @@ -1,58 +1,66 @@ -s ::= w* Grammar w* => "gram" -ws !::= w* -grammar ::= R+/ws => "grammar" -Grammar ::= R+ => "grammar" -R ::= word ^"::=" Alternatives - | word ^"!::=" Alternatives +s ::= ws grammar ws => "gram" +ws !::= w** +grammar ::= r +/ ws => "grammar" +r ::= word ^"::=" alternatives /ws + | word ^"!::=" alternatives /ws -ec ::= [~\]\\\-\~] | escaped +alternatives ::= equiAlt +/ (ws ">" ws) +equiAlt ::= conjuncts +/ (ws "|" ws) => "alternatives" -Alternatives ::= EquiAlt +/ ">" -EquiAlt ::= Conjuncts +/ "|" => "alternatives" +sequence ::= es + > es ws ^"/" e +es ::= e */ (w**) -Sequence ::= E+ ^"/" E - > E+ +ss ::= es | es ^"/" e /ws -Conjuncts ::= rewrite - | rewrite ^"&" Sequence - | rewrite ^"&~" Sequence +conjuncts ::= rewrite + | rewrite ^"&" e*/ws /ws + | rewrite ^"&~" e*/ws /ws -rewrite ::= Sequence /ws => "rewrite" - | Sequence ^"=>" word /ws - | Sequence ^"=>" quoted /ws - | Sequence "=>" "()" /ws => "wrap" +rewrite ::= sequence /ws => "rewrite" + | sequence ^"=>" word /ws + | sequence ^"=>" quoted /ws + | sequence "=>" "()" /ws => "wrap" -range ::= ec => "range0" | ec ^"-" ec => "range0" -E ::= word => "nonTerminalY" +ec ::= [~\-\]\\\~] + | escaped + +range ::= ec => "range" + | ec ^"-" ec + +e ::= word => "nonTerminalY" | [(][)] => "epsilon" - | ^"{" Alternatives "}" - | "[" [\~]? range* "]" => "range" - | E ^"*/" E - | E ^"+/" E - | E ^"?" - | E ^"~/~" - - | E ^"-" E - - | ^"!" E - | "^" quoted => "care" - | ^"`" E - | E ^"#" + | ^"{" alternatives "}" /ws + | "[" (range*) "]" => "ranges" + | "[~" (range*) "]" => "rangesx" + | e ^"+/" e /ws + | e ^"*/" e /ws + | e ^"?" /ws + | e ^"~/~" /ws + + | e ^"-" e /ws + + | ^"!" e /ws + | "^" quoted /ws => "care" + | ^"`" e /ws + | e ^"#" /ws | quoted => "literal" - | (E ^"**" > E ^"*") - | (E ^"++" > E ^"+") + | (e ws ^"**" > e ws ^"*") + | (e ws ^"++" > e ws ^"+") - | "(" word ^")" - > ^"(" Alternatives ")" + | "(" word ^")" /ws + > ^"(" alternatives ")" /ws w !::= " " - | "//" [~\n]* "\n" + | "//" ([~\n]*) "\n" | "\n" | "\r" an ::= [a-zA-Z0-9_] word ::= an++ => "sify" -quoted ::= "\"" ([~\"\\] | escaped)* "\"" => "sify" +quoted ::= "\"" (([~\"\\] | escaped)*) "\"" => "sify" escaped ::= "\\n" => "\n" | "\\r" => "\r" | "\\" [~nr] + +