xo-reader: dispatch comm token -> exprstate.on_comma_token()
This commit is contained in:
parent
52d1bd8790
commit
8ed090c2e2
1 changed files with 4 additions and 1 deletions
|
|
@ -255,10 +255,13 @@ namespace xo {
|
|||
case tokentype::tk_leftangle:
|
||||
case tokentype::tk_rightangle:
|
||||
case tokentype::tk_dot:
|
||||
case tokentype::tk_comma:
|
||||
assert(false);
|
||||
return;
|
||||
|
||||
case tokentype::tk_comma:
|
||||
this->on_comma_token(tk, p_stack, p_emit_expr);
|
||||
return;
|
||||
|
||||
case tokentype::tk_colon:
|
||||
this->on_colon_token(tk, p_stack);
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue