blob: 2b1a787f1f467da1429af7942fc052c65280d0b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
module GHC.Core.TyCo.Ppr where
import {-# SOURCE #-} GHC.Types.Var ( TyVar )
import {-# SOURCE #-} GHC.Core.TyCo.Rep (Type, Kind, Coercion, TyLit)
import GHC.Utils.Outputable ( SDoc )
pprType :: Type -> SDoc
pprKind :: Kind -> SDoc
pprCo :: Coercion -> SDoc
pprTyLit :: TyLit -> SDoc
pprTyVar :: TyVar -> SDoc
|