32 #ifndef _QORE_QORESHIFTRIGHTOPERATORNODE_H
34 #define _QORE_QORESHIFTRIGHTOPERATORNODE_H
36 class QoreShiftRightOperatorNode :
public QoreIntBinaryOperatorNode {
39 DLLLOCAL QoreShiftRightOperatorNode(
const QoreProgramLocation* loc,
QoreValue left,
QoreValue right)
40 : QoreIntBinaryOperatorNode(loc, left, right) {
43 DLLLOCAL
virtual QoreOperatorNode* copyBackground(
ExceptionSink* xsink)
const {
44 return copyBackgroundExplicit<QoreShiftRightOperatorNode>(xsink);
50 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
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:275