Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
FreeC.IR.Reference
Description
This module contains functions to extract the names of (type) constructors and variables that are referenced by AST nodes such as expressions and type expressions.
These functions are used to construct the dependency graph and to find free (type) variables in (type) expressions.
Synopsis
- data Ref
- refScope :: Ref -> Scope
- refName :: Ref -> QName
- isVarRef :: Ref -> Bool
- isConRef :: Ref -> Bool
- isTypeRef :: Ref -> Bool
- isValueRef :: Ref -> Bool
- class HasRefs a
- refs :: HasRefs a => a -> [Ref]
- typeRefs :: HasRefs a => a -> [QName]
- valueRefs :: HasRefs a => a -> [QName]
- freeTypeVars :: HasRefs a => a -> [TypeVarIdent]
- freeTypeVarSet :: HasRefs a => a -> Set TypeVarIdent
- freeVars :: HasRefs a => a -> [QName]
- freeVarSet :: HasRefs a => a -> Set QName
References
Wrapper that is used to remember whether a name refers to a variable or constructor.
The wrapped names are ScopedName
s such that we can use the same
function to collect the type- and value-level references.
isVarRef :: Ref -> Bool Source #
Tests whether the given reference refers to a variable or type variable.
isConRef :: Ref -> Bool Source #
Tests whether the given reference refers to a constructor or type constructor.
isValueRef :: Ref -> Bool Source #
Tests whether the given reference refers to a value-level entry.
Finding References
Type class for AST nodes that contain references to (type) variables and constructors.
Minimal complete definition
refSet
Instances
HasRefs Type Source # | Type expressions refer to the used type variables and type constructors. |
Defined in FreeC.IR.Reference | |
HasRefs TypeScheme Source # | Type schemes refer to the types it's type expression refers to but not to the type variables that are bound by the type scheme. |
Defined in FreeC.IR.Reference Methods refSet :: TypeScheme -> RefSet | |
HasRefs ConDecl Source # | Constructor declarations refer to the types their field types refer to. |
Defined in FreeC.IR.Reference | |
HasRefs TypeDecl Source # | Data type declarations refer to the types their constructors refer to and type synonym declarations refer to the types it's right-hand side refers to. Both don't refer to type variables that are bound by their type arguments. |
Defined in FreeC.IR.Reference | |
HasRefs Bind Source # | |
Defined in FreeC.IR.Reference | |
HasRefs VarPat Source # | Variable patterns refer to the types used in their type annotation. |
Defined in FreeC.IR.Reference | |
HasRefs ConPat Source # | Constructor patterns refer to the matched constructor. |
Defined in FreeC.IR.Reference | |
HasRefs Alt Source # |
|
Defined in FreeC.IR.Reference | |
HasRefs Expr Source # | Expression refer to the used variables and constructors as wells as the types used in type signatures and visible type applications. The error terms |
Defined in FreeC.IR.Reference | |
HasRefs FuncDecl Source # | Function declarations refer to the types their argument and return type annotations refer to as well as the references of their right-hand side except for the (type) variables bound by the function's (type) arguments. |
Defined in FreeC.IR.Reference | |
HasRefs a => HasRefs [a] Source # | Utility instance to get the references of all elements in a list. |
Defined in FreeC.IR.Reference Methods refSet :: [a] -> RefSet | |
HasRefs a => HasRefs (Maybe a) Source # | Utility instance to get the references of an optional value. Returns references of the wrapped value or an empty set for |
Defined in FreeC.IR.Reference |
refs :: HasRefs a => a -> [Ref] Source #
Gets all references to variables, constructors, type variables and type constructors in the given node as they occur from left to right.
typeRefs :: HasRefs a => a -> [QName] Source #
Gets the names of all type variables and type constructors the given node refers to.
valueRefs :: HasRefs a => a -> [QName] Source #
gets the names of all variable and constructors the given node refers to.
Free Type Variables
freeTypeVars :: HasRefs a => a -> [TypeVarIdent] Source #
The type variables that occur freely in the given node from left to right.
freeTypeVarSet :: HasRefs a => a -> Set TypeVarIdent Source #
The type variables that occur freely in the given node.