diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-04-26 09:35:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-26 09:35:15 -0400 |
commit | 7c34f89d801bafba3162bc091dd486cbb9e9fd5b (patch) | |
tree | 1cc57abaaa39c4523822f95ffb9c61156f1f28e4 /haddock-api/src/Haddock/Interface.hs | |
parent | da4e2bd788b6231494d6ac56a8e88bcfa4be51f6 (diff) | |
parent | 2d2587182568cc5aa4b29d401517337c32459c66 (diff) |
Merge pull request #1166 from hsyl20/wip/hsyl20/modules/utils
Module structure
Diffstat (limited to 'haddock-api/src/Haddock/Interface.hs')
-rw-r--r-- | haddock-api/src/Haddock/Interface.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/haddock-api/src/Haddock/Interface.hs b/haddock-api/src/Haddock/Interface.hs index 52bf6f7b..80ce2b55 100644 --- a/haddock-api/src/Haddock/Interface.hs +++ b/haddock-api/src/Haddock/Interface.hs @@ -51,16 +51,16 @@ import Distribution.Verbosity import Text.Printf import GHC.Types.Module (mkModuleSet, emptyModuleSet, unionModuleSet, ModuleSet) -import Digraph +import GHC.Data.Graph.Directed import GHC.Driver.Session hiding (verbosity) import GHC hiding (verbosity) import GHC.Driver.Types -import FastString (unpackFS) +import GHC.Data.FastString (unpackFS) import GHC.Tc.Types (tcg_rdr_env) import GHC.Types.Name (nameIsFromExternalPackage, nameOccName) import GHC.Types.Name.Occurrence (isTcOcc) import GHC.Types.Name.Reader (unQualOK, gre_name, globalRdrEnvElts) -import ErrUtils (withTimingD) +import GHC.Utils.Error (withTimingD) #if defined(mingw32_HOST_OS) import System.IO |