xo-reader: + exprstate.on_comma_token() [wip, not used]
This commit is contained in:
parent
fda9889207
commit
52d1bd8790
2 changed files with 17 additions and 0 deletions
|
|
@ -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*/,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue