implement unary operations

This commit is contained in:
2026-04-26 16:57:24 +08:00
parent bc16596dd3
commit c85423ae79
3 changed files with 15 additions and 8 deletions
+2 -2
View File
@@ -641,8 +641,8 @@ impl<'gc> Vm<'gc> {
OpConcat => self.op_concat(&mut reader, mc),
OpUpdate => self.op_update(&mut reader, mc),
OpNeg => self.op_neg(),
OpNot => self.op_not(),
OpNeg => self.op_neg(&mut reader, mc),
OpNot => self.op_not(&mut reader, mc),
JumpIfFalse => self.op_jump_if_false(&mut reader, mc),
JumpIfTrue => self.op_jump_if_true(&mut reader, mc),