X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=tests%2Fmeta.g;h=ac726191e1e925f285d80f41630fdbe512d3ba2d;hp=d8353a6af910c65d699e57c8c7c9f76e3e30bbe7;hb=ea7e036150d05484ee7867e73d80b5789972edbc;hpb=f283ebfd51424e761bea2dd5b3042cf765ca9ee6 diff --git a/tests/meta.g b/tests/meta.g index d8353a6..ac72619 100644 --- a/tests/meta.g +++ b/tests/meta.g @@ -1,38 +1,39 @@ + //funkanomitron +s = ws Grammar ws -// use 'a'-'z' or 'a-z' instead of [a-z]? -// EOF token? -// #include (with renaming?) -// ANTLR uses ! and ^ suffixes +Grammar:: = Declaration +/ ws -s = !ws (grammar::Grammar) !ws -Grammar = NonTerminal +/ ws -NonTerminal = Word ^"=" RHS /ws - -RHS = (Sequence +/ (!ws "|" !ws)) +/ (!ws ">" !ws) +Declaration = NonTerminal + | ^"#import" FileName /ws + | ^"#import" FileName "as" Word /ws -Elements = e*/ws +FileName:: = (~[\r\n ] | escaped)+ -> [\r\n ] -PreSequence = ps:: Elements - | (Quoted|Word) ^"::" PreSequence /ws - > PreSequence ^"/" e /ws - | PreSequence ^"->" e /ws +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) -Sequence = psx:: PreSequence - | Sequence ^"&" Elements /ws - | Sequence ^"&~" Elements /ws +Elements:: = e*/ws -ec = ~[\-\]\\] - | escaped +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 | ^"()" - | ^"{" PreSequence "}" /ws + | ^"{" PreSequence "}" /ws | ^"[" Range* "]" | e ^"++" /ws -> ~[/] | e ^"+" /ws -> ~[+] @@ -42,22 +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] - -w = " " | "\n" | "\r" -ws = "()":: w** - | "()":: w** "//" ~[\n]* "\n" ws -wp = w++ + | ^"\\{" + | ^"\\}" + +Word:: = [.a-zA-Z0-9_]++ +Quoted:: = "\"" (~[\"\\] | escaped)+ "\"" + | "\"\"" + +Range:: = ec + | ec "-" ec + +ec = ~[\-\]\\] + | escaped +escaped = "\n":: "\\n" + | "\r":: "\\r" + | "\\" ~[nr] + +ws! = [ \r\n]** + | [ \r\n]** "//" ~[\n]* "\n" ws