From: adam Date: Mon, 16 Jan 2006 00:19:57 +0000 (-0500) Subject: checkpoint X-Git-Tag: tag_for_25-Mar~347 X-Git-Url: http://git.megacz.com/?p=sbp.git;a=commitdiff_plain;h=2244708b6521e2ee6ac89e24887119abda93da3a checkpoint darcs-hash:20060116001957-5007d-b8c30758d7d62945da0c11d6caed8d758d9f52a5.gz --- diff --git a/tests/meta.g b/tests/meta.g index 7dff3eb..b1fb352 100644 --- a/tests/meta.g +++ b/tests/meta.g @@ -36,10 +36,14 @@ e ::= word => "nonTerminal" | ^"{" Sequence "}" /ws | ^"[" Range* "]" - | (e ^"++" /ws > e ^"+" /ws) - | (e ^"++/" e /ws > e ^"+/" e /ws) - | (e ^"**" /ws > e ^"*" /ws) - | (e ^"**/" e /ws > e ^"*/" e /ws) + | e ^"++" /ws -> ~[/] + | e ^"+" /ws -> ~[+] + | e ^"++/" e /ws + | e ^"+/" e /ws + | e ^"**" /ws -> ~[/] + | e ^"*" /ws -> ~[*] + | e ^"**/" e /ws + | e ^"*/" e /ws | ^"!" e /ws | e ^"?" /ws