checkpoint
authoradam <adam@megacz.com>
Thu, 6 Jul 2006 06:16:12 +0000 (02:16 -0400)
committeradam <adam@megacz.com>
Thu, 6 Jul 2006 06:16:12 +0000 (02:16 -0400)
darcs-hash:20060706061612-5007d-a085422edfd634b29174289956d5d3fc15126501.gz

tests/meta.g

index a51109f..571b26c 100644 (file)
@@ -45,16 +45,15 @@ e             =                (Quoted|Word) ^":" e
               |                  ^"!"   e                /ws
               |                e ^"?"                    /ws
               |                  ^"^"   Quoted
-              |     "(" Word     ^")"                    /ws
               >                  ^"(" RHS  ")"           /ws
               |                  ^"~" e
-              >  "^^"::           "^" e
 
 NonTerminalReference = Word
-Literal = Quoted
-Word       = [a-zA-Z0-9_]++
-Quoted     = "\"" ((~[\"\\] | escaped)+) "\""
-           | ""::   "\"\""
+Literal              = Quoted
+Word                 = [a-zA-Z0-9_]++
+Quoted               = "\"" ((~[\"\\] | escaped)+) "\""
+                     | ""::   "\"\""
+
 escaped    = "\n":: "\\n"
            | "\r":: "\\r"
            |        "\\" ~[nr]