Y
Hacker News
new
|
ask
|
show
|
jobs
by
zvmaz
1463 days ago
Excellent book indeed. Note that Ball's interpreter uses Pratt parsing, which doesn't require you to delve into the theory of formal languages.
1 comments
shadowofneptune
1462 days ago
I've found Pratt parsing meshes rather well with formal grammars. Anything that is better described by an operator precedence table rather than BNF should be handled by the Pratt parser, rest can be done with recursive decent.
link