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 void parseInitImpl(
QoreValue& val, LocalVar* oflag,
int pflag,
int& lvids,
const QoreTypeInfo*& typeInfo);
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; }