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

Up lynis (3.1.1), ncurses-examples (20211021)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 16 10:43:04 2024 +0000 (4 weeks 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