Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
chidiw
on June 22, 2022
|
parent
|
context
|
favorite
| on:
Crafting Interpreters: A Review
There's also Thorsten Ball's Writing an Interpreter in Go[1] and Writing a Compiler in Go[2].
[1]
https://interpreterbook.com/
[2]
https://compilerbook.com/
zvmaz
on June 22, 2022
|
next
[–]
Excellent book indeed. Note that Ball's interpreter uses Pratt parsing, which doesn't require you to delve into the theory of formal languages.
shadowofneptune
on June 23, 2022
|
parent
|
next
[–]
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.
munificent
on June 22, 2022
|
prev
[–]
Yes! Thorsten's books are great!
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
[1] https://interpreterbook.com/
[2] https://compilerbook.com/