xo-interpreter2 stack: parse literal lists (w/ implicit types)

This commit is contained in:
Roland Conybeare 2026-03-02 23:21:10 +11:00
commit 5f3000693e
4 changed files with 25 additions and 2 deletions

View file

@ -105,6 +105,14 @@ namespace xo {
return l->head_;
}
void
DList::assign_rest(DList * r)
{
scope log(XO_DEBUG(true), "need write barrier");
this->rest_ = r;
}
bool
DList::pretty(const ppindentinfo & ppii) const
{