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

44 lines
903 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
2014-04-26 11:24:47 +00:00
GHCOption
2013-09-16 00:56:08 +00:00
, Package
2014-04-24 03:17:50 +00:00
, PackageBaseName
, PackageVersion
, PackageId
2013-09-16 00:56:08 +00:00
, IncludeDir
2013-09-19 06:58:50 +00:00
, CompilerOptions(..)
2013-09-16 00:56:08 +00:00
-- * Cabal API
, parseCabalFile
2013-09-20 01:30:51 +00:00
, getCompilerOptions
2013-09-16 00:56:08 +00:00
, cabalAllBuildInfo
, cabalDependPackages
, cabalSourceDirs
, cabalAllTargets
2014-03-26 03:09:02 +00:00
-- * IO
, getSystemLibDir
2013-09-16 00:56:08 +00:00
, getDynamicFlags
-- * Initializing 'DynFlags'
, initializeFlagsWithCradle
2014-03-26 03:09:02 +00:00
-- * 'Ghc' Monad
, setTargetFiles
2014-03-19 01:23:32 +00:00
, addTargetFiles
, handleErrMsg
, withLogger
2014-04-28 03:52:09 +00:00
, setNoWaringFlags
, setAllWaringFlags
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