|
You are here |
backlight.dev | ||
| | | | |
patshaughnessy.net
|
|
| | | | | [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. | |
| | | | |
dusty.phillips.codes
|
|
| | | | | In earlier articles, we implemented a tokenizer and parser to convert Wasm's WAT syntax into an S-expression abstract syntax tree and started to implement a transformer to convert that AST into one more suitable for generating Wasm bytecode. This article continues where we left off, building the last piece of the transformer. This piece needs to represent arbitrary instructions inside a function body, so it's going to take a bit of massaging. | |
| | | | |
typescript-eslint.io
|
|
| | | | | Describing what an AST (Abstract Syntax Tree) is and why it's useful for ESLint and TypeScript tooling. | |
| | | | |
robkendal.co.uk
|
|
| | | There are lots of articles on how to build a Node API server but they're either quite duff or very complex. None of them seem to deal with reading and writing to JSON files. Well let's change that by building our own Node API server using JSON data storage! | ||