xo-interpreter/xo-alloc: GlobalEnv + mm -> shallow_copy()

This commit is contained in:
Roland Conybeare 2025-11-23 22:57:52 -05:00
commit 4d2cd54365
18 changed files with 52 additions and 37 deletions

View file

@ -97,9 +97,9 @@ namespace xo {
}
Object *
LocalEnv::_shallow_copy() const
LocalEnv::_shallow_copy(gc::IAlloc * mm) const
{
Cpof cpof(Object::mm, this);
Cpof cpof(mm, this);
size_t z = size();