xo-expression2: + DApplyExpr [WIP]. Builds, not used or tested
This commit is contained in:
parent
8b63fbaaa2
commit
c0978f5098
7 changed files with 181 additions and 1 deletions
|
|
@ -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*/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue