X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=tests%2Fmeta.g;h=fa2b98f03e6e9cd8c9d47b53d9ac153d3b08a3ec;hp=4cc100b451f154a7aa895bbf37ce6e7a180e0910;hb=cb5151d11037144c14809f6516ce5c1f1976ef7f;hpb=803319e1a90376c44262ae784b43453c763e7b7d diff --git a/tests/meta.g b/tests/meta.g index 4cc100b..fa2b98f 100644 --- a/tests/meta.g +++ b/tests/meta.g @@ -1,60 +1,60 @@ 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 ^"#" - | quoted => "literal" +grammar ::= r +/ ws => "grammar" +r ::= word ^"::=" alternatives /ws + | word ^"!::=" alternatives /ws + +alternatives ::= equiAlt +/ (ws ">" ws) +equiAlt ::= conjuncts +/ (ws "|" ws) + +sequence ::= es + > es ws ^"/" e +es ::= e */ (w**) + +ss ::= es => "seq" | es ^"/" e /ws + +conjuncts ::= rewrite + | rewrite ^"&" e*/ws /ws + | rewrite ^"&~" e*/ws /ws + +rewrite ::= sequence /ws => "rewrite" + | sequence ^"=>" (word|quoted) /ws + +ec ::= [~\-\]\\\~] + | escaped - | (E ^"**" > E ^"*") - | (E ^"++" > E ^"+") +range ::= ec => "range" + | ec ^"-" ec - | "(" word ^")" - > ^"(" Alternatives ")" +e ::= word => "nonTerminal" + | [(][)] => "epsilon" + | ^"{" alternatives "}" /ws + | ^"[" (range*) "]" + | ^"[~" (range*) "]" + | ^"^" quoted /ws + | ^"!" e /ws + + | (e ws ^"**" > e ws ^"*") + | e ^"*/" e /ws + | (e ws ^"++" > e ws ^"+") + | e ^"+/" e /ws + | e ^"?" /ws + + | quoted => "literal" + + | "(" word ^")" /ws + > ^"(" alternatives ")" /ws w !::= " " - | "//" [~\n]* "\n" + | "//" ([~\n]*) "\n" | "\n" | "\r" an ::= [a-zA-Z0-9_] -word ::= an++ => "sify" -quoted ::= "\"" ([~\"\\] | escaped)* "\"" => "sify" +word ::= an++ +quoted ::= "\"" (([~\"\\] | escaped)+) "\"" + | "\"\"" => "" escaped ::= "\\n" => "\n" | "\\r" => "\r" | "\\" [~nr] + +