summaryrefslogtreecommitdiff
path: root/compiler/GHC/Hs/Extension.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/Hs/Extension.hs')
-rw-r--r--compiler/GHC/Hs/Extension.hs7
1 files changed, 3 insertions, 4 deletions
diff --git a/compiler/GHC/Hs/Extension.hs b/compiler/GHC/Hs/Extension.hs
index a667f92892..61caa528e0 100644
--- a/compiler/GHC/Hs/Extension.hs
+++ b/compiler/GHC/Hs/Extension.hs
@@ -222,10 +222,9 @@ data Pass = Parsed | Renamed | Typechecked
deriving (Data)
-- Type synonyms as a shorthand for tagging
-type GhcPs = GhcPass 'Parsed -- Old 'RdrName' type param
-type GhcRn = GhcPass 'Renamed -- Old 'Name' type param
-type GhcTc = GhcPass 'Typechecked -- Old 'Id' type para,
-type GhcTcId = GhcTc -- Old 'TcId' type param
+type GhcPs = GhcPass 'Parsed -- Output of parser
+type GhcRn = GhcPass 'Renamed -- Output of renamer
+type GhcTc = GhcPass 'Typechecked -- Output of typechecker
-- | Allows us to check what phase we're in at GHC's runtime.
-- For example, this class allows us to write