xo-expression2: + DIfElseExpr + utest
This commit is contained in:
parent
3bae8cbb57
commit
e243264511
18 changed files with 1047 additions and 6 deletions
|
|
@ -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*/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue