Zen
A cross-platform functional programming language
|
Abstract base class for AST Nodes representing initial closures. More...
#include <Ast.hpp>
Public Member Functions | |
virtual const Ast::QualifiedType & | getOutType () const =0 |
Returns the out-param type for init closures. | |
Protected Member Functions | |
InitClosure (const VariableRefList &xRefList) | |
Default constructor. |
Abstract base class for AST Nodes representing initial closures.
InitClosure | ( | const VariableRefList & | xRefList | ) | [inline, protected] |
Default constructor.
xRefList | The list of external variables referenced by this closure. |
virtual const Ast::QualifiedType& getOutType | ( | ) | const [pure virtual] |
Returns the out-param type for init closures.
Implemented in RunClosure, ExitClosure, and CallClosure.