Changeset 3372 for src/Pugs/Lexer.hs

Show
Ignore:
Timestamp:
05/18/05 02:43:25 (4 years ago)
Author:
theorbtwo
svk:copy_cache_prev:
4945
Message:

More signatures, a few more haddocks.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Lexer.hs

    r3297 r3372  
    283283tryChoice = choice . map try 
    284284 
     285verbatimParens :: GenParser Char st a -> GenParser Char st a 
    285286verbatimParens = between (lexeme $ char '(') (char ')') 
    286287