18 lines
393 B
Haskell
18 lines
393 B
Haskell
module Language.Haskell.GhcMod.Ghc (
|
|
-- * Converting the 'Ghc' monad to the 'IO' monad
|
|
withGHC
|
|
, withGHCDummyFile
|
|
-- * 'Ghc' utilities
|
|
, browse
|
|
, check
|
|
, info
|
|
, types
|
|
, modules
|
|
) 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.List
|