ConcatStrings

This commit is contained in:
2026-05-02 23:39:40 +08:00
parent 1550868e90
commit 9d10fa7da3
6 changed files with 68 additions and 20 deletions
+2 -1
View File
@@ -492,7 +492,7 @@ impl<'gc> Vm<'gc> {
});
self.push(func);
self.call(reader, mc, arg, resume_pc)
},
}
ThunkState::Blackhole => {
self.finish_err(Error::eval_error("infinite recursion encountered"))
}
@@ -666,6 +666,7 @@ impl<'gc> Vm<'gc> {
Jump => self.op_jump(&mut reader),
ConcatStrings => self.op_concat_strings(ctx, &mut reader, mc),
CoerceToString => self.op_coerce_to_string(&mut reader, mc),
ResolvePath => self.op_resolve_path(ctx),
Assert => self.op_assert(&mut reader),