xo-reader: refactor: rename exprstate.on_colon() -> on_colon_token

This commit is contained in:
Roland Conybeare 2024-08-09 13:12:01 -04:00
commit 1fcac9485b
8 changed files with 21 additions and 9 deletions

View file

@ -504,7 +504,9 @@ namespace xo {
}
void
exprstate::on_colon(exprstatestack * /*p_stack*/) {
exprstate::on_colon_token(const token_type & /*tk*/,
exprstatestack * /*p_stack*/)
{
constexpr bool c_debug_flag = true;
scope log(XO_DEBUG(c_debug_flag));
@ -686,7 +688,7 @@ namespace xo {
return;
case tokentype::tk_colon:
this->on_colon(p_stack);
this->on_colon_token(tk, p_stack);
return;
case tokentype::tk_doublecolon: