diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-03-18 10:44:56 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-03-29 17:28:51 -0400 |
commit | 1941ef4f050c0dfcb68229641fcbbde3a10f1072 (patch) | |
tree | 8e25a61af77696d3022d35cc277b5db5af540f03 /compiler/iface | |
parent | 1c446220250dcada51d4bb33a0cc7d8ce572e8b6 (diff) | |
download | haskell-1941ef4f050c0dfcb68229641fcbbde3a10f1072.tar.gz |
Modules: Types (#13009)
Update Haddock submodule
Metric Increase:
haddock.compiler
Diffstat (limited to 'compiler/iface')
-rw-r--r-- | compiler/iface/BinFingerprint.hs | 2 | ||||
-rw-r--r-- | compiler/iface/BuildTyCl.hs | 20 | ||||
-rw-r--r-- | compiler/iface/FlagChecker.hs | 4 |
3 files changed, 13 insertions, 13 deletions
diff --git a/compiler/iface/BinFingerprint.hs b/compiler/iface/BinFingerprint.hs index 1eef4d67b4..51977968db 100644 --- a/compiler/iface/BinFingerprint.hs +++ b/compiler/iface/BinFingerprint.hs @@ -14,7 +14,7 @@ import GhcPrelude import Fingerprint import Binary -import Name +import GHC.Types.Name import PlainPanic import Util diff --git a/compiler/iface/BuildTyCl.hs b/compiler/iface/BuildTyCl.hs index bae7398b1c..e66c1e6fb6 100644 --- a/compiler/iface/BuildTyCl.hs +++ b/compiler/iface/BuildTyCl.hs @@ -25,22 +25,22 @@ import TysWiredIn( isCTupleTyConName ) import TysPrim ( voidPrimTy ) import GHC.Core.DataCon import GHC.Core.PatSyn -import Var -import VarSet -import BasicTypes -import Name -import NameEnv -import MkId +import GHC.Types.Var +import GHC.Types.Var.Set +import GHC.Types.Basic +import GHC.Types.Name +import GHC.Types.Name.Env +import GHC.Types.Id.Make import GHC.Core.Class import GHC.Core.TyCon import GHC.Core.Type -import Id +import GHC.Types.Id import TcType -import SrcLoc( SrcSpan, noSrcSpan ) +import GHC.Types.SrcLoc( SrcSpan, noSrcSpan ) import GHC.Driver.Session import TcRnMonad -import UniqSupply +import GHC.Types.Unique.Supply import Util import Outputable @@ -102,7 +102,7 @@ buildDataCon :: FamInstEnvs -> TyConRepName -> [HsSrcBang] -> Maybe [HsImplBang] - -- See Note [Bangs on imported data constructors] in MkId + -- See Note [Bangs on imported data constructors] in GHC.Types.Id.Make -> [FieldLabel] -- Field labels -> [TyVar] -- Universals -> [TyCoVar] -- Existentials diff --git a/compiler/iface/FlagChecker.hs b/compiler/iface/FlagChecker.hs index 7cac37cb4f..cab88ee5cc 100644 --- a/compiler/iface/FlagChecker.hs +++ b/compiler/iface/FlagChecker.hs @@ -13,8 +13,8 @@ import GhcPrelude import Binary import GHC.Driver.Session import GHC.Driver.Types -import Module -import Name +import GHC.Types.Module +import GHC.Types.Name import Fingerprint import BinFingerprint -- import Outputable |