Agda-2.2.10: A dependently typed functional programming language and proof assistant

Agda.Compiler.Epic.LambdaLift

Description

Lift lambda expressions to top level definitions (Epic does not support lambdas).

Synopsis

Documentation

type LL = WriterT [Fun]

LL makes it possible to emit new functions when we encounter a lambda

lambdaLift :: MonadTCM m => [Fun] -> Compile m [Fun]

lambda lift all the functions

lambdaLiftFun :: MonadTCM m => Fun -> LL (Compile m) Fun

 lift a function, this is in a LL (Writer monad)

lambdaLiftExpr :: MonadTCM m => Expr -> LL (Compile m) Expr

 lift an expression, put all the new definitions in the writer monad