X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=tests%2Fmeta.g;h=638fa71a19a21366e750b497ea9c13703e460d62;hp=28e9c6e7efe91aeacfa6cc016c43265e0e7bd8bf;hb=1d5f76f8144b739719737bfe75f321caf67cfa19;hpb=afcdc8ab8e5f02d99da3fd79e9c1b0be3f0f7aaa diff --git a/tests/meta.g b/tests/meta.g index 28e9c6e..638fa71 100644 --- a/tests/meta.g +++ b/tests/meta.g @@ -1,38 +1,38 @@ -s = !ws Grammar !ws +//funkanomitron +s = ws Grammar ws -Grammar = NonTerminal +/ ws +Grammar:: = Declaration +/ ws -NonTerminal = Word "=" RHS /ws +Declaration = NonTerminal + | ^"#import" FileName /ws + | ^"#import" FileName "as" Word /ws -// use 'a'-'z' or 'a-z' instead of [a-z]? -// EOF token? -// #include (with renaming?) -// ANTLR uses ! and ^ suffixes - -RHS = (Sequence +/ (!ws "|" !ws)) +/ (!ws ">" !ws) +FileName:: = (~[\r\n ] | escaped)+ -> [\r\n ] -Elements = 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) -PreSequence = ps:: Elements - | (Quoted|Word) ^"::" PreSequence /ws - > PreSequence ^"/" e /ws - | PreSequence ^"->" e /ws +Elements:: = e*/ws -Sequence = psx:: PreSequence - | Sequence ^"&" Elements /ws - | Sequence ^"&~" Elements /ws +PreSequence = Elements + | (Quoted|Word) ^"::" PreSequence /ws + > PreSequence ^"/" e /ws + | PreSequence ^"->" e /ws -ec = ~[\-\]\\] - | escaped - -Range = ec - | ec ^"-" ec - -NonTerminalReference = Word +Sequence = PreSequence + | Sequence ^"&" Elements /ws + | ^"~~" Elements /ws + | Sequence ^"&~" Elements /ws -e = (Quoted|Word) ^":" e - > NonTerminalReference - | literal:: Quoted +e = e ^"!" + > (Quoted|Word) ^":" e + > NonTerminalReference:: Word + | Literal:: Quoted | ^"()" | ^"{" PreSequence "}" /ws | ^"[" Range* "]" @@ -44,22 +44,28 @@ e = (Quoted|Word) ^":" e | e ^"*" /ws -> ~[*] | e ^"**/" e /ws | e ^"*/" e /ws - | ^"!" e /ws | e ^"?" /ws | ^"^" Quoted - | "(" Word ^")" /ws + | ^"`" e + | ^"..." + | "(" Word ^")" > ^"(" RHS ")" /ws - | ^"~" e - > "^^":: "^" 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