32 #ifndef _QORE_QOREMULTIPLICATIONOPERATORNODE_H
34 #define _QORE_QOREMULTIPLICATIONOPERATORNODE_H
36 class QoreMultiplicationOperatorNode :
public QoreBinaryOperatorNode<> {
38 const QoreTypeInfo* returnTypeInfo;
44 DLLLOCAL
virtual int parseInitImpl(
QoreValue& val, QoreParseContext& parse_context);
47 DLLLOCAL QoreMultiplicationOperatorNode(
const QoreProgramLocation* loc,
QoreValue left,
QoreValue right)
48 : QoreBinaryOperatorNode<>(loc, left, right), returnTypeInfo(nullptr) {
53 return &multiplication_str;
57 str.
concat(&multiplication_str);
62 DLLLOCAL
virtual const char* getTypeName()
const {
63 return multiplication_str.getBuffer();
66 DLLLOCAL
virtual const QoreTypeInfo* getTypeInfo()
const {
67 return returnTypeInfo;
70 DLLLOCAL
virtual QoreOperatorNode* copyBackground(
ExceptionSink* xsink)
const {
71 return copyBackgroundExplicit<QoreMultiplicationOperatorNode>(xsink);
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
DLLEXPORT void concat(const QoreString *str, ExceptionSink *xsink)
concatenates a string and converts encodings if necessary
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:275