summaryrefslogtreecommitdiff
path: root/compiler/GHC/Types/TyThing
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/Types/TyThing')
-rw-r--r--compiler/GHC/Types/TyThing/Ppr.hs2
-rw-r--r--compiler/GHC/Types/TyThing/Ppr.hs-boot11
2 files changed, 12 insertions, 1 deletions
diff --git a/compiler/GHC/Types/TyThing/Ppr.hs b/compiler/GHC/Types/TyThing/Ppr.hs
index 2982635815..3f0505e492 100644
--- a/compiler/GHC/Types/TyThing/Ppr.hs
+++ b/compiler/GHC/Types/TyThing/Ppr.hs
@@ -28,7 +28,7 @@ import GHC.Core.TyCo.Ppr ( pprUserForAll, pprTypeApp )
import GHC.Iface.Decl ( tyThingToIfaceDecl )
import GHC.Iface.Syntax ( ShowSub(..), ShowHowMuch(..), AltPpr(..)
- , showToHeader, pprIfaceDecl )
+ , showToHeader, pprIfaceDecl )
import GHC.Utils.Outputable
diff --git a/compiler/GHC/Types/TyThing/Ppr.hs-boot b/compiler/GHC/Types/TyThing/Ppr.hs-boot
new file mode 100644
index 0000000000..388a21305c
--- /dev/null
+++ b/compiler/GHC/Types/TyThing/Ppr.hs-boot
@@ -0,0 +1,11 @@
+module GHC.Types.TyThing.Ppr (
+ pprTyThing,
+ pprTyThingInContext
+ ) where
+
+import {-# SOURCE #-} GHC.Iface.Type ( ShowSub )
+import GHC.Types.TyThing ( TyThing )
+import GHC.Utils.Outputable ( SDoc )
+
+pprTyThing :: ShowSub -> TyThing -> SDoc
+pprTyThingInContext :: ShowSub -> TyThing -> SDoc