wok annotate tree-sitter/description.txt @ rev 25524

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