release
Slava Pestov 2007-11-24 18:44:04 -05:00
parent 30731a5808
commit 82e98dac8b
1 changed files with 3 additions and 3 deletions

View File

@ -18,13 +18,13 @@ LAZY: 'escaped-char' "\\" token any-char-parser &> ;
LAZY: 'chars' 'escaped-char' any-char-parser <|> <*> ;
LAZY: 'non-space-char'
'escaped-char' [ CHAR: \s = not ] satisfy <|> ;
LAZY: 'quoted-1' 'chars' "\"" "\"" surrounded-by ;
LAZY: 'quoted-2' 'chars' "'" "'" surrounded-by ;
LAZY: 'non-space-char'
'escaped-char' [ CHAR: \s = not ] satisfy <|> ;
LAZY: 'unquoted' 'non-space-char' <+> ;
LAZY: 'argument'