xo-interpreter2 stack: + RuntimeContext.visit_pools() method

This commit is contained in:
Roland Conybeare 2026-02-28 13:26:10 +11:00
commit c99ac53c72
10 changed files with 65 additions and 3 deletions

View file

@ -0,0 +1,19 @@
/** @file DSimpleRcx.cpp
*
* @author Roland Conybeare, Feb 2026
**/
#include "DSimpleRcx.hpp"
namespace xo {
namespace scm {
void
DSimpleRcx::visit_pools(const MemorySizeVisitor & visitor) const
{
allocator_.visit_pools(visitor);
}
}
}
/* end DSimpleRcx.cpp */