xo-interpreter2 stack: apply user-defined lambda passes utest

This commit is contained in:
Roland Conybeare 2026-02-13 16:06:19 -05:00
commit cc98f515bd
7 changed files with 48 additions and 21 deletions

View file

@ -30,11 +30,11 @@ namespace xo {
/** create instance, using memory from @p mm **/
static DVsmApplyClosureFrame * make(obj<AAllocator> mm,
obj<AGCObject> stack,
obj<AGCObject> parent,
VsmInstr cont,
DLocalEnv * env);
obj<AGCObject> stack() const { return stack_; }
obj<AGCObject> parent() const { return stack_; }
VsmInstr cont() const { return cont_; }
DLocalEnv * local_env() const { return local_env_; }