xo-interpreter2 stack: + dict type + pop more pm types

This commit is contained in:
Roland Conybeare 2026-03-16 09:03:24 -05:00
commit 3b448dc02b
15 changed files with 117 additions and 31 deletions

View file

@ -12,6 +12,7 @@ namespace xo {
namespace scm {
/** Register primitive factories with primitive registry **/
bool numeric_register_primitives(obj<xo::mm::AAllocator> mm,
StringTable * stbl,
InstallSink sink,
InstallFlags flags);
}

View file

@ -49,8 +49,11 @@ namespace xo {
}
bool
numeric_register_primitives(obj<AAllocator> mm, InstallSink sink, InstallFlags flags)
numeric_register_primitives(obj<AAllocator> mm, StringTable * stbl,
InstallSink sink, InstallFlags flags)
{
(void)stbl;
scope log(XO_DEBUG(true));
bool ok = true;