diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-04-20 16:54:38 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-04-26 13:55:14 -0400 |
commit | af332442123878c1b61d236dce46418efcbe8750 (patch) | |
tree | ec4b332843cdd4fedb4aa60b11b7b8dba82a0764 /ghc/GHCi/UI | |
parent | b0fbfc7582fb81314dc28a056536737fb5eeaa6e (diff) | |
download | haskell-af332442123878c1b61d236dce46418efcbe8750.tar.gz |
Modules: Utils and Data (#13009)
Update Haddock submodule
Metric Increase:
haddock.compiler
Diffstat (limited to 'ghc/GHCi/UI')
-rw-r--r-- | ghc/GHCi/UI/Info.hs | 4 | ||||
-rw-r--r-- | ghc/GHCi/UI/Monad.hs | 10 | ||||
-rw-r--r-- | ghc/GHCi/UI/Tags.hs | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/ghc/GHCi/UI/Info.hs b/ghc/GHCi/UI/Info.hs index f5df1edc38..22eb664856 100644 --- a/ghc/GHCi/UI/Info.hs +++ b/ghc/GHCi/UI/Info.hs @@ -34,12 +34,12 @@ import System.Directory import qualified GHC.Core.Utils import GHC.HsToCore import GHC.Driver.Session (HasDynFlags(..)) -import FastString +import GHC.Data.FastString import GHC import GHC.Driver.Monad import GHC.Types.Name import GHC.Types.Name.Set -import Outputable +import GHC.Utils.Outputable import GHC.Types.SrcLoc import GHC.Tc.Utils.Zonk import GHC.Types.Var diff --git a/ghc/GHCi/UI/Monad.hs b/ghc/GHCi/UI/Monad.hs index 27e31b6cf6..fb6d673fff 100644 --- a/ghc/GHCi/UI/Monad.hs +++ b/ghc/GHCi/UI/Monad.hs @@ -38,11 +38,11 @@ module GHCi.UI.Monad ( import GHCi.UI.Info (ModInfo) import qualified GHC import GHC.Driver.Monad hiding (liftIO) -import Outputable hiding (printForUser, printForUserPartWay) -import qualified Outputable +import GHC.Utils.Outputable hiding (printForUser, printForUserPartWay) +import qualified GHC.Utils.Outputable as Outputable import GHC.Types.Name.Occurrence import GHC.Driver.Session -import FastString +import GHC.Data.FastString import GHC.Driver.Types import GHC.Types.SrcLoc import GHC.Types.Module @@ -52,9 +52,9 @@ import GHC.Runtime.Interpreter import GHCi.RemoteTypes import GHC.Hs (ImportDecl, GhcPs, GhciLStmt, LHsDecl) import GHC.Hs.Utils -import Util +import GHC.Utils.Misc -import Exception hiding (uninterruptibleMask, mask, catch) +import GHC.Utils.Exception hiding (uninterruptibleMask, mask, catch) import Numeric import Data.Array import Data.IORef diff --git a/ghc/GHCi/UI/Tags.hs b/ghc/GHCi/UI/Tags.hs index 155a63bf5a..9f4dfa6e53 100644 --- a/ghc/GHCi/UI/Tags.hs +++ b/ghc/GHCi/UI/Tags.hs @@ -13,17 +13,17 @@ module GHCi.UI.Tags ( createETagsFileCmd ) where -import Exception +import GHC.Utils.Exception import GHC import GHCi.UI.Monad -import Outputable +import GHC.Utils.Outputable -- ToDo: figure out whether we need these, and put something appropriate -- into the GHC API instead import GHC.Types.Name (nameOccName) import GHC.Types.Name.Occurrence (pprOccName) import GHC.Core.ConLike -import MonadUtils +import GHC.Utils.Monad import Control.Monad import Data.Function @@ -31,7 +31,7 @@ import Data.List import Data.Maybe import Data.Ord import GHC.Driver.Phases -import Panic +import GHC.Utils.Panic import Prelude import System.Directory import System.IO |