Changeset 15425 for src/Pugs/Parser

Show
Ignore:
Timestamp:
03/03/07 16:37:34 (21 months ago)
Author:
audreyt
Message:

* Massive Haddoc-compatibility fix to make all modules

haddockable.

Location:
src/Pugs/Parser
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Parser/Operator.hs

    r15364 r15425  
    3333        = compare (Buf.length y) (Buf.length x) `mappend` compare b a 
    3434 
    35 -- Not yet transcribed into a full optable parser with dynamic precedence -- 
     35-- Not yet transcribed into a full optable parser with dynamic precedence 
    3636 
    3737tightOperators :: RuleParser (TightFunctions, RuleOperatorTable Exp) 
  • src/Pugs/Parser/Program.hs

    r15368 r15425  
    2323        | otherwise         = prog ++ "\n" 
    2424 
    25 -- Based on: http://hackage.haskell.org/trac/haskell-prime/wiki/SourceEncodingDetection 
     25-- Based on: <http://hackage.haskell.org/trac/haskell-prime/wiki/SourceEncodingDetection> 
    2626data EncodedSource 
    2727    = UTF8 !String 
    2828    | UTF16 !Endian !String 
    2929    | UTF32 !Endian !String 
    30  -- | UserDefined ... 
     30 -- ... | UserDefined ... 
    3131 
    3232data Endian = LittleEndian | BigEndian