Rename GhcModLowLevel to GhcMod.Internal and document exposed items.

This commit is contained in:
Alan Zimmerman
2013-08-26 18:28:21 +02:00
parent a45bfb97b9
commit e487a535eb
6 changed files with 26 additions and 43 deletions

View File

@@ -0,0 +1,16 @@
-- | Low level access to the ghc-mod library.
module Language.Haskell.GhcMod.Internal (
-- * Low level access
LogReader
, GHCOption
, initializeFlagsWithCradle
, setTargetFile
, checkSlowAndSet
, getDynamicFlags
) where
import Language.Haskell.GhcMod.ErrMsg
import Language.Haskell.GhcMod.GHCApi
import Language.Haskell.GhcMod.Types