ghc-mod-5.1.0.2: Happy Haskell Programming

Safe HaskellNone
LanguageHaskell2010

Language.Haskell.GhcMod.Internal

Contents

Description

Low level access to the ghc-mod library.

Synopsis

Types

type GHCOption = String Source

A single GHC command line option.

type Package = (PackageBaseName, PackageVersion, PackageId) Source

A package's name, verson and id.

type PackageBaseName = String Source

A package name.

type PackageVersion = String Source

A package version.

type PackageId = String Source

A package id.

type IncludeDir = FilePath Source

An include directory for modules.

data CompilerOptions Source

Option information for GHC

Constructors

CompilerOptions 

Fields

ghcOptions :: [GHCOption]

Command line options

includeDirs :: [IncludeDir]

Include directories for modules

depPackages :: [Package]

Dependent package names

Cabal API

getCompilerOptions :: (IOish m, MonadError GhcModError m) => [GHCOption] -> Cradle -> PackageDescription -> m CompilerOptions Source

Getting necessary CompilerOptions from three information sources.

cabalAllBuildInfo :: PackageDescription -> [BuildInfo] Source

Extracting all BuildInfo for libraries, executables, and tests.

cabalDependPackages :: [BuildInfo] -> [PackageBaseName] Source

Extracting package names of dependency.

cabalSourceDirs :: [BuildInfo] -> [IncludeDir] Source

Extracting include directories for modules.

cabalAllTargets :: PackageDescription -> IO ([String], [String], [String], [String]) Source

Extracting all Module FilePaths for libraries, executables, tests and benchmarks.

GHC.Paths

ghcLibDir :: FilePath Source

Obtaining the directory for ghc system libraries.

IO

getDynamicFlags :: IO DynFlags Source

Return the DynFlags currently in use in the GHC session.

Targets

setTargetFiles :: IOish m => [FilePath] -> GhcModT m () Source

Set the files as targets and load them.

Logging

withLogger :: IOish m => (DynFlags -> DynFlags) -> GhcModT m () -> GhcModT m (Either String String) Source

Set the session flag (e.g. "-Wall" or "-w:") then executes a body. Logged messages are returned as String. Right is success and Left is failure.

setNoWarningFlags :: DynFlags -> DynFlags Source

Set DynFlags equivalent to "-w:".

setAllWarningFlags :: DynFlags -> DynFlags Source

Set DynFlags equivalent to "-Wall".

Environment, state and logging

type GhcModLog = () Source

Monad utilities

runGhcModT' :: IOish m => GhcModEnv -> GhcModState -> GhcModT m a -> m (Either GhcModError (a, GhcModState), GhcModLog) Source

Run a computation inside GhcModT providing the RWST environment and initial state. This is a low level function, use it only if you know what to do with GhcModEnv and GhcModState.

You should probably look at runGhcModT instead.

hoistGhcModT :: IOish m => (Either GhcModError a, GhcModLog) -> GhcModT m a Source

hoistGhcModT result. Embed a GhcModT computation's result into a GhcModT computation. Note that if the computation that returned result modified the state part of GhcModT this cannot be restored.

Accessing GhcModEnv and GhcModState

GhcMonad Choice

(||>) :: GhcMonad m => m a -> m a -> m a Source

Try the left Ghc action. If IOException occurs, try the right Ghc action.

goNext :: GhcMonad m => m a Source

Go to the next Ghc monad by throwing AltGhcgoNext.

runAnyOne :: GhcMonad m => [m a] -> m a Source

Run any one Ghc monad.