xo-XXX -> .xo-XXX (prep subrepo)
This commit is contained in:
parent
2342dc02a2
commit
cf0bd4d975
2105 changed files with 0 additions and 0 deletions
|
|
@ -1,132 +0,0 @@
|
|||
/** @file DDefineExpr.cpp
|
||||
*
|
||||
* @author Roland Conybeare, Jan 2026
|
||||
**/
|
||||
|
||||
#include "DDefineExpr.hpp"
|
||||
#include "Variable.hpp"
|
||||
#include <xo/alloc2/GCObject.hpp>
|
||||
#include <xo/gc/PolyForwarderUtil.hpp>
|
||||
#include <xo/printable2/Printable.hpp>
|
||||
#include <xo/facet/FacetRegistry.hpp>
|
||||
#include <xo/indentlog/scope.hpp>
|
||||
#include <xo/indentlog/print/cond.hpp>
|
||||
|
||||
namespace xo {
|
||||
using xo::mm::poly_forward_inplace;
|
||||
using xo::print::APrintable;
|
||||
using xo::facet::FacetRegistry;
|
||||
using xo::facet::typeseq;
|
||||
|
||||
namespace scm {
|
||||
|
||||
DDefineExpr::DDefineExpr(DVariable * lhs_var,
|
||||
obj<AExpression> rhs)
|
||||
: lhs_var_{lhs_var}, rhs_{rhs}
|
||||
{}
|
||||
|
||||
DDefineExpr *
|
||||
DDefineExpr::make(obj<AAllocator> mm,
|
||||
const DUniqueString * lhs_name,
|
||||
obj<AExpression> rhs_expr)
|
||||
{
|
||||
void * mem = mm.alloc(typeseq::id<DDefineExpr>(),
|
||||
sizeof(DDefineExpr));
|
||||
|
||||
TypeRef rhs_tref;
|
||||
if (rhs_expr)
|
||||
rhs_tref = rhs_expr.typeref();
|
||||
|
||||
auto lhs_var = DVariable::make(mm,
|
||||
lhs_name,
|
||||
rhs_tref);
|
||||
|
||||
return new (mem) DDefineExpr(lhs_var, rhs_expr);
|
||||
}
|
||||
|
||||
DDefineExpr *
|
||||
DDefineExpr::make_empty(obj<AAllocator> mm)
|
||||
{
|
||||
return make(mm,
|
||||
nullptr /*lhs_name*/,
|
||||
obj<AExpression>() /*rhs_expr*/);
|
||||
}
|
||||
|
||||
const DUniqueString *
|
||||
DDefineExpr::name() const noexcept
|
||||
{
|
||||
return lhs_var_->name();
|
||||
}
|
||||
|
||||
void
|
||||
DDefineExpr::assign_lhs_name(const DUniqueString * name)
|
||||
{
|
||||
lhs_var_->assign_name(name);
|
||||
}
|
||||
|
||||
void
|
||||
DDefineExpr::assign_valuetype(TypeDescr td) noexcept
|
||||
{
|
||||
lhs_var_->assign_valuetype(td);
|
||||
}
|
||||
|
||||
void
|
||||
DDefineExpr::assign_rhs(obj<AExpression> x)
|
||||
{
|
||||
this->rhs_ = x;
|
||||
}
|
||||
|
||||
// ----- GCObject facet -----
|
||||
|
||||
DDefineExpr *
|
||||
DDefineExpr::gco_shallow_move(obj<AGCObjectVisitor> gc) noexcept
|
||||
{
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
void
|
||||
DDefineExpr::visit_gco_children(VisitReason reason,
|
||||
obj<AGCObjectVisitor> gc) noexcept
|
||||
{
|
||||
gc.visit_child(reason, &lhs_var_);
|
||||
gc.visit_poly_child(reason, &rhs_);
|
||||
}
|
||||
|
||||
bool
|
||||
DDefineExpr::pretty(const ppindentinfo & ppii) const
|
||||
{
|
||||
assert(lhs_var_);
|
||||
|
||||
auto lhs = obj<APrintable,DVariable>(lhs_var_);
|
||||
auto rhs = FacetRegistry::instance().try_variant<APrintable,
|
||||
AExpression>(rhs_);
|
||||
|
||||
if (lhs_var_)
|
||||
assert(lhs.data());
|
||||
|
||||
if (rhs_)
|
||||
assert(rhs.data());
|
||||
|
||||
// note: xo::print::cond() doesn't resolve the way we want here
|
||||
|
||||
if (rhs) {
|
||||
return ppii.pps()->pretty_struct
|
||||
(ppii,
|
||||
"DDefineExpr"
|
||||
, refrtag("lhs", lhs)
|
||||
, refrtag("rhs", rhs)
|
||||
);
|
||||
} else {
|
||||
return ppii.pps()->pretty_struct
|
||||
(ppii,
|
||||
"DDefineExpr"
|
||||
, refrtag("lhs", lhs)
|
||||
);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
} /*namespace scm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end DDefineExpr.cpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue