32 #ifndef _QORE_FUNCTIONREFERENCECALLNODE_H
34 #define _QORE_FUNCTIONREFERENCECALLNODE_H
36 #include "qore/intern/QoreParseListNode.h"
38 class CallReferenceCallNode :
public ParseNode {
41 QoreParseListNode* parse_args =
nullptr;
50 DLLLOCAL
virtual int parseInitImpl(
QoreValue& val, QoreParseContext& parse_context);
52 DLLLOCAL
virtual const QoreTypeInfo* getTypeInfo()
const {
57 DLLLOCAL CallReferenceCallNode(
const QoreProgramLocation* loc,
QoreValue exp, QoreParseListNode* n_args);
61 DLLLOCAL
virtual ~CallReferenceCallNode();
68 DLLLOCAL
virtual const char* getTypeName()
const;
71 DLLLOCAL
QoreValue getExp()
const {
return exp; }
74 DLLLOCAL
const QoreListNode* getArgs()
const {
return args; }
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:48
This is the list container type in Qore, dynamically allocated only, reference counted.
Definition: QoreListNode.h:52
Qore's string type supported by the QoreEncoding class.
Definition: QoreString.h:93
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:275