An incremental parsing system for programming tools https://tree-sitter.github.io
Find a file
github-actions[bot] e6c585537f
Merge pull request #2169 from tree-sitter/release/v0.20.8
Release: v0.20.8 - recovered
2023-04-04 09:44:52 +00:00
.github cicd: fix bug in release workflow 2023-04-04 11:44:50 +03:00
cli cargo: specify minimum supported Rust version 2023-04-04 03:42:55 +03:00
docs docs: update Gemfile.lock to fix GH dependabot complains 2023-03-15 12:38:06 +02:00
highlight cargo: specify minimum supported Rust version 2023-04-04 03:42:55 +03:00
lib cargo: specify minimum supported Rust version 2023-04-04 03:42:55 +03:00
script cicd: new workflow 2023-04-04 03:42:16 +03:00
tags cargo: specify minimum supported Rust version 2023-04-04 03:42:55 +03:00
test Update python error corpus to reflect grammar changes 2023-03-13 14:25:24 -07:00
.gitattributes Exclude huge generated files from git diff output 2023-01-14 08:58:25 +02:00
.gitignore Add files needed for using clangd 2022-02-22 09:44:50 -08:00
Cargo.lock 0.20.8 - recovered 2023-04-04 12:15:07 +03:00
Cargo.toml cargo: specify minimum supported Rust version 2023-04-04 03:42:55 +03:00
CONTRIBUTING.md Tweak readmes 2020-05-12 16:16:48 -07:00
LICENSE chore(cli): Add the LICENSE file to the tree-sitter-cli npm package 2021-08-22 03:13:46 +03:00
Makefile Update Makefile VERSION to 0.20.9 from lib/Cargo.toml 2023-01-08 04:39:46 +02:00
README.md cicd: update status badge 2023-04-04 03:42:58 +03:00
tree-sitter.pc.in Add a simple Makefile-based build system. 2020-04-21 23:49:19 -04:00

tree-sitter

CICD DOI

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. Tree-sitter aims to be:

  • General enough to parse any programming language
  • Fast enough to parse on every keystroke in a text editor
  • Robust enough to provide useful results even in the presence of syntax errors
  • Dependency-free so that the runtime library (which is written in pure C) can be embedded in any application