xo-expression2: scaffold variable eval in VSM

This commit is contained in:
Roland Conybeare 2026-01-17 01:11:50 -05:00
commit 6cd861f47e
3 changed files with 19 additions and 0 deletions

View file

@ -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*/