An incremental parsing system for programming tools
- Rust 64.2%
- C 24.3%
- TypeScript 6.6%
- C++ 1.2%
- JavaScript 0.9%
- Other 2.6%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
|
Some checks failed
CI / checks (push) Has been cancelled
CI / check-undefined-behaviour (push) Has been cancelled
CI / illumos-x64 (x86_64-unknown-illumos) (ubuntu-24.04) (push) Has been cancelled
CI / linux-powerpc64 (powerpc64-unknown-linux-gnu) (ubuntu-24.04) (push) Has been cancelled
CI / linux-x86 (i686-unknown-linux-gnu) (ubuntu-24.04) (push) Has been cancelled
CI / wasm32 (wasm32-unknown-unknown) (ubuntu-24.04) (push) Has been cancelled
CI / linux-arm (armv7-unknown-linux-gnueabihf) (ubuntu-24.04-arm) (push) Has been cancelled
CI / macos-arm64 (aarch64-apple-darwin) (macos-15) (push) Has been cancelled
CI / macos-x64 (x86_64-apple-darwin) (macos-15-intel) (push) Has been cancelled
CI / linux-x64 (x86_64-unknown-linux-gnu) (ubuntu-24.04) (push) Has been cancelled
CI / linux-arm64 (aarch64-unknown-linux-gnu) (ubuntu-24.04-arm) (push) Has been cancelled
CI / windows-arm64 (aarch64-pc-windows-msvc) (windows-11-arm) (push) Has been cancelled
CI / windows-x64 (x86_64-pc-windows-msvc) (windows-2025) (push) Has been cancelled
CI / windows-x86 (i686-pc-windows-msvc) (windows-2025) (push) Has been cancelled
CI / check (push) Has been cancelled
CI / sanitize (push) Has been cancelled
CI / build (push) Has been cancelled
CI / check-wasm-stdlib (push) Has been cancelled
|
||
| .cargo | ||
| .github | ||
| .zed | ||
| crates | ||
| docs | ||
| lib | ||
| test/fixtures | ||
| .dockerignore | ||
| .editorconfig | ||
| .envrc | ||
| .gitattributes | ||
| .gitignore | ||
| .taplo.toml | ||
| build.zig | ||
| build.zig.zon | ||
| Cargo.lock | ||
| Cargo.toml | ||
| CMakeLists.txt | ||
| CONTRIBUTING.md | ||
| Dockerfile | ||
| flake.lock | ||
| flake.nix | ||
| FUNDING.json | ||
| LICENSE | ||
| Makefile | ||
| Package.swift | ||
| README.md | ||
tree-sitter
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