|
|
|
|
|
Documentation |
|
type TcRnIf a b c = IOEnv (Env a b) c |
|
type TcRn a = TcRnIf TcGblEnv TcLclEnv a |
|
type TcM a = TcRn a |
|
type RnM a = TcRn a |
|
type IfM lcl a = TcRnIf IfGblEnv lcl a |
|
type IfL a = IfM IfLclEnv a |
|
type IfG a = IfM () a |
|
type TcRef a = IORef a |
|
data Env gbl lcl |
|
|
data TcGblEnv |
|
|
data TcLclEnv |
|
|
data IfGblEnv |
|
|
data IfLclEnv |
|
|
type ErrCtxt = [TidyEnv -> TcM (TidyEnv, Message)] |
|
data RecFieldEnv |
|
|
data ImportAvails |
|
|
emptyImportAvails :: ImportAvails |
|
plusImportAvails :: ImportAvails -> ImportAvails -> ImportAvails |
|
data WhereFrom |
Constructors | | Instances | |
|
|
mkModDeps :: [(ModuleName, IsBootInterface)] -> ModuleNameEnv (ModuleName, IsBootInterface) |
|
data TcTyThing |
Constructors | | Instances | |
|
|
pprTcTyThingCategory :: TcTyThing -> SDoc |
|
data RefinementVisibility |
Constructors | Unrefineable | | Rigid HsWrapper | | Wobbly | | WobblyInvisible | |
| Instances | |
|
|
data ThStage |
Constructors | | Instances | |
|
|
topStage :: ThStage |
|
topSpliceStage :: ThStage |
|
type ThLevel = Int |
|
impLevel :: ThLevel |
|
topLevel :: ThLevel |
|
data ArrowCtxt |
|
|
newArrowScope :: TcM a -> TcM a |
|
escapeArrowScope :: TcM a -> TcM a |
|
data Inst |
Constructors | Dict | | | ImplicInst | | | Method | | | LitInst | | | EqInst | | |
| Instances | |
|
|
type EqInstCo = Either TcTyVar Coercion |
|
data InstOrigin |
Constructors | | Instances | |
|
|
data InstLoc |
|
|
pprInstLoc :: InstLoc -> SDoc |
|
pprInstArising :: Inst -> SDoc |
|
instLocSpan :: InstLoc -> SrcSpan |
|
instLocOrigin :: InstLoc -> InstOrigin |
|
setInstLoc :: Inst -> InstLoc -> Inst |
|
type LIE = Bag Inst |
|
emptyLIE :: LIE |
|
unitLIE :: Inst -> LIE |
|
plusLIE :: LIE -> LIE -> LIE |
|
consLIE :: Inst -> LIE -> LIE |
|
instLoc :: Inst -> InstLoc |
|
instSpan :: Inst -> SrcSpan |
|
plusLIEs :: [LIE] -> LIE |
|
mkLIE :: [Inst] -> LIE |
|
isEmptyLIE :: LIE -> Bool |
|
lieToList :: LIE -> [Inst] |
|
listToLIE :: [Inst] -> LIE |
|
type TcId = Id |
|
type TcIdSet = IdSet |
|
type TcDictBinds = DictBinds TcId |
|
Produced by Haddock version 2.4.2 |