implement unary operations

This commit is contained in:
2026-04-26 16:57:24 +08:00
parent 103928779f
commit a28dfada30
3 changed files with 15 additions and 8 deletions
+2 -2
View File
@@ -173,8 +173,8 @@ tail_fn!(op_geq, (ctx, reader, mc));
tail_fn!(op_concat, (reader, mc));
tail_fn!(op_update, (reader, mc));
tail_fn!(op_neg, ());
tail_fn!(op_not, ());
tail_fn!(op_neg, (reader, mc));
tail_fn!(op_not, (reader, mc));
tail_fn!(op_jump_if_false, (reader, mc));
tail_fn!(op_jump_if_true, (reader, mc));