xo-expression2: + DIfElseExpr + utest

This commit is contained in:
Roland Conybeare 2026-01-27 10:09:26 -05:00
commit e243264511
18 changed files with 1047 additions and 6 deletions

View file

@ -54,6 +54,9 @@ namespace xo {
case exprtype::apply:
_do_eval_apply_op();
break;
case exprtype::ifexpr:
_do_eval_if_else_op();
break;
}
}
@ -87,6 +90,13 @@ namespace xo {
// not implemented
assert(false);
}
void
VirtualSchematikaMachine::_do_eval_if_else_op()
{
// not implemented
assert(false);
}
} /*namespace scm*/
} /*namespace xo*/