ghc-mod/Language/Haskell/GhcMod/Internal.hs

38 lines
789 B
Haskell
Raw Normal View History

-- | Low level access to the ghc-mod library.
module Language.Haskell.GhcMod.Internal (
2013-09-16 00:56:08 +00:00
-- * Types
LogReader
, GHCOption
2013-09-16 00:56:08 +00:00
, Package
, IncludeDir
-- * Cabal API
, fromCabalFile
, parseCabalFile
, cabalAllBuildInfo
, cabalDependPackages
, cabalSourceDirs
-- * GHC API
, canCheckFast
-- * Getting 'DynFlags'
, getDynamicFlags
-- * Initializing 'DynFlags'
, initializeFlags
, initializeFlagsWithCradle
2013-09-16 00:56:08 +00:00
-- * 'GhcMonad'
, setTargetFiles
, checkSlowAndSet
2013-09-16 00:56:08 +00:00
-- * 'Ghc' Choice
, (||>)
, goNext
, runAnyOne
-- * 'GhcMonad' Choice
, (|||>)
) where
2013-09-16 00:56:08 +00:00
import Language.Haskell.GhcMod.CabalApi
import Language.Haskell.GhcMod.ErrMsg
import Language.Haskell.GhcMod.GHCApi
2013-09-16 00:56:08 +00:00
import Language.Haskell.GhcMod.GHCChoice
import Language.Haskell.GhcMod.Types