xo-reader2 stack: top-level lambda w/ apply parses

This commit is contained in:
Roland Conybeare 2026-02-05 15:45:40 -05:00
commit 60b8fda134
26 changed files with 858 additions and 20 deletions

105
src/expression2/DVarRef.cpp Normal file
View file

@ -0,0 +1,105 @@
/** @file DVarRef.cpp
*
* @author Roland Conybeare, Feb 2026
**/
#include "DVarRef.hpp"
namespace xo {
using xo::mm::AGCObject;
using xo::reflect::TypeDescr;
namespace scm {
DVarRef::DVarRef(DVariable * vardef,
Binding path)
: vardef_{vardef},
path_{path}
{}
DVarRef *
DVarRef::make(obj<AAllocator> mm,
DVariable * vardef,
int32_t link)
{
assert(vardef);
void * mem = mm.alloc_for<DVarRef>();
return new (mem) DVarRef(vardef,
Binding::relative(link,
vardef->path()));
}
const DUniqueString *
DVarRef::name() const {
return vardef_->name();
}
TypeRef
DVarRef::typeref() const noexcept {
assert(vardef_);
return vardef_->typeref();
}
TypeDescr
DVarRef::valuetype() const noexcept
{
return this->typeref().td();
}
void
DVarRef::assign_valuetype(TypeDescr td) noexcept
{
assert(vardef_);
vardef_->assign_valuetype(td);
}
// gcobject facet
std::size_t
DVarRef::shallow_size() const noexcept
{
return sizeof(DVarRef);
}
DVarRef *
DVarRef::shallow_copy(obj<AAllocator> mm) const noexcept
{
DVarRef * copy = (DVarRef *)mm.alloc_copy((std::byte *)this);
if (copy)
*copy = *this;
return copy;
}
std::size_t
DVarRef::forward_children(obj<ACollector> gc) noexcept
{
// TODO: this can be helper in RCollector interface
auto iface = xo::facet::impl_for<AGCObject,DVariable>();
gc.forward_inplace(&iface, (void **)vardef_);
// TODO: concept to indicate that no gc pointers in Binding
return shallow_size();
}
// printable facet
bool
DVarRef::pretty(const ppindentinfo & ppii) const
{
return ppii.pps()->pretty_struct
(ppii,
"DVarRef",
refrtag("name", std::string_view(*(this->name()))),
refrtag("path", this->path_));
}
}
} /*namespace xo*/
/* end DVarRef.cpp */