xo-reader2: + on_semicolon_token() method in SyntaxStateMachine

This commit is contained in:
Roland Conybeare 2026-01-22 15:32:12 -05:00
commit 0163c16771
32 changed files with 166 additions and 1 deletions

View file

@ -140,6 +140,15 @@ namespace xo {
this->get_expect_str());
}
void
DExpectSymbolSsm::on_semicolon_token(const Token & tk,
ParserStateMachine * p_psm)
{
p_psm->illegal_input_on_token("DExpectSymbolSsm::on_semicolon_token",
tk,
this->get_expect_str());
}
bool
DExpectSymbolSsm::pretty(const ppindentinfo & ppii) const
{