The goal of parsing is to read some input. break it down by some grammar, and analyze the result.
Index
- top-down vs bottom-up parsing
- recursive descent parsers
- LL and LR parsing
- parser combinator
- operator precedence parser
- parser error recovery
- pull parser vs push parser