/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.engr.mun.ca
| | www.oilshell.org
2.6 parsecs away

Travel
| | [AI summary] The blog post discusses Pratt parsing algorithms, their evolution, and related tutorials across various programming languages, highlighting their applications and implementations.
| | eli.thegreenplace.net
2.2 parsecs away

Travel
| | [AI summary] A technical tutorial explaining the Top-Down Operator Precedence (Pratt) parsing algorithm for handling expression grammars.
| | craftinginterpreters.com
2.6 parsecs away

Travel
| | [AI summary] The text discusses the implementation of a compiler for a simple programming language, focusing on parsing and bytecode generation. It covers topics such as recursive descent parsing, Pratt parsing, and the use of a parser table to handle operator precedence. The text also includes code snippets for the parser and compiler functions, as well as instructions for debugging and testing the compiler. The author emphasizes the importance of error handling and the use of a debug flag to enable the printing of generated bytecode.
| | patshaughnessy.net
21.8 parsecs away

Travel
| [AI summary] The article explains how the Crystal compiler parses code by breaking it down into tokens and constructing an abstract syntax tree (AST), highlighting the recursive process and the challenges of reading code one token at a time.