32 #ifndef _QORE_QOREVALUECOALESCINGOPERATORNODE_H
33 #define _QORE_QOREVALUECOALESCINGOPERATORNODE_H
35 class QoreValueCoalescingOperatorNode :
public QoreBinaryOperatorNode<QoreOperatorNode> {
37 DLLLOCAL QoreValueCoalescingOperatorNode(
const QoreProgramLocation* loc,
QoreValue e0,
QoreValue e1)
38 : QoreBinaryOperatorNode<QoreOperatorNode>(loc, e0, e1) {
45 DLLLOCAL
virtual const QoreTypeInfo *getTypeInfo()
const {
50 DLLLOCAL
virtual const char* getTypeName()
const {
51 return value_coalescing_str.getBuffer();
54 DLLLOCAL
virtual QoreOperatorNode* copyBackground(
ExceptionSink* xsink)
const {
55 return copyBackgroundExplicit<QoreValueCoalescingOperatorNode>(xsink);
61 const QoreTypeInfo* typeInfo =
nullptr;
63 DLLLOCAL
virtual int parseInitImpl(
QoreValue& val, QoreParseContext& parse_context);
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:48
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