ConcatStrings

This commit is contained in:
2026-05-02 23:39:40 +08:00
parent ec2726ff8d
commit 1fc716c7be
6 changed files with 68 additions and 20 deletions
+4
View File
@@ -180,6 +180,8 @@ tail_fn!(op_jump_if_false, (reader, mc));
tail_fn!(op_jump_if_true, (reader, mc));
tail_fn!(op_jump, (reader));
tail_fn!(op_coerce_to_string, (reader, mc));
tail_fn!(op_concat_strings, (ctx, reader, mc));
tail_fn!(op_resolve_path, (ctx));
@@ -272,6 +274,8 @@ table! {
JumpIfTrue => op_jump_if_true,
Jump => op_jump,
CoerceToString => op_coerce_to_string,
ConcatStrings => op_concat_strings,
ResolvePath => op_resolve_path,