2013-08-26 16:28:21 +00:00
|
|
|
-- | Low level access to the ghc-mod library.
|
|
|
|
|
|
|
|
module Language.Haskell.GhcMod.Internal (
|
2013-09-16 00:56:08 +00:00
|
|
|
-- * Types
|
2013-08-26 16:28:21 +00:00
|
|
|
LogReader
|
|
|
|
, GHCOption
|
2013-09-16 00:56:08 +00:00
|
|
|
, Package
|
|
|
|
, 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
|
2013-09-20 08:25:28 +00:00
|
|
|
, cabalAllTargets
|
2013-09-16 00:56:08 +00:00
|
|
|
-- * GHC API
|
|
|
|
, canCheckFast
|
|
|
|
-- * Getting 'DynFlags'
|
|
|
|
, getDynamicFlags
|
|
|
|
-- * Initializing 'DynFlags'
|
|
|
|
, initializeFlags
|
2013-08-26 16:28:21 +00:00
|
|
|
, initializeFlagsWithCradle
|
2013-09-16 00:56:08 +00:00
|
|
|
-- * 'GhcMonad'
|
2013-08-21 08:21:49 +00:00
|
|
|
, setTargetFiles
|
2013-08-26 16:28:21 +00:00
|
|
|
, checkSlowAndSet
|
2013-09-16 00:56:08 +00:00
|
|
|
-- * 'Ghc' Choice
|
|
|
|
, (||>)
|
|
|
|
, goNext
|
|
|
|
, runAnyOne
|
|
|
|
-- * 'GhcMonad' Choice
|
|
|
|
, (|||>)
|
2013-08-26 16:28:21 +00:00
|
|
|
) where
|
|
|
|
|
2013-09-16 00:56:08 +00:00
|
|
|
import Language.Haskell.GhcMod.CabalApi
|
2013-08-26 16:28:21 +00:00
|
|
|
import Language.Haskell.GhcMod.ErrMsg
|
|
|
|
import Language.Haskell.GhcMod.GHCApi
|
2013-09-16 00:56:08 +00:00
|
|
|
import Language.Haskell.GhcMod.GHCChoice
|
2013-08-26 16:28:21 +00:00
|
|
|
import Language.Haskell.GhcMod.Types
|