summaryrefslogtreecommitdiff
path: root/compiler/GHC/Tc/Gen/Match.hs-boot
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2020-05-31 23:32:00 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-06-25 03:54:40 -0400
commit0d61f866b43d3385be3a8521ba24503c13e8d404 (patch)
treecf97fd3548853a1f4a01ebd796d822d50c3a9375 /compiler/GHC/Tc/Gen/Match.hs-boot
parent4acc2934952f4849c2082015d9bebef446d46545 (diff)
downloadhaskell-0d61f866b43d3385be3a8521ba24503c13e8d404.tar.gz
Expunge GhcTcId
GHC.Hs.Extension had type GhcPs = GhcPass 'Parsed type GhcRn = GhcPass 'Renamed type GhcTc = GhcPass 'Typechecked type GhcTcId = GhcTc The last of these, GhcTcId, is a vestige of the past. This patch expunges it from GHC.
Diffstat (limited to 'compiler/GHC/Tc/Gen/Match.hs-boot')
-rw-r--r--compiler/GHC/Tc/Gen/Match.hs-boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/GHC/Tc/Gen/Match.hs-boot b/compiler/GHC/Tc/Gen/Match.hs-boot
index 6b363511c8..692d04b884 100644
--- a/compiler/GHC/Tc/Gen/Match.hs-boot
+++ b/compiler/GHC/Tc/Gen/Match.hs-boot
@@ -5,13 +5,13 @@ import GHC.Types.Name ( Name )
import GHC.Tc.Utils.TcType( ExpSigmaType, TcRhoType )
import GHC.Tc.Types ( TcM )
import GHC.Types.SrcLoc ( Located )
-import GHC.Hs.Extension ( GhcRn, GhcTcId )
+import GHC.Hs.Extension ( GhcRn, GhcTc )
tcGRHSsPat :: GRHSs GhcRn (LHsExpr GhcRn)
-> TcRhoType
- -> TcM (GRHSs GhcTcId (LHsExpr GhcTcId))
+ -> TcM (GRHSs GhcTc (LHsExpr GhcTc))
tcMatchesFun :: Located Name
-> MatchGroup GhcRn (LHsExpr GhcRn)
-> ExpSigmaType
- -> TcM (HsWrapper, MatchGroup GhcTcId (LHsExpr GhcTcId))
+ -> TcM (HsWrapper, MatchGroup GhcTc (LHsExpr GhcTc))