X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=tests%2Fmeta.g;fp=tests%2Fmeta.g;h=0000000000000000000000000000000000000000;hp=f06eb2f42010e4165a6b498eb7203b98d8645e84;hb=bea819e3a90c7cc18159e43250b3af87602295f8;hpb=60b00d51a5d05ba33ae283577fa5a84899430641 diff --git a/tests/meta.g b/tests/meta.g deleted file mode 100644 index f06eb2f..0000000 --- a/tests/meta.g +++ /dev/null @@ -1,77 +0,0 @@ -//funkanomitron -s = ws Grammar ws - -Grammar:: = Declaration +/ ws - -Declaration = NonTerminal - | ^"#import" FileName /ws - | ^"#import" FileName "as" Word /ws - -FileName:: = (~[\r\n ] | escaped)+ -> [\r\n ] - -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 - -Sequence = PreSequence - | Sequence ^"&" Elements /ws - | ^"~~" Elements /ws - | Sequence ^"&~" Elements /ws - -e = e ^"!" - > (Quoted|Word) ^":" e - > NonTerminalReference:: Word - | Literal:: Quoted - | ^"()" - | ^"{" PreSequence "}" /ws - | ^"[" Range* "]" - | e ^"++" /ws -> ~[/] - | e ^"+" /ws -> ~[+] - | e ^"++/" e /ws - | e ^"+/" e /ws - | e ^"**" /ws -> ~[/] - | e ^"*" /ws -> ~[*] - | e ^"**/" e /ws - | e ^"*/" e /ws - | e ^"?" /ws - | ^"^" Quoted - | ^"`" e - | ^"..." - | "(" Word ^")" - > ^"(" RHS ")" /ws - | "~":: ("~" -> ~"~")! e - | ^"\\{" - | ^"\\}" - | ^">>" - | ^"<<" - -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