summaryrefslogtreecommitdiff
path: root/compiler/iface/ToIface.hs-boot
blob: cdb472692ecc89cd953c89031c8f9c6a3678688d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module ToIface where

import {-# SOURCE #-} TyCoRep
import {-# SOURCE #-} IfaceType( IfaceType, IfaceTyCon, IfaceForAllBndr
                               , IfaceCoercion, IfaceTyLit, IfaceTcArgs )
import Var ( TyVarBinder )
import TyCon ( TyCon )
import VarSet( VarSet )

-- For TyCoRep
toIfaceTypeX :: VarSet -> Type -> IfaceType
toIfaceTyLit :: TyLit -> IfaceTyLit
toIfaceForAllBndr :: TyVarBinder -> IfaceForAllBndr
toIfaceTyCon :: TyCon -> IfaceTyCon
toIfaceTcArgs :: TyCon -> [Type] -> IfaceTcArgs
toIfaceCoercionX :: VarSet -> Coercion -> IfaceCoercion