32 #ifndef _QORE_QOREMODULOEQUALSOPERATORNODE_H
33 #define _QORE_QOREMODULOEQUALSOPERATORNODE_H
35 class QoreModuloEqualsOperatorNode :
public QoreBinaryIntLValueOperatorNode {
38 DLLLOCAL
virtual int parseInitImpl(
QoreValue& val, QoreParseContext& parse_context);
43 DLLLOCAL QoreModuloEqualsOperatorNode(
const QoreProgramLocation* loc,
QoreValue left,
QoreValue right)
44 : QoreBinaryIntLValueOperatorNode(loc, left, right) {
47 DLLLOCAL
virtual QoreOperatorNode* copyBackground(
ExceptionSink *xsink)
const {
48 return copyBackgroundExplicit<QoreModuloEqualsOperatorNode>(xsink);
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:48
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:275