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

This commit is contained in:
Roland Conybeare 2026-02-13 17:24:23 -05:00
commit cf9930a54a
8 changed files with 216 additions and 55 deletions

View file

@ -193,6 +193,9 @@ namespace xo {
/** top of parser stack **/
obj<ASyntaxStateMachine> top_ssm() const;
/** current parser result. Value of last return from @ref on_token **/
const ParserResult & result() const;
/** visit parser-owned memory pools; invoke visitor(info) for each **/
void visit_pools(const MemorySizeVisitor & visitor) const;