Tree Sitter
Table of Contents
https://tree-sitter.github.io/tree-sitter/
Tree-sitter is a parser generator tool and an incremental parsing library. It can build a concrete syntax tree for a source file and efficiently update the syntax tree as the source file is edited.
- Its runtime is in C
- Tree-sitter grammars are written in JavaScript, and Tree-sitter uses Node.js to interpret JavaScript files.
- The
tree-sitter
command line is written in Rust
1. Backlinks
- Concrete Syntax Tree (concretesyntaxtree.org)