diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-03-19 10:28:01 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-04-07 18:36:49 -0400 |
commit | 255418da5d264fb2758bc70925adb2094f34adc3 (patch) | |
tree | 39e3d7f84571e750f2a087c1bc2ab87198e9b147 /compiler/GHC/Runtime/Eval.hs | |
parent | 3d2991f8b4c1b686323b2c9452ce845a60b8d94c (diff) | |
download | haskell-255418da5d264fb2758bc70925adb2094f34adc3.tar.gz |
Modules: type-checker (#13009)
Update Haddock submodule
Diffstat (limited to 'compiler/GHC/Runtime/Eval.hs')
-rw-r--r-- | compiler/GHC/Runtime/Eval.hs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/compiler/GHC/Runtime/Eval.hs b/compiler/GHC/Runtime/Eval.hs index 794aa30b55..a67207c411 100644 --- a/compiler/GHC/Runtime/Eval.hs +++ b/compiler/GHC/Runtime/Eval.hs @@ -65,9 +65,9 @@ import GHC.Core.FVs ( orphNamesOfFamInst ) import GHC.Core.TyCon import GHC.Core.Type hiding( typeKind ) import GHC.Types.RepType -import TcType -import Constraint -import TcOrigin +import GHC.Tc.Utils.TcType +import GHC.Tc.Types.Constraint +import GHC.Tc.Types.Origin import GHC.Core.Predicate import GHC.Types.Var import GHC.Types.Id as Id @@ -111,18 +111,18 @@ import Data.Array import Exception import Unsafe.Coerce ( unsafeCoerce ) -import TcRnDriver ( runTcInteractive, tcRnType, loadUnqualIfaces ) -import TcHsSyn ( ZonkFlexi (SkolemiseFlexi) ) +import GHC.Tc.Module ( runTcInteractive, tcRnType, loadUnqualIfaces ) +import GHC.Tc.Utils.Zonk ( ZonkFlexi (SkolemiseFlexi) ) -import TcEnv (tcGetInstEnvs) +import GHC.Tc.Utils.Env (tcGetInstEnvs) -import Inst (instDFunType) -import TcSimplify (solveWanteds) -import TcRnMonad -import TcEvidence +import GHC.Tc.Utils.Instantiate (instDFunType) +import GHC.Tc.Solver (solveWanteds) +import GHC.Tc.Utils.Monad +import GHC.Tc.Types.Evidence import Data.Bifunctor (second) -import TcSMonad (runTcS) +import GHC.Tc.Solver.Monad (runTcS) -- ----------------------------------------------------------------------------- -- running a statement interactively |