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

Safe HaskellNone
LanguageHaskell2010

FreeC.Environment.Entry

Description

This module contains data types that are used to store information about declared functions, (type) variables and (type) constructors in the environment.

Synopsis

Documentation

data EnvEntry Source #

Entry of the environment.

Constructors

DataEntry

Entry for a data type declaration.

Fields

TypeSynEntry

Entry for a type synonym declaration.

Fields

TypeVarEntry

Entry for a type variable.

Fields

ConEntry

Entry for a data constructor.

Fields

FuncEntry

Entry for a function declaration.

Fields

VarEntry

Entry for a variable.

Fields

FreshEntry

Entry for fresh variables.

The purpose of these entries is to prevent two fresh variables with the same name to be issued for generated AST nodes that have no corresponding

Fields

  • entryIdent :: Qualid

    The name of the data type in Coq.

  • entryAgdaIdent :: QName

    The name of the data type in Agda.

  • entryName :: QName

    The name of the data type in the module it has been defined in.

Instances
Eq EnvEntry Source #

Entries are identified by their original name.

Instance details

Defined in FreeC.Environment.Entry

Ord EnvEntry Source #

Entries are ordered by their original name.

Instance details

Defined in FreeC.Environment.Entry

Show EnvEntry Source # 
Instance details

Defined in FreeC.Environment.Entry

entryScope :: EnvEntry -> Scope Source #

Gets the scope an entry needs to be defined in.

entryScopedName :: EnvEntry -> ScopedName Source #

Gets the scope and name of the given entry.

isDataEntry :: EnvEntry -> Bool Source #

Tests whether the given entry of the environment describes a data type.

isTypeSynEntry :: EnvEntry -> Bool Source #

Tests whether the given entry of the environment describes a type synonym.

isTypeVarEntry :: EnvEntry -> Bool Source #

Tests whether the given entry of the environment describes a type variable.

isConEntry :: EnvEntry -> Bool Source #

Tests whether the given entry of the environment describes a data constructor.

isFuncEntry :: EnvEntry -> Bool Source #

Tests whether the given entry of the environment describes a function.

isVarEntry :: EnvEntry -> Bool Source #

Tests whether the given entry of the environment describes a variable.

isTopLevelEntry :: EnvEntry -> Bool Source #

Tests whether the given entry of the environment describes a top-level data type, type synonym, constructor or function.

Type variables and local variables are no top level entries.

entryHasSmartIdent :: EnvEntry -> Bool Source #

Tests whether the given entry distinguishes between a entryIdent and entrySmartIdent.

prettyEntryType :: EnvEntry -> String Source #

Gets a human readable description of the entry type.