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

24 lines
493 B
Haskell
Raw Normal View History

module Language.Haskell.GhcMod.Ghc (
-- * Converting the 'Ghc' monad to the 'IO' monad
withGHC
2014-04-23 07:37:24 +00:00
, withGHC'
-- * 'Ghc' utilities
, browse
, check
, info
2014-04-21 05:04:58 +00:00
, types
, modules
2014-04-24 08:02:50 +00:00
-- * 'SymMdlDb'
, Symbol
, SymMdlDb
, getSymMdlDb
, lookupSym
) where
import Language.Haskell.GhcMod.Browse
import Language.Haskell.GhcMod.Check
2014-04-24 08:02:50 +00:00
import Language.Haskell.GhcMod.Find
import Language.Haskell.GhcMod.GHCApi
import Language.Haskell.GhcMod.Info
import Language.Haskell.GhcMod.List