X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=tests%2Fmeta.g;h=ac726191e1e925f285d80f41630fdbe512d3ba2d;hp=cc33104b4536e4385dc2f0cc984f988186b1c64e;hb=ea7e036150d05484ee7867e73d80b5789972edbc;hpb=475743c156fc5b02e79cd787b3176f5fa1877f83 diff --git a/tests/meta.g b/tests/meta.g index cc33104..ac72619 100644 --- a/tests/meta.g +++ b/tests/meta.g @@ -1,31 +1,39 @@ -s = ws gram:Grammar ws -Grammar = grammar:: NonTerminal +/ ws -NonTerminal = word !wp ^"=" !wp RHS - -RHS = (Sequence +/ (!ws "|" !ws)) +/ (!ws ">" !ws) + //funkanomitron +s = ws Grammar ws -Elements = e*/ws +Grammar:: = Declaration +/ ws -PreSequence = ps:: Elements - | PreSequence !wp ^"/" !ws e - | PreSequence ^"->" e /ws - | (Quoted|word) ^"::" PreSequence /ws +Declaration = NonTerminal + | ^"#import" FileName /ws + | ^"#import" FileName "as" Word /ws -Sequence = psx:: PreSequence - | Sequence !ws ^"&" !ws Elements - | Sequence !ws ^"&~" !ws Elements +FileName:: = (~[\r\n ] | escaped)+ -> [\r\n ] -ec = ~[\-\]\\] - | escaped +NonTerminal = NonTerminal:: Word ws "=" ws RHS + | DropNT:: Word "!" ws "=" ws RHS + | Colons:: Word "::" ws "=" ws RHS + | Word "*" ws ^"=" ws RHS + | Word "*/" Word ws ^"=" ws RHS + +RHS:: = ("|":: Sequence +/ (ws "|" ws)) +/ (ws ">" ws) + +Elements:: = e*/ws + +PreSequence = Elements + | (Quoted|Word) ^"::" PreSequence /ws + > PreSequence ^"/" e /ws + | PreSequence ^"->" e /ws -Range = range:: ec - | ec ^"-" ec +Sequence = PreSequence + | Sequence ^"&" Elements /ws + | Sequence ^"&~" Elements /ws -e = (Quoted|word) ^":" e - > nonTerminal:: word - | literal:: Quoted +e = e ^"!" + > (Quoted|Word) ^":" e + > NonTerminalReference:: Word + | Literal:: Quoted | ^"()" - | ^"{" Sequence "}" /ws + | ^"{" PreSequence "}" /ws | ^"[" Range* "]" | e ^"++" /ws -> ~[/] | e ^"+" /ws -> ~[+] @@ -35,23 +43,26 @@ e = (Quoted|word) ^":" e | e ^"*" /ws -> ~[*] | e ^"**/" e /ws | e ^"*/" e /ws - | ^"!" e /ws | e ^"?" /ws | ^"^" Quoted - | "(" word ^")" /ws + | "(" Word ^")" > ^"(" RHS ")" /ws | ^"~" e - > "^^":: "^" e + | ^"\\{" + | ^"\\}" -word = [a-zA-Z0-9_]++ -Quoted = "\"" ((~[\"\\] | escaped)+) "\"" - | "":: "\"\"" -escaped = "\n":: "\\n" - | "\r":: "\\r" - | "\\" ~[nr] +Word:: = [.a-zA-Z0-9_]++ +Quoted:: = "\"" (~[\"\\] | escaped)+ "\"" + | "\"\"" +Range:: = ec + | ec "-" ec + +ec = ~[\-\]\\] + | escaped +escaped = "\n":: "\\n" + | "\r":: "\\r" + | "\\" ~[nr] -w = " " | "\n" | "\r" -ws = "()":: w** - | "()":: w** "//" ~[\n]* "\n" ws -wp = w++ +ws! = [ \r\n]** + | [ \r\n]** "//" ~[\n]* "\n" ws