|
Envision
A visual programming IDE for object-oriented languages
|
Public Types | |
| enum | OperatorTypes { TIMES , DIVIDE , REMAINDER , PLUS , MINUS , LEFT_SHIFT , RIGHT_SHIFT_SIGNED , RIGHT_SHIFT_UNSIGNED , LESS , GREATER , LESS_EQUALS , GREATER_EQUALS , EQUALS , NOT_EQUALS , XOR , AND , OR , CONDITIONAL_AND , CONDITIONAL_OR , ARRAY_INDEX , POINTER_TO_MEMBER , POINTER_POINTER_TO_MEMBER } |
Public Member Functions | |
| BinaryOperation (OperatorTypes op, Expression *left=nullptr, Expression *right=nullptr) | |
| OperatorTypes | op () const |
| void | setOp (const OperatorTypes &oper) |
| virtual std::unique_ptr< Type > | type () override |
Additional Inherited Members | |
Protected Types inherited from Core::Reflect< Base > | |
| using | Super = Reflect< Base > |
| OOModel::BinaryOperation::BinaryOperation | ( | OperatorTypes | op, |
| Expression * | left = nullptr, |
||
| Expression * | right = nullptr |
||
| ) |
|
inline |
|
inline |
|
overridevirtual |