ghc-mod/GhcMod/Exe/Boot.hs

30 lines
675 B
Haskell
Raw Permalink Normal View History

module GhcMod.Exe.Boot where
2014-04-21 02:57:14 +00:00
import Control.Applicative
2015-08-03 01:09:56 +00:00
import Prelude
import GhcMod.Exe.Browse
import GhcMod.Exe.Flag
import GhcMod.Exe.Lang
import GhcMod.Exe.Modules
import GhcMod.Monad
import GhcMod.Types (defaultBrowseOpts)
2014-04-21 02:57:14 +00:00
2014-04-30 01:51:34 +00:00
-- | Printing necessary information for front-end booting.
boot :: IOish m => GhcModT m String
2015-06-01 14:54:50 +00:00
boot = concat <$> sequence ms
where
ms = [modules False, languages, flags, concat <$> mapM (browse defaultBrowseOpts) preBrowsedModules]
2014-04-21 07:30:31 +00:00
2014-04-21 02:57:14 +00:00
preBrowsedModules :: [String]
preBrowsedModules = [
"Prelude"
, "Control.Applicative"
, "Control.Exception"
, "Control.Monad"
, "Data.Char"
, "Data.List"
, "Data.Maybe"
, "System.IO"
]