Explore >> Select a destination


You are here

javascript.crockford.com
| | www.engr.mun.ca
1.7 parsecs away

Travel
| | [AI summary] The text provides a detailed explanation of the precedence climbing algorithm, a method for parsing expressions with operator precedence and associativity. It outlines the algorithm's development, its relation to recursive descent parsing and Pratt parsing, and its implementation in various programming languages and compilers. The text also includes historical context, references to key papers and authors, and acknowledgments for contributions to the algorithm's development.
| | cronokirby.com
1.7 parsecs away

Travel
| | - Read more: https://cronokirby.com/posts/2020/12/haskell-in-haskell-3/
| | craftinginterpreters.com
1.0 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.
| | rdrr.io
26.7 parsecs away

Travel
| [AI summary] This document explains the use of regular expressions in R, covering both extended and Perl-like regular expressions with their syntax, metacharacters, and applications.