32 #ifndef _QORE_QOREVALUECOALESCINGOPERATORNODE_H 33 #define _QORE_QOREVALUECOALESCINGOPERATORNODE_H 35 class QoreValueCoalescingOperatorNode :
public QoreBinaryOperatorNode<QoreOperatorNode> {
39 const QoreTypeInfo* typeInfo;
41 DLLLOCAL
virtual void parseInitImpl(
QoreValue& val, LocalVar *oflag,
int pflag,
int &lvids,
const QoreTypeInfo *&returnTypeInfo);
46 DLLLOCAL QoreValueCoalescingOperatorNode(
const QoreProgramLocation* loc,
QoreValue e0,
QoreValue e1) : QoreBinaryOperatorNode<QoreOperatorNode>(loc, e0, e1), typeInfo(0) {
53 DLLLOCAL
virtual const QoreTypeInfo *getTypeInfo()
const {
58 DLLLOCAL
virtual const char* getTypeName()
const {
62 DLLLOCAL
virtual QoreOperatorNode* copyBackground(
ExceptionSink* xsink)
const {
63 return copyBackgroundExplicit<QoreValueCoalescingOperatorNode>(xsink);
Qore's string type supported by the QoreEncoding class.
Definition: QoreString.h:81
DLLEXPORT const char * getBuffer() const
returns the string's buffer; this data should not be changed
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:262
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:46