xo-reader2: + on_f64_token() + handle in DDefineSsm+DProgressSsm

This commit is contained in:
Roland Conybeare 2026-01-22 15:18:35 -05:00
commit 5bd78b8f4e
62 changed files with 1680 additions and 25 deletions

View file

@ -34,6 +34,16 @@ namespace xo {
}
}
DConstant *
DConstant::make(obj<AAllocator> mm,
obj<AGCObject> value)
{
void * mem = mm.alloc(typeseq::id<DConstant>(),
sizeof(DConstant));
return new (mem) DConstant(value);
}
TypeDescr
DConstant::_lookup_td(typeseq tseq)
{