- implemented the '<>=' operator - more as a VM coding exercise than for its usefulness, though.
This commit is contained in:
parent
9f260983c7
commit
f5e4c4b109
3 changed files with 110 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue