free-compiler-0.3.0.0: A Haskell to Coq compiler.

Safe HaskellSafe
LanguageHaskell2010

FreeC.LiftedIR.Syntax.Type

Description

This module contains the definition of type expressions of our lifted intermediate language.

Synopsis

Documentation

data Type Source #

A type expression.

Types are represented as fully applied type constructors or type variables of kind *. In contrast to the Type from the intermediate representation, Free is modelled explicitly.

Constructors

TypeVar

A type variable.

TypeCon

A fully applied n-ary type constructor application.

Fields

FuncType

A function type.

FreeTypeCon

A type constructor for the free monad.

Instances
Eq Type Source # 
Instance details

Defined in FreeC.LiftedIR.Syntax.Type

Methods

(==) :: Type -> Type -> Bool Source #

(/=) :: Type -> Type -> Bool Source #

Show Type Source # 
Instance details

Defined in FreeC.LiftedIR.Syntax.Type

funcType :: SrcSpan -> [Type] -> Type -> Type Source #

Creates a function type with the given argument and return types.

decreasing :: Type -> Bool Source #

Decides whether a type contains a decreasing argument.