xo-reader2: + on_f64_token() + handle in DDefineSsm+DProgressSsm
This commit is contained in:
parent
8b148285b1
commit
5bd78b8f4e
62 changed files with 1680 additions and 25 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue