update metagrammar
[sbp.git] / tests / meta.g
index e81e67c..ac72619 100644 (file)
@@ -1,31 +1,39 @@
-s             =  gram::    !ws Grammar ws
-Grammar       =  grammar:: NonTerminal +/ ws
-NonTerminal   =            word  !wp ^"=" !wp RHS
-        
-RHS           =  (Conjuncts +/ (!ws "|" !ws)) +/ (!ws ">" !ws)
-
-Conjuncts     =  Sequence
-              |  Sequence ^"&"  Elements  /ws
-              |  Sequence ^"&~" Elements  /ws
-Elements      =  e*/ws
-
-PreSequence   = ps::  Elements
-              |       PreSequence !wp ^"/"  !ws e
-              |       PreSequence     ^"->"     e /ws
-              |       (Quoted|word)   ^"::" PreSequence /ws
-Sequence      = psx:: PreSequence
+ //funkanomitron
+s             = ws Grammar ws
 
-ec            = ~[\-\]\\]
-              | escaped
+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)
 
-Range         = range:: ec
-              |         ec ^"-" ec
+Elements::    = e*/ws
 
-e             =                (Quoted|word) ^":" e
-              > nonTerminal::          word
-              | literal::       Quoted
+PreSequence   = Elements
+              | (Quoted|Word)   ^"::" PreSequence /ws
+              > PreSequence     ^"/"      e       /ws
+              | PreSequence     ^"->"     e       /ws
+
+Sequence      = PreSequence
+              | Sequence ^"&"  Elements /ws
+              | Sequence ^"&~" Elements /ws
+
+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)+ "\""
+              | "\"\""
 
-word       = [a-zA-Z0-9_]++
-Quoted     = "\"" ((~[\"\\] | escaped)+) "\""
-           | ""::   "\"\""
-escaped    = "\n":: "\\n"
-           | "\r":: "\\r"
-           |        "\\" ~[nr]
+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