xo-reader2 stack: handle comparison expression (x == y)

This commit is contained in:
Roland Conybeare 2026-02-13 17:24:23 -05:00
commit 0baa458c5b

View file

@ -129,6 +129,9 @@ namespace xo {
/** token for @c "/" **/
static Token slash_token() { return Token(tokentype::tk_slash); }
/** token for @c "==" **/
static Token cmpeq_token() { return Token(tokentype::tk_cmpeq); }
/** token representing keyword @c type **/
static Token type() { return Token(tokentype::tk_type); }
/** token representing keyword @c def **/