xo-reader2: DefineSsm handles colon token after lhs var

example:  def foo : f64 = 3.14;
This commit is contained in:
Roland Conybeare 2026-01-20 22:22:45 -05:00
commit 3cca1b8255
5 changed files with 35 additions and 3 deletions

View file

@ -105,6 +105,9 @@ namespace xo {
/** operate state machine for incoming if-token @p tk **/
void on_if_token(const Token & tk);
/** operate state machine for incoming colon-token @p tk **/
void on_colon_token(const Token & tk);
///@}
/** @defgroup scm-parserstatemachine-error-entrypoints error entry points **/