xo-expression2: + DVariable

This commit is contained in:
Roland Conybeare 2026-01-17 01:05:59 -05:00
commit 2178d78540
3 changed files with 76 additions and 0 deletions

View file

@ -4,6 +4,7 @@ set(SELF_LIB xo_expression2)
set(SELF_SRCS
init_expression2.cpp
DConstant.cpp
DVariable.cpp
TypeRef.cpp
IExpression_Any.cpp
IExpression_DConstant.cpp

View file

@ -0,0 +1,19 @@
/** @file DVariable.cpp
*
* @author Roland Conybeare, Jan 2026
**/
#include "DVariable.hpp"
#include "exprtype.hpp"
namespace xo {
namespace scm {
void
DVariable::assign_valuetype(TypeDescr td) noexcept
{
typeref_.resolve(td);
}
} /*namespace scm*/
} /*namespace xo*/
/* end DVariable.cpp */