- 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
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue