diff options
Diffstat (limited to 'vm.d')
| -rw-r--r-- | vm.d | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -447,6 +447,11 @@ class VM { bool bval = asBoolean(val); this.pushA(makeBooleanValue(!bval)); break; + case OpCode.OP_EQUAL: + Value b = this.popA(); + Value a = this.popA(); + this.pushA(makeBooleanValue(areValuesEqual(a, b))); + break; case OpCode.OP_CONCAT: Seq b = asSeq(this.popA()); Seq a = asSeq(this.popA()); |
