- 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

@ -2547,8 +2547,10 @@ FxExpression *ZCCCompiler::ConvertNode(ZCC_TreeNode *ast)
case PEX_XorAssign:
return ModifyAssign(new FxBinaryInt(tok, new FxAssignSelf(*ast), right), left);
// todo: These do not have representations in DECORATE and no implementation exists yet.
case PEX_LTGTEQ:
return new FxLtGtEq(left, right);
// todo: These do not have representations in DECORATE and no implementation exists yet.
case PEX_Concat:
case PEX_Is:
// more esoteric operators