move meta.g into src/, cleanup
[sbp.git] / tests / meta.g
diff --git a/tests/meta.g b/tests/meta.g
deleted file mode 100644 (file)
index f06eb2f..0000000
+++ /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