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

Safe HaskellNone

Agda.TypeChecker

Synopsis

Documentation

checkDecls :: [Declaration] -> TCM ()Source

Type check a sequence of declarations.

checkDecl :: Declaration -> TCM ()Source

Type check a single declaration.

inferExpr :: Expr -> TCM (Term, Type)Source

Infer the type of an expression. Implemented by checking against a meta variable. Except for neutrals, for them a polymorphic type is inferred.

checkExpr :: Expr -> Type -> TCM TermSource

Type check an expression.