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 a341ac1f06
17 changed files with 41 additions and 16 deletions

View file

@ -19,12 +19,20 @@ namespace xo {
public:
using TaggedPtr = xo::reflect::TaggedPtr;
using TypeDescr = xo::reflect::TypeDescr;
using AAllocator = xo::mm::AAllocator;
using AGCObject = xo::mm::AGCObject;
using typeseq = xo::reflect::typeseq;
public:
explicit DConstant(obj<AGCObject> value) noexcept;
/** create instance
* @p mm memory allocator
* @p value literal constant
**/
static DConstant * make(obj<AAllocator> mm,
obj<AGCObject> value);
bool is_resolved() const noexcept { return typeref_.is_resolved(); }
exprtype extype() const noexcept { return exprtype::constant; }