xo-expression2: scaffold variable eval in VSM
This commit is contained in:
parent
c4f31592fc
commit
6cd861f47e
3 changed files with 19 additions and 0 deletions
|
|
@ -45,6 +45,9 @@ namespace xo {
|
|||
case exprtype::constant:
|
||||
_do_eval_constant_op();
|
||||
break;
|
||||
case exprtype::variable:
|
||||
_do_eval_variable_op();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -58,6 +61,12 @@ namespace xo {
|
|||
this->pc_ = this->cont_;
|
||||
}
|
||||
|
||||
void
|
||||
VirtualSchematikaMachine::_do_eval_variable_op()
|
||||
{
|
||||
// not implemented
|
||||
assert(false);
|
||||
}
|
||||
} /*namespace scm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue