xo-interpreter2: scaffold repl + alloc measurement frameowkr

This commit is contained in:
Roland Conybeare 2026-02-02 21:55:34 -05:00
commit f6aae4190e
42 changed files with 1398 additions and 198 deletions

View file

@ -13,6 +13,7 @@
namespace xo {
using xo::mm::AAllocator;
using xo::mm::MemorySizeInfo;
using xo::tostr;
using xo::xtag;
@ -46,6 +47,18 @@ namespace xo {
return psm_.top_ssm();
}
std::size_t
SchematikaParser::_n_store() const noexcept
{
return psm_._n_store();
}
MemorySizeInfo
SchematikaParser::_store_info(std::size_t i) const noexcept
{
return psm_._store_info(i);
}
void
SchematikaParser::begin_interactive_session()
{