- TokenHandler right now implements a stub (init, constructor, reset)
- Most transformers have a handler for
- All tokens (onAny)
- Newline token (onNewline)
- EOF token (onEOF)
- Specific token types ← this would need some generic handler name / signature (onQuote, onListItem, etc.)
- Flesh out TokenHandler abstract class based on the above
Not only is this going to be good documentation, this also makes the porting simpler and more performant