• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H21-Nov-2021-150124

cli/H21-Nov-2021-28,07824,351

docs/H03-May-2022-2,7882,116

highlight/H21-Nov-2021-1,5691,288

lib/H21-Nov-2021-19,53414,260

script/H21-Nov-2021-1,4541,134

tags/H21-Nov-2021-1,101940

test/H21-Nov-2021-1,9791,669

.appveyor.ymlH A D21-Nov-20211.3 KiB5142

.gitattributesH A D21-Nov-202182 32

.gitignoreH A D21-Nov-2021247 2721

CONTRIBUTING.mdH A D21-Nov-20215 KiB14696

Cargo.lockH A D21-Nov-202124.7 KiB1,007894

Cargo.tomlH A D21-Nov-202149 75

LICENSEH A D21-Nov-20211.1 KiB2217

MakefileH A D21-Nov-20212.3 KiB7253

README.mdH A D21-Nov-20211.1 KiB2014

tree-sitter.pc.inH A D21-Nov-2021251 119

README.md

1# tree-sitter
2
3[![Build Status](https://github.com/tree-sitter/tree-sitter/workflows/CI/badge.svg)](https://github.com/tree-sitter/tree-sitter/actions)
4[![Build status](https://ci.appveyor.com/api/projects/status/vtmbd6i92e97l55w/branch/master?svg=true)](https://ci.appveyor.com/project/maxbrunsfeld/tree-sitter/branch/master)
5[![DOI](https://zenodo.org/badge/14164618.svg)](https://zenodo.org/badge/latestdoi/14164618)
6
7Tree-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. Tree-sitter aims to be:
8
9- **General** enough to parse any programming language
10- **Fast** enough to parse on every keystroke in a text editor
11- **Robust** enough to provide useful results even in the presence of syntax errors
12- **Dependency-free** so that the runtime library (which is written in pure C) can be embedded in any application
13
14## Links
15
16- [Documentation](https://tree-sitter.github.io)
17- [Rust binding](lib/binding_rust/README.md)
18- [WASM binding](lib/binding_web/README.md)
19- [Command-line interface](cli/README.md)
20