Expand description
The lexer - converts raw source text into a flat Vec<Token>.
ยงPipeline position
source -> Lexer -> [Token] -> Parser -> [Statement] -> Checker -> EvaluatorยงModule layout
tokenizer- the [Tokenizer] struct and its main scanning looptokentypes- the [Token] and [TokenType] definitionsscanner- top-level scan driver called by the pipelinetypes- sub-scanners for each literal kind (string, char, number, identifier)utils- shared cursor helpers used across the sub-scanners