- implemented the '<>=' operator - more as a VM coding exercise than for its usefulness, though.

This commit is contained in:
Christoph Oelckers 2016-10-21 16:35:07 +02:00
commit f5e4c4b109
3 changed files with 110 additions and 1 deletions

View file

@ -769,6 +769,21 @@ public:
ExpEmit Emit(VMFunctionBuilder *build);
};
//==========================================================================
//
//
//
//==========================================================================
class FxLtGtEq : public FxBinary
{
public:
FxLtGtEq(FxExpression*, FxExpression*);
FxExpression *Resolve(FCompileContext&);
ExpEmit Emit(VMFunctionBuilder *build);
};
//==========================================================================
//
// FxBinaryLogical