Safe Haskell | None |
---|---|
Language | Haskell2010 |
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
- data EnvEntry
- = DataEntry {
- entrySrcSpan :: SrcSpan
- entryArity :: Int
- entryIdent :: Qualid
- entryAgdaIdent :: QName
- entryName :: QName
- entryConsNames :: [ConName]
- | TypeSynEntry {
- entrySrcSpan :: SrcSpan
- entryArity :: Int
- entryTypeArgs :: [TypeVarIdent]
- entryTypeSyn :: Type
- entryIdent :: Qualid
- entryAgdaIdent :: QName
- entryName :: QName
- | TypeVarEntry {
- entrySrcSpan :: SrcSpan
- entryIdent :: Qualid
- entryAgdaIdent :: QName
- entryName :: QName
- | ConEntry {
- entrySrcSpan :: SrcSpan
- entryArity :: Int
- entryTypeArgs :: [TypeVarIdent]
- entryArgTypes :: [Type]
- entryReturnType :: Type
- entryIdent :: Qualid
- entryAgdaIdent :: QName
- entrySmartIdent :: Qualid
- entryAgdaSmartIdent :: QName
- entryName :: QName
- | FuncEntry {
- entrySrcSpan :: SrcSpan
- entryArity :: Int
- entryTypeArgs :: [TypeVarIdent]
- entryArgTypes :: [Type]
- entryStrictArgs :: [Bool]
- entryReturnType :: Type
- entryNeedsFreeArgs :: Bool
- entryEncapsulatesEffects :: Bool
- entryEffects :: [Effect]
- entryIdent :: Qualid
- entryAgdaIdent :: QName
- entryName :: QName
- | VarEntry {
- entrySrcSpan :: SrcSpan
- entryIsPure :: Bool
- entryIdent :: Qualid
- entryAgdaIdent :: QName
- entryName :: QName
- entryType :: Maybe Type
- | FreshEntry {
- entryIdent :: Qualid
- entryAgdaIdent :: QName
- entryName :: QName
- = DataEntry {
- entryScope :: EnvEntry -> Scope
- entryScopedName :: EnvEntry -> ScopedName
- isDataEntry :: EnvEntry -> Bool
- isTypeSynEntry :: EnvEntry -> Bool
- isTypeVarEntry :: EnvEntry -> Bool
- isConEntry :: EnvEntry -> Bool
- isFuncEntry :: EnvEntry -> Bool
- isVarEntry :: EnvEntry -> Bool
- isTopLevelEntry :: EnvEntry -> Bool
- entryHasSmartIdent :: EnvEntry -> Bool
- prettyEntryType :: EnvEntry -> String
Documentation
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
|
Instances
Eq EnvEntry Source # | Entries are identified by their original name. |
Ord EnvEntry Source # | Entries are ordered by their original name. |
Defined in FreeC.Environment.Entry | |
Show EnvEntry Source # | |
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.