diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-03-18 14:42:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-18 14:42:43 -0400 |
commit | 7618613814d5aca838d70df0c1b20ec99f5611a8 (patch) | |
tree | a2b332704c4ff6157c49d3b211926cd294d8b21c /haddock-api/src/Haddock/Backends/Hyperlinker.hs | |
parent | 3174ad334c2c505394703ce96fcb67ace94a427c (diff) | |
parent | 8787d8a840d27187f4c4f4f9c469dfca6137fec0 (diff) |
Merge pull request #1133 from hsyl20/wip/hsyl20/modules/types
Modules: Types
Diffstat (limited to 'haddock-api/src/Haddock/Backends/Hyperlinker.hs')
-rw-r--r-- | haddock-api/src/Haddock/Backends/Hyperlinker.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/haddock-api/src/Haddock/Backends/Hyperlinker.hs b/haddock-api/src/Haddock/Backends/Hyperlinker.hs index 6d5b5b5d..8e0e4d54 100644 --- a/haddock-api/src/Haddock/Backends/Hyperlinker.hs +++ b/haddock-api/src/Haddock/Backends/Hyperlinker.hs @@ -22,9 +22,9 @@ import GHC.Iface.Ext.Types ( HieFile(..), HieASTs(..) ) import GHC.Iface.Ext.Binary ( readHieFile, hie_file_result) import Data.Map as M import FastString ( mkFastString ) -import Module ( Module, moduleName ) -import NameCache ( initNameCache ) -import UniqSupply ( mkSplitUniqSupply ) +import GHC.Types.Module ( Module, moduleName ) +import GHC.Types.Name.Cache ( initNameCache ) +import GHC.Types.Unique.Supply ( mkSplitUniqSupply ) -- | Generate hyperlinked source for given interfaces. |