advance method
Implementation
Char advance() => _nextCharOrElse(
withNextChar: (Char c) => c,
orElse: () => TokenType.eof().value,
updateState: true,
);
Char advance() => _nextCharOrElse(
withNextChar: (Char c) => c,
orElse: () => TokenType.eof().value,
updateState: true,
);