wok view tree-sitter/description.txt @ rev 25556

created recipes for nted and nted-lang
author Hans-G?nter Theisgen
date Sat Apr 22 14:54:15 2023 +0100 (14 months ago)
parents
children
line source
1 Tree-sitter is a parser generator tool and
2 an incremental parsing library.
3 It can build a concrete syntax tree for a
4 source file and efficiently update the
5 syntax tree as the source file is edited.
7 Tree-sitter aims to be:
8 * General enough to parse any programming language
9 * Fast enough to parse on every keystroke in a text editor
10 * Robust enough to provide useful results even in the
11 presence of syntax errors
12 * Dependency-free so that the runtime library
13 (which is written in pure C) can be embedded in
14 any application