APIs in Ghc monad now go to GHCMod.Ghc.

This commit is contained in:
Kazu Yamamoto
2014-04-21 12:51:56 +09:00
parent 2f55a19d49
commit 1006cd4eec
4 changed files with 21 additions and 11 deletions

View File

@@ -0,0 +1,19 @@
module Language.Haskell.GhcMod.Ghc (
-- * Converting the 'Ghc' monad to the 'IO' monad
withGHC
, withGHCDummyFile
-- * 'Ghc' utilities
, browse
, check
, info
, typeOf
, modules
, lint
) where
import Language.Haskell.GhcMod.Browse
import Language.Haskell.GhcMod.Check
import Language.Haskell.GhcMod.GHCApi
import Language.Haskell.GhcMod.Info
import Language.Haskell.GhcMod.Lint
import Language.Haskell.GhcMod.List