xo-expression2: + DApplyExpr [WIP]. Builds, not used or tested

This commit is contained in:
Roland Conybeare 2026-01-25 13:14:26 -05:00
commit c0978f5098
7 changed files with 181 additions and 1 deletions

View file

@ -51,6 +51,9 @@ namespace xo {
case exprtype::variable:
_do_eval_variable_op();
break;
case exprtype::apply:
_do_eval_apply_op();
break;
}
}
@ -77,6 +80,13 @@ namespace xo {
// not implemented
assert(false);
}
void
VirtualSchematikaMachine::_do_eval_apply_op()
{
// not implemented
assert(false);
}
} /*namespace scm*/
} /*namespace xo*/