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

@ -107,6 +107,10 @@ namespace xo {
virtual void on_symbol_token(const token_type & tk,
exprstatestack * p_stack,
rp<Expression> * p_emit_expr);
/** handle incoming ',' token **/
virtual void on_comma_token(const token_type & tk,
exprstatestack * p_stack,
rp<Expression> * p_emit_expr);
/** handle incoming ':' token **/
virtual void on_colon_token(const token_type & tk,
exprstatestack * p_stack);