xo-reader: streamline exprseq_xs.start() using psm

This commit is contained in:
Roland Conybeare 2024-08-19 16:19:23 -04:00
commit c8f166acc8
3 changed files with 8 additions and 4 deletions

View file

@ -15,9 +15,9 @@ namespace xo {
}
void
exprseq_xs::start(exprstatestack * p_stack)
exprseq_xs::start(parserstatemachine * p_psm)
{
p_stack->push_exprstate(exprseq_xs::make());
p_psm->push_exprstate(exprseq_xs::make());
}
exprseq_xs::exprseq_xs()