writing docs.

This commit is contained in:
Kazu Yamamoto
2013-05-20 14:28:56 +09:00
parent 849c308e5c
commit 089d490607
15 changed files with 150 additions and 47 deletions

View File

@@ -3,31 +3,35 @@ module Language.Haskell.GhcMod (
Cradle(..)
, findCradle
-- * GHC version
, GHCVersion
, getGHCVersion
-- * Options
, Options(..)
, OutputStyle(..)
, defaultOptions
-- * Types
, ModuleString
, Expression
-- * 'IO' utilities
, browseModule
, checkSyntax
, debugInfo
, lintSyntax
, infoExpr
, typeExpr
, listModules
, listLanguages
, listFlags
, lintSyntax
, debugInfo
-- * Converting the 'Ghc' monad to the 'IO' monad
, withGHC
, withGHCDummyFile
-- * 'Ghc' utilities
, browse
, check
, debug
, info
, typeOf
, list
, listMods
, debug
) where
import Language.Haskell.GhcMod.Browse