An incremental parsing system for programming tools https://tree-sitter.github.io
Find a file
2023-08-28 19:26:37 +03:00
.github cicd: exclude hang tests for exotic arches and ASAN 2023-08-28 05:39:57 +03:00
cli chore: add an extra notes for hang tests 2023-08-28 14:16:36 +03:00
docs docs: update injection properties 2023-08-22 01:36:25 -04:00
highlight fix(injections): only allow setting self/parent via #set! 2023-08-22 01:27:00 -04:00
lib doc: Add internal links to backticked text where applicable 2023-08-28 19:26:37 +03:00
script chore: simplify script/generate-bindings 2023-08-21 02:56:14 +03:00
tags fix(safety): improve docs for unsafe C functions 2023-08-19 19:49:29 -04:00
test fix: do not increment current_included_range_index past included_range_count in __do_advance 2023-08-27 14:16:18 +03:00
.gitattributes Exclude huge generated files from git diff output 2023-01-14 08:58:25 +02:00
.gitignore fix: make install should install files with default perms 2023-08-21 06:19:49 +03:00
build.zig Updated build.zig to work with 0.11.0 2023-08-25 19:18:46 +03:00
Cargo.lock feat: generate Rust bindings during build process 2023-08-21 02:56:14 +03:00
Cargo.toml fix: use opt-level 3 by default, and add a size profile 2023-08-14 14:12:45 -04:00
CONTRIBUTING.md Tweak readmes 2020-05-12 16:16:48 -07:00
LICENSE chore: fix years in the license file 2023-04-16 23:39:08 +03:00
Makefile fix: makefile should install only api.h header 2023-08-26 20:51:52 +03:00
Package.swift Added Swift Package Manager entry point. 2023-07-12 11:37:04 -04:00
README.md docs: update badges; fix markdown lint complains 2023-04-16 23:39:08 +03:00
tree-sitter.pc.in Add a simple Makefile-based build system. 2020-04-21 23:49:19 -04:00

tree-sitter

CICD badge 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