From 84e000211a3740b96a636aaf3fc15e337b79c5b3 Mon Sep 17 00:00:00 2001 From: Antoine Latter Date: Thu, 4 Mar 2010 03:03:44 +0000 Subject: [PATCH] add explicit export list to .Prim This was derived from the haddock docs on Hackage. --- Text/Parsec/Prim.hs | 51 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/Text/Parsec/Prim.hs b/Text/Parsec/Prim.hs index 56865d2..2db4b10 100644 --- a/Text/Parsec/Prim.hs +++ b/Text/Parsec/Prim.hs @@ -15,7 +15,56 @@ {-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies, FlexibleContexts, UndecidableInstances #-} -module Text.Parsec.Prim where +module Text.Parsec.Prim + ( unknownError + , sysUnExpectError + , unexpected + , ParsecT + , runParsecT + , mkPT + , Parsec + , Consumed(..) + , Reply(..) + , State(..) + , parsecMap + , parserReturn + , parserBind + , mergeErrorReply + , parserFail + , parserZero + , parserPlus + , () + , (<|>) + , label + , labels + , Stream(..) + , tokens + , try + , token + , tokenPrim + , tokenPrimEx + , many + , skipMany + , manyAccum + , runPT + , runP + , runParserT + , runParser + , parse + , parseTest + , getPosition + , getInput + , setPosition + , setInput + , getParserState + , setParserState + , updateParserState + , getState + , putState + , modifyState + , setState + , updateState + ) where import qualified Control.Applicative as Applicative ( Applicative(..), Alternative(..) ) import Control.Monad()