DSL Parsing
This page will later cover lexing, syntax analysis, tree construction, and the first error reports returned to the user.
Scope
- Split source text into tokens.
- Build an AST or equivalent representation.
- Keep parser errors actionable and precise.
Next Steps
- Outline the lexer contract.
- Define parser entry points.
- Add parse-tree examples later.