xo-reader: + exprstate.on_comma_token() [wip, not used]

This commit is contained in:
Roland Conybeare 2024-08-16 22:15:58 -04:00
commit 52d1bd8790
2 changed files with 17 additions and 0 deletions

View file

@ -118,6 +118,19 @@ namespace xo {
this->illegal_input_error(self_name, tk);
}
void
exprstate::on_comma_token(const token_type & tk,
exprstatestack * /*p_stack*/,
rp<Expression> * /*p_emit_expr*/)
{
constexpr bool c_debug_flag = true;
scope log(XO_DEBUG(c_debug_flag));
constexpr const char * self_name = "exprstate::on_comma";
this->illegal_input_error(self_name, tk);
}
void
exprstate::on_semicolon_token(const token_type & tk,
exprstatestack * /*p_stack*/,