summaryrefslogtreecommitdiff
path: root/compiler/ghci
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2020-01-02 19:13:44 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-01-06 18:39:22 -0500
commit99a9f51bf8207c79241fc0b685fadeb222a61292 (patch)
tree63daf74031c47b7a680477a21bba505bf2d32701 /compiler/ghci
parent5ffea0c6c6a2670fd6819540f3ea61ce6620caaa (diff)
downloadhaskell-99a9f51bf8207c79241fc0b685fadeb222a61292.tar.gz
Module hierarchy: Iface (cf #13009)
Diffstat (limited to 'compiler/ghci')
-rw-r--r--compiler/ghci/Debugger.hs4
-rw-r--r--compiler/ghci/Linker.hs2
-rw-r--r--compiler/ghci/RtClosureInspect.hs2
3 files changed, 4 insertions, 4 deletions
diff --git a/compiler/ghci/Debugger.hs b/compiler/ghci/Debugger.hs
index 373369e733..616890a2e6 100644
--- a/compiler/ghci/Debugger.hs
+++ b/compiler/ghci/Debugger.hs
@@ -24,8 +24,8 @@ import GHCi.RemoteTypes
import GhcMonad
import HscTypes
import Id
-import IfaceSyn ( showToHeader )
-import IfaceEnv( newInteractiveBinder )
+import GHC.Iface.Syntax ( showToHeader )
+import GHC.Iface.Env ( newInteractiveBinder )
import Name
import Var hiding ( varName )
import VarSet
diff --git a/compiler/ghci/Linker.hs b/compiler/ghci/Linker.hs
index f8bf25b642..ec717d7399 100644
--- a/compiler/ghci/Linker.hs
+++ b/compiler/ghci/Linker.hs
@@ -24,7 +24,7 @@ import GhcPrelude
import GHCi
import GHCi.RemoteTypes
-import LoadIface
+import GHC.Iface.Load
import ByteCodeLink
import ByteCodeAsm
import ByteCodeTypes
diff --git a/compiler/ghci/RtClosureInspect.hs b/compiler/ghci/RtClosureInspect.hs
index da60eff5b6..96df8b547c 100644
--- a/compiler/ghci/RtClosureInspect.hs
+++ b/compiler/ghci/RtClosureInspect.hs
@@ -47,7 +47,7 @@ import TyCon
import Name
import OccName
import Module
-import IfaceEnv
+import GHC.Iface.Env
import Util
import VarSet
import BasicTypes ( Boxity(..) )