ajhc-0.8.0.6: Haskell compiler that produce binary through C language

Safe HaskellNone

E.Subst

Synopsis

Documentation

doSubst :: Bool -> Bool -> IdMap (Maybe E) -> E -> ESource

doSubst' :: Bool -> Bool -> IdMap E -> (Id -> Bool) -> E -> ESource

eAp :: E -> E -> ESource

litSMapM :: Monad m => (a -> m t) -> Lit a a -> m (Lit t t)Source

substSource

Arguments

:: TVr

Variable to substitute

-> E

What to substitute with

-> E

input term

-> E

output term

Basic substitution routine

subst' :: TVr -> E -> E -> ESource

Identitcal to subst except that it substitutes inside the local types for variables in expressions. This should not be used because it breaks the sharing of types between a binding site of a variable and its uses and can lead to inconsistant terms. However, it is sometimes useful to create transient terms for typechecking.

substMap' :: IdMap E -> E -> ESource

doesn't seed with free variables.

substMap'' :: IdMap (Maybe E) -> E -> ESource

doesn't seed with free variables.

typeSubstSource

Arguments

:: IdMap (Maybe E)

substitution to carry out at term level as well as a list of in-scope variables

-> IdMap E

substitution to carry out at type level

-> E -> E

the substitution function

substitution routine that can substitute different values at the term and type level. this is useful to enforce the invarient that let-bound variables must not occur at the type level, yet non-atomic values (even typelike ones) cannot appear in argument positions at the term level.