xo-reader: bugfix: call on_{left,right}_brace_token()
This commit is contained in:
parent
ec1e45d2ed
commit
76f292d40d
1 changed files with 8 additions and 0 deletions
|
|
@ -308,8 +308,16 @@ namespace xo {
|
|||
|
||||
case tokentype::tk_leftbracket:
|
||||
case tokentype::tk_rightbracket:
|
||||
assert(false);
|
||||
break;
|
||||
|
||||
case tokentype::tk_leftbrace:
|
||||
this->on_leftbrace_token(tk, p_psm);
|
||||
return;
|
||||
|
||||
case tokentype::tk_rightbrace:
|
||||
this->on_rightbrace_token(tk, p_psm);
|
||||
return;
|
||||
|
||||
case tokentype::tk_leftangle:
|
||||
case tokentype::tk_rightangle:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue