ghc-7.0.3: The GHC API

ParserCoreUtils

Documentation

data ParseResult a Source

Constructors

OkP a 
FailP String 

type P a = String -> Int -> ParseResult aSource

thenP :: P a -> (a -> P b) -> P bSource

returnP :: a -> P aSource