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

27 lines
553 B
Haskell
Raw Normal View History

module Language.Haskell.GhcMod.Ghc (
-- * Converting the 'Ghc' monad to the 'IO' monad
withGHC
2014-04-23 16:37:24 +09:00
, withGHC'
-- * 'Ghc' utilities
2014-04-30 10:49:25 +09:00
, boot
, browse
, check
, info
2014-04-21 14:04:58 +09:00
, types
, modules
2014-04-24 17:02:50 +09:00
-- * 'SymMdlDb'
, Symbol
, SymMdlDb
, getSymMdlDb
, lookupSym
2014-05-14 18:54:56 +02:00
, lookupSym'
) where
2014-04-30 10:49:25 +09:00
import Language.Haskell.GhcMod.Boot
import Language.Haskell.GhcMod.Browse
import Language.Haskell.GhcMod.Check
2014-04-24 17:02:50 +09:00
import Language.Haskell.GhcMod.Find
import Language.Haskell.GhcMod.GHCApi
import Language.Haskell.GhcMod.Info
import Language.Haskell.GhcMod.List