xo-interpreter2 stack: work on variable references [WIP]

This commit is contained in:
Roland Conybeare 2026-02-05 10:44:11 -05:00
commit 370e52a149
21 changed files with 542 additions and 22 deletions

View file

@ -6,6 +6,8 @@
#include "DClosure.hpp"
namespace xo {
using xo::mm::AGCObject;
namespace scm {
DClosure::DClosure(const DLambdaExpr * lm,
@ -23,6 +25,16 @@ namespace xo {
return new (mem) DClosure(lm, env);
}
obj<AGCObject>
DClosure::apply_nocheck(obj<ARuntimeContext> rcx,
const DArray * args)
{
(void)rcx;
(void)args;
assert(false);
}
} /*namespace scm*/
} /*namespace xo*/