xo-reader2: + op>= support

This commit is contained in:
Roland Conybeare 2026-03-12 23:41:21 -05:00
commit 4e7b58e3c9
3 changed files with 3 additions and 3 deletions

View file

@ -95,7 +95,7 @@ namespace xo {
tk_cmple,
/** great-equal @c '>=' **/
tk_greatequal,
tk_cmpge,
/** dot @c '.' **/
tk_dot,

View file

@ -500,7 +500,7 @@ namespace xo {
log && log("rightangle or greatequal token");
if (*(ix + 1) == '=') {
tk_type = tokentype::tk_greatequal;
tk_type = tokentype::tk_cmpge;
++ix;
++ix;
} else {

View file

@ -30,7 +30,7 @@ namespace xo {
CASE(tk_rightangle);
CASE(tk_cmple);
CASE(tk_greatequal);
CASE(tk_cmpge);
CASE(tk_dot);
CASE(tk_comma);
CASE(tk_colon);