Zig API Reference
Zig API Reference v1.15.7
Section titled “Zig API Reference v1.15.7”Functions
Section titled “Functions”detect_language_from_extension()
Section titled “detect_language_from_extension()”Detect language name from a file extension (without leading dot).
Returns null for unrecognized extensions. The match is case-insensitive.
Signature:
pub fn detect_language_from_extension(ext: [:0]const u8) ?[:0]const u8Example:
const result = detect_language_from_extension("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
ext |
\[:0\]const u8 |
Yes | The ext |
Returns: ?[:0]const u8
detect_language_from_path()
Section titled “detect_language_from_path()”Detect language name from a file path.
Extracts the file extension and looks it up. Returns null if the
path has no extension or the extension is not recognized.
Signature:
pub fn detect_language_from_path(path: [:0]const u8) ?[:0]const u8Example:
const result = detect_language_from_path("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
path |
\[:0\]const u8 |
Yes | Path to the file |
Returns: ?[:0]const u8
detect_language_from_content()
Section titled “detect_language_from_content()”Detect language name from file content using the shebang line (#!).
Inspects only the first line of content. If it begins with #!, the
interpreter name is extracted and mapped to a language name.
Handles common patterns:
#!/usr/bin/env python3→"python"#!/bin/bash→"bash"#!/usr/bin/env node→"javascript"
The -S flag accepted by some env implementations is skipped automatically.
Version suffixes (e.g. python3.11, ruby3.2) are stripped before matching.
A leading UTF-8 BOM (U+FEFF) is skipped before the #! check, so a
BOM-prefixed script is still detected by its shebang.
Returns null when content does not start with #! (after stripping a
leading BOM), the shebang is malformed, or the interpreter is not recognised.
Signature:
pub fn detect_language_from_content(content: [:0]const u8) ?[:0]const u8Example:
const result = detect_language_from_content("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
content |
\[:0\]const u8 |
Yes | The content to process |
Returns: ?[:0]const u8
get_highlights_query()
Section titled “get_highlights_query()”Get the highlights query for a language, if bundled.
Returns the contents of highlights.scm as a static string, or null
if no highlights query is bundled for this language.
Signature:
pub fn get_highlights_query(language: [:0]const u8) ?[:0]const u8Example:
const result = get_highlights_query("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
language |
\[:0\]const u8 |
Yes | The language |
Returns: ?[:0]const u8
get_injections_query()
Section titled “get_injections_query()”Get the injections query for a language, if bundled.
Returns the contents of injections.scm as a static string, or null
if no injections query is bundled for this language.
Signature:
pub fn get_injections_query(language: [:0]const u8) ?[:0]const u8Example:
const result = get_injections_query("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
language |
\[:0\]const u8 |
Yes | The language |
Returns: ?[:0]const u8
get_locals_query()
Section titled “get_locals_query()”Get the locals query for a language, if bundled.
Returns the contents of locals.scm as a static string, or null
if no locals query is bundled for this language.
Signature:
pub fn get_locals_query(language: [:0]const u8) ?[:0]const u8Example:
const result = get_locals_query("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
language |
\[:0\]const u8 |
Yes | The language |
Returns: ?[:0]const u8
get_tags_query()
Section titled “get_tags_query()”Get the tags query for a language, if bundled.
Returns the contents of tags.scm as a static string, or null
if no tags query is bundled for this language.
Signature:
pub fn get_tags_query(language: [:0]const u8) ?[:0]const u8Example:
const result = get_tags_query("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
language |
\[:0\]const u8 |
Yes | The language |
Returns: ?[:0]const u8
get_indents_query()
Section titled “get_indents_query()”Get the indents query for a language, if bundled.
Returns the contents of indents.scm (used for auto-indentation) as a static
string, or null if no indents query is bundled for this language.
Signature:
pub fn get_indents_query(language: [:0]const u8) ?[:0]const u8Example:
const result = get_indents_query("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
language |
\[:0\]const u8 |
Yes | The language |
Returns: ?[:0]const u8
get_folds_query()
Section titled “get_folds_query()”Get the folds query for a language, if bundled.
Returns the contents of folds.scm (used for code folding) as a static string,
or null if no folds query is bundled for this language.
Signature:
pub fn get_folds_query(language: [:0]const u8) ?[:0]const u8Example:
const result = get_folds_query("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
language |
\[:0\]const u8 |
Yes | The language |
Returns: ?[:0]const u8
get_language()
Section titled “get_language()”Get a tree-sitter Language by name using the global registry.
Resolves language aliases (e.g., "shell" maps to "bash").
When the download feature is enabled (default), automatically downloads
the parser from GitHub releases if not found locally.
Errors:
Returns Error.LanguageNotFound if the language is not recognized,
or Error.Download if auto-download fails.
Signature:
pub fn get_language(name: [:0]const u8) Error!LanguageExample:
const result = try get_language("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
Yes | The name |
Returns: Language
Errors: Throws Error.
get_parser()
Section titled “get_parser()”Get a Parser pre-configured for the given language.
This is a convenience function that calls get_language and configures
a new parser in one step.
Errors:
Returns Error.LanguageNotFound if the language is not recognized, or
Error.ParserSetup if the language cannot be applied to the parser.
Signature:
pub fn get_parser(name: [:0]const u8) Error!ParserExample:
const result = try get_parser("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
Yes | The name |
Returns: Parser
Errors: Throws Error.
detect_language()
Section titled “detect_language()”Detect language name from a file path or extension.
This compatibility alias matches the pre-Alef Python binding API.
Signature:
pub fn detect_language(path: [:0]const u8) ?[:0]const u8Example:
const result = detect_language("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
path |
\[:0\]const u8 |
Yes | Path to the file |
Returns: ?[:0]const u8
available_languages()
Section titled “available_languages()”List all available language names (sorted, deduplicated, includes aliases).
Returns names of both statically compiled and dynamically loadable languages, plus any configured aliases.
Signature:
pub fn available_languages() []const [:0]const u8Example:
const result = available_languages();Returns: []const [:0]const u8
has_language()
Section titled “has_language()”Check if a language is available by name or alias.
Returns true if the language can be loaded (statically compiled,
dynamically available, or a known alias for one of these).
Signature:
pub fn has_language(name: [:0]const u8) boolExample:
const result = has_language("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
Yes | The name |
Returns: bool
language_count()
Section titled “language_count()”Return the number of available languages.
Includes statically compiled languages, dynamically loadable languages, and aliases.
Signature:
pub fn language_count() u64Example:
const result = language_count();Returns: u64
process()
Section titled “process()”Process source code and extract file intelligence using the global registry.
Parses the source with tree-sitter and extracts metrics, structure, imports,
exports, comments, docstrings, symbols, diagnostics, and/or chunks based on
the flags set in ProcessConfig.
Errors:
Returns Error.InvalidRange if the config carries a zero-valued limit or
the source exceeds ProcessConfig.max_source_bytes,
Error.ParseTimeout if the parse exceeds
ProcessConfig.parse_timeout_ms, Error.LanguageNotFound if the
language is unknown, or Error.ParseFailed if parsing yields no tree.
Signature:
pub fn process(source: [:0]const u8, config: ProcessConfig) Error!ProcessResultExample:
const result = try process("value", .{});Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
source |
\[:0\]const u8 |
Yes | The source |
config |
ProcessConfig |
Yes | The configuration options |
Returns: ProcessResult
Errors: Throws Error.
init()
Section titled “init()”Initialize the language pack with the given configuration.
Applies any custom cache directory, then downloads all languages and groups specified in the config. This is the recommended entry point when you want to pre-warm the cache before use.
Errors:
Returns an error if configuration cannot be applied or if downloads fail.
Signature:
pub fn init(config: PackConfig) Error!voidExample:
try init(.{});Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
config |
PackConfig |
Yes | The configuration options |
Returns: No return value.
Errors: Throws Error.
configure()
Section titled “configure()”Apply download configuration without downloading anything.
Use this to set a custom cache directory before the first call to
get_language or any download function. Changing the cache dir
after languages have been registered has no effect on already-loaded
languages.
PackConfig.cache_dir is a BASE directory, not the final libs path: this
crate appends tree-sitter-language-pack/v{version}/libs to it, the same
suffix applied to the platform default cache directory. In the example below,
files actually land under /tmp/my-parsers/tree-sitter-language-pack/v{version}/libs/,
never directly in /tmp/my-parsers/. Call cache_dir to read back the
resolved, fully-suffixed path.
Errors:
Returns an error if the lock cannot be acquired.
Signature:
pub fn configure(config: PackConfig) Error!voidExample:
try configure(.{});Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
config |
PackConfig |
Yes | The configuration options |
Returns: No return value.
Errors: Throws Error.
download()
Section titled “download()”Download specific languages to the local cache.
Returns the number of distinct languages available after the call. Already compiled or cached languages are included in the count.
Aliases are resolved before counting, so ["shell", "bash"] names one
language and returns 1.
Errors:
Returns an error if any language is not available in the manifest or if the download fails.
Signature:
pub fn download(names: []const [:0]const u8) Error!u64Example:
const result = try download(&[_]u8{});Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
names |
\[\]const \[:0\]const u8 |
Yes | The names |
Returns: u64
Errors: Throws Error.
prefetch()
Section titled “prefetch()”Prefetch grammars: download any not already loadable from disk, then load every requested language into the process registry so a subsequent hot loop only parses.
Unlike download(), this does not trust in-memory availability — it downloads
whenever a grammar is not actually loadable from disk (fixing the case where a
known-but-not-downloaded grammar is reported present), then resolves and caches
every requested language. Call it once, up front, before a parallel workload.
Errors:
Returns Error.Download if a required grammar cannot be fetched, or
Error.LanguageNotFound if a requested name is unknown.
Signature:
pub fn prefetch(languages: []const [:0]const u8) Error!voidExample:
try prefetch(&[_]u8{});Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
languages |
\[\]const \[:0\]const u8 |
Yes | The languages |
Returns: No return value.
Errors: Throws Error.
download_all()
Section titled “download_all()”Download all available languages from the remote manifest.
Downloads the platform bundle and extracts every library it contains. Languages that appear in the manifest but are absent from the bundle (e.g. grammars that failed to compile at release time) are silently skipped — they are not treated as an error.
Returns the total number of languages now available (statically compiled plus downloaded and cached).
Errors:
Returns an error if the manifest cannot be fetched or the bundle download fails.
Signature:
pub fn download_all() Error!u64Example:
const result = try download_all();Returns: u64
Errors: Throws Error.
download_group()
Section titled “download_group()”Download every language in a named group.
Groups are defined by the remote manifest, not by this library, and let you
ensure a curated set of related grammars in one call instead of listing each
name to download(). Already-cached languages are skipped.
Call manifest_groups to discover the group names the manifest actually
defines. The published manifest currently defines a single group, "all";
earlier revisions of this documentation advertised "web", "data", and
"systems", which the manifest has never contained, so every call following
that example failed. Do not hardcode a group name without checking.
Returns the total number of languages now available (statically compiled plus downloaded and cached).
Errors:
Returns Error.Download if the manifest cannot be fetched, if the group
is unknown — the message lists the groups the manifest defines — or if any
constituent language fails to download.
Signature:
pub fn download_group(name: [:0]const u8) Error!u64Example:
const result = try download_group("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
Yes | The name |
Returns: u64
Errors: Throws Error.
manifest_languages()
Section titled “manifest_languages()”Return all language names available in the remote manifest (371).
Fetches (and caches) the remote manifest to discover the full list of
downloadable languages. Use downloaded_languages to list what is
already cached locally.
Errors:
Returns an error if the manifest cannot be fetched.
Signature:
pub fn manifest_languages() Error![]const [:0]const u8Example:
const result = try manifest_languages();Returns: []const [:0]const u8
Errors: Throws Error.
manifest_groups()
Section titled “manifest_groups()”Return the names of every language group the remote manifest defines, sorted.
Group names are manifest data, not a compile-time constant of this library, so
this is the only reliable way to learn what download_group and
PackConfig.groups accept. The published manifest currently defines just
"all".
Errors:
Returns Error.Download if the manifest cannot be fetched.
Signature:
pub fn manifest_groups() Error![]const [:0]const u8Example:
const result = try manifest_groups();Returns: []const [:0]const u8
Errors: Throws Error.
downloaded_languages()
Section titled “downloaded_languages()”Return languages that are already downloaded and cached locally.
Does not perform any network requests. Returns an empty list if the cache directory does not exist or cannot be read.
Signature:
pub fn downloaded_languages() []const [:0]const u8Example:
const result = downloaded_languages();Returns: []const [:0]const u8
clean_cache()
Section titled “clean_cache()”Delete all cached parser shared libraries.
Resets the cache registration so the next call to get_language or
a download function will re-register the (now empty) cache directory.
Errors:
Returns an error if the cache directory cannot be removed.
Signature:
pub fn clean_cache() Error!voidExample:
try clean_cache();Returns: No return value.
Errors: Throws Error.
cache_dir()
Section titled “cache_dir()”Return the effective cache directory path.
This is {base}/tree-sitter-language-pack/v{version}/libs/, where {base} is
either the custom BASE directory set via configure / init
(PackConfig.cache_dir) or the platform default cache directory — both are
suffixed identically, so a custom cache_dir is never used as the final libs
path. The default resolves to ~/.cache/tree-sitter-language-pack/v{version}/libs/
on a typical Unix system.
Errors:
Returns an error if no cache directory can be resolved: version is somehow
invalid, or (with no custom cache_dir configured) the platform reports none
and TREE_SITTER_LANGUAGE_PACK_CACHE_DIR is unset. This crate no longer falls
back to the temporary directory for the latter case — see #101 H2.
Signature:
pub fn cache_dir() Error![:0]const u8Example:
const result = try cache_dir();Returns: [:0]const u8
Errors: Throws Error.
ByteRange
Section titled “ByteRange”A byte range — start (inclusive) to end (exclusive).
| Field | Type | Default | Description |
|---|---|---|---|
start |
u64 |
— | Inclusive start byte offset. |
end |
u64 |
— | Exclusive end byte offset. |
ChunkContext
Section titled “ChunkContext”Metadata for a single chunk of source code.
| Field | Type | Default | Description |
|---|---|---|---|
language |
\[:0\]const u8 |
— | Language name used to parse this chunk. |
chunk_index |
u64 |
— | Zero-indexed position of this chunk within the file’s chunk list. |
total_chunks |
u64 |
— | Total number of chunks the file was split into. |
node_types |
\[\]const \[:0\]const u8 |
[] |
Tree-sitter node kinds that appear at the top level of this chunk. |
context_path |
\[\]const \[:0\]const u8 |
[] |
Hierarchical path of enclosing structural items (e.g., ["MyClass", "my_method"]). |
symbols_defined |
\[\]const \[:0\]const u8 |
[] |
Names of symbols defined within this chunk. |
comments |
\[\]const CommentInfo |
[] |
Comments contained within this chunk. |
docstrings |
\[\]const DocstringInfo |
[] |
Docstrings contained within this chunk. Populated only for Python — the same language for which ProcessResult.docstrings is populated, and by the same classifier. Always empty for every other language. |
has_error_nodes |
bool |
— | Whether this chunk contains any tree-sitter error nodes. |
CodeChunk
Section titled “CodeChunk”A chunk of source code with rich metadata.
| Field | Type | Default | Description |
|---|---|---|---|
content |
\[:0\]const u8 |
— | The raw source text of this chunk. |
start_byte |
u64 |
— | Inclusive start byte offset of this chunk in the original source. |
end_byte |
u64 |
— | Exclusive end byte offset of this chunk in the original source. |
start_line |
u64 |
— | Zero-indexed start line of this chunk. |
end_line |
u64 |
— | Zero-indexed row of the last byte actually included in this chunk (inclusive — the same row a Span.end_line would report for a node ending on that byte). Computed the same way regardless of whether the source has a trailing newline: it is always the row of end_byte - 1, never a phantom row past the file’s real content. |
metadata |
ChunkContext |
— | Contextual metadata about this chunk. |
CommentInfo
Section titled “CommentInfo”A comment extracted from source code.
| Field | Type | Default | Description |
|---|---|---|---|
text |
\[:0\]const u8 |
— | The raw text content of the comment. |
kind |
CommentKind |
CommentKind.line |
The kind of comment (line, block, or doc). |
span |
Span |
— | Source span covering the comment. |
associated_node |
\[:0\]const u8? |
null |
Name of the syntax node this comment is directly associated with. |
DataAttribute
Section titled “DataAttribute”An XML-style attribute attached to an Element node.
Populated only for DataNodeKind.Element; always empty for KeyValue and
Sequence nodes.
| Field | Type | Default | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
— | Attribute name (e.g. "class", "href"). |
value |
\[:0\]const u8 |
— | Attribute value as a raw string (quotes stripped). |
span |
Span |
— | Source span covering the entire name="value" attribute token. |
DataNode
Section titled “DataNode”A node in the hierarchical data tree produced by data-format extraction.
When ProcessConfig.data_extraction is
true, ProcessResult.data is populated with a root DataNode whose
children mirror the structure of the parsed file.
The kind field determines which other fields are meaningful:
kind |
key |
value |
attributes |
children |
|---|---|---|---|---|
KeyValue |
key / mapping key / index | leaf value | empty | nested map |
Element |
XML tag name | text content | XML attrs | child elements |
Sequence |
positional index ("0") |
leaf value | empty | sub-items |
| Field | Type | Default | Description |
|---|---|---|---|
kind |
DataNodeKind |
DataNodeKind.key_value |
Whether this node is a key/value pair, XML element, or sequence item. |
key |
\[:0\]const u8? |
null |
Key, attribute name, tag name, or positional index ("0", "1", …). null at the document root. |
value |
\[:0\]const u8? |
null |
Leaf scalar value, if any. null for containers (objects, arrays, XML elements with child elements). |
attributes |
\[\]const DataAttribute |
[] |
Attributes on element-shape nodes (XML STag attributes). Empty for all other kinds. |
children |
\[\]const DataNode |
[] |
Children for nested containers and XML element bodies. |
span |
Span |
— | Source span covering this node in the original source file. |
Diagnostic
Section titled “Diagnostic”A diagnostic (syntax error, missing node, etc.) from parsing.
| Field | Type | Default | Description |
|---|---|---|---|
message |
\[:0\]const u8 |
— | Human-readable description of the diagnostic. |
severity |
DiagnosticSeverity |
DiagnosticSeverity.error |
Severity of the diagnostic. |
span |
Span |
— | Source span where the diagnostic was detected. |
DocSection
Section titled “DocSection”A section within a docstring (e.g., Args, Returns, Raises).
| Field | Type | Default | Description |
|---|---|---|---|
kind |
\[:0\]const u8 |
— | Section kind (e.g., "args", "returns", "raises"). |
name |
\[:0\]const u8? |
null |
Parameter or return value name, if applicable. |
description |
\[:0\]const u8 |
— | Description text for this section. |
DocstringInfo
Section titled “DocstringInfo”A docstring extracted from source code.
| Field | Type | Default | Description |
|---|---|---|---|
text |
\[:0\]const u8 |
— | The raw text of the docstring. |
format |
DocstringFormat |
DocstringFormat.python_triple_quote |
The docstring format (Python, JSDoc, Rustdoc, etc.). |
span |
Span |
— | Source span covering the docstring. |
associated_item |
\[:0\]const u8? |
null |
Name of the item this docstring documents. |
parsed_sections |
\[\]const DocSection |
[] |
Parsed sections of the docstring (Args, Returns, Raises, etc.). Reserved: not yet populated. Always empty, for every DocstringFormat. Parsing a docstring body into sections requires implementing each convention’s own layout (Google/NumPy/reST style for Python, @param/@returns for JSDoc/Javadoc, and so on), which no extractor here does yet. The field is kept rather than removed so a consumer’s deserializer does not need updating once it is. |
DownloadManager
Section titled “DownloadManager”Manages downloading and caching of pre-built parser shared libraries.
Methods
Section titled “Methods”Create a new download manager for the given version.
Errors:
Returns Error.Download if version is empty, contains a path
separator or .., or contains a character outside [A-Za-z0-9.+-] — see
validate_version — or if no cache directory can be resolved (see
Self.default_cache_dir).
Signature:
pub fn new_download_manager(version: [:0]const u8) Error!DownloadManagerExample:
const result = try new_download_manager("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
version |
\[:0\]const u8 |
Yes | The version |
Returns: DownloadManager
Errors: Throws Error.
installed_languages()
Section titled “installed_languages()”List languages that are already downloaded and cached.
Derived from the on-disk cache filenames, one canonical name per file, plus
every alias that resolves to it (via aliases_for) — so
this list agrees with the user-facing
LanguageRegistry.available_languages
about which names are “available”; both report "shell" once bash is
cached, for example. A previous version reported canonical names only,
which could never agree with available_languages(). See #107.
Returns an empty list if the cache directory does not exist. If it exists
but cannot be read (e.g. a permission error), also returns an empty list —
changing this to a Result would be a breaking change across every
language binding — but logs a tracing.warn! so the failure is not
silently indistinguishable from “nothing installed”.
Signature:
pub fn installed_languages(self: *const DownloadManager) []const [:0]const u8Example:
const result = instance.installed_languages();Returns: []const [:0]const u8
download_all_best_effort()
Section titled “download_all_best_effort()”Download the platform bundle and extract every library file it contains.
Unlike Self.ensure_languages, this does not check the manifest language list
against archive contents — it simply extracts all .so/.dylib/.dll files
from the bundle. Languages in the manifest that are missing from the archive
are silently ignored rather than returning an error.
Returns the number of library files extracted (including those already cached).
Signature:
pub fn download_all_best_effort(self: *const DownloadManager) Error!u64Example:
const result = try instance.download_all_best_effort();Returns: u64
Errors: Throws Error.
clean_cache()
Section titled “clean_cache()”Remove all cached parser libraries.
Acquires the cross-process lock so clean_cache cannot race a concurrent
downloader (avoids Windows sharing-violation errors against an in-flight
bundle write). The .download.lock file itself is not removed — it is
permanent infrastructure; deleting it could allow a concurrent process that
already opened the file to continue holding a stale lock handle while a new
process opens a fresh inode, breaking the mutual-exclusion guarantee.
Signature:
pub fn clean_cache(self: *const DownloadManager) Error!voidExample:
try instance.clean_cache();Returns: No return value.
Errors: Throws Error.
ExportInfo
Section titled “ExportInfo”An export statement extracted from source code.
| Field | Type | Default | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
— | The exported name. |
kind |
ExportKind |
ExportKind.named |
The kind of export (named, default, or re-export). |
span |
Span |
— | Source span covering the export statement. |
FileMetrics
Section titled “FileMetrics”Aggregate metrics for a source file.
| Field | Type | Default | Description |
|---|---|---|---|
total_lines |
u64 |
— | Total number of lines (including blank and comment lines). |
code_lines |
u64 |
— | Number of lines containing non-blank, non-comment source code. |
comment_lines |
u64 |
— | Number of lines that are entirely comments. |
blank_lines |
u64 |
— | Number of blank (whitespace-only) lines. |
total_bytes |
u64 |
— | Total byte length of the source file. |
node_count |
u64 |
— | Total number of nodes in the syntax tree. |
error_count |
u64 |
— | Number of error nodes in the syntax tree (parse errors). |
max_depth |
u64 |
— | Maximum nesting depth reached in the syntax tree. |
ImportInfo
Section titled “ImportInfo”An import statement extracted from source code.
| Field | Type | Default | Description |
|---|---|---|---|
source |
\[:0\]const u8 |
— | The module or path being imported from. |
items |
\[\]const \[:0\]const u8 |
[] |
Specific names imported from the source module. For import a, b / from m import a, b, every entry’s base name (never the alias). For a JavaScript/TypeScript named-imports clause (import { a, b as c } from 'm'), every specifier’s original name. Populated for Python and JavaScript/TypeScript only. Always empty for every other language this library recognises import statements for — Rust, Go, Java, Kotlin, and Elixir (import/alias/require/use) — and for a JS/TS namespace import (import * as ns) or default import (import x from 'm'), neither of which names individual items. |
alias |
\[:0\]const u8? |
null |
Alias assigned to the import (e.g., import numpy as np). Populated for Python’s single-name form (import numpy as np, from m import a as b) and JavaScript/TypeScript’s namespace form (import * as ns from 'm') or a named-imports clause naming exactly one specifier (import { a as b } from 'm'). null for Rust, Go, Java, Kotlin, and Elixir (which has its own as: alias option on alias directives, not yet extracted here) — and for a Python statement that aliases several names at once (import os, sys as s), where there is no single alias to report for the statement as a whole, so only items is populated for it. |
is_wildcard |
bool |
— | Whether this is a wildcard import (e.g., import * or use foo.*). Detected from the syntax tree — a dedicated wildcard node (wildcard_import in Python, use_wildcard in Rust) or a bare * token outside of string-literal content — not by searching the import’s source text for a * character, so a glob in an import path string (import a from './glob*.js') is not mistaken for one. |
span |
Span |
— | Source span covering the import statement. |
Language
Section titled “Language”LanguageRegistry
Section titled “LanguageRegistry”Thread-safe registry of tree-sitter language parsers.
Manages both statically compiled and dynamically loaded language grammars.
Use LanguageRegistry.new() for the default registry, or access the
global instance via the module-level convenience functions
(get_language, available_languages, etc.).
Methods
Section titled “Methods”Create a new registry populated with all statically compiled languages.
When the dynamic-loading feature is enabled, the registry also knows
about dynamically loadable grammars and will load them on demand.
Signature:
pub fn new_language_registry() LanguageRegistryExample:
const result = new_language_registry();Returns: LanguageRegistry
get_language()
Section titled “get_language()”Get a tree-sitter Language by name.
Resolves aliases (e.g., "shell" -> "bash", "makefile" -> "make"),
then looks up the language in the static table. When the dynamic-loading
feature is enabled, falls back to loading a shared library on demand.
Errors:
Returns Error.LanguageNotFound if the name (after alias resolution)
does not match any known grammar.
Signature:
pub fn get_language(self: *const LanguageRegistry, name: [:0]const u8) Error!LanguageExample:
const result = try instance.get_language("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
Yes | The name |
Returns: Language
Errors: Throws Error.
available_languages()
Section titled “available_languages()”List all available language names, sorted and deduplicated.
Includes statically compiled languages, dynamically loadable languages
(if the dynamic-loading feature is enabled), and all configured aliases.
Signature:
pub fn available_languages(self: *const LanguageRegistry) []const [:0]const u8Example:
const result = instance.available_languages();Returns: []const [:0]const u8
has_parser()
Section titled “has_parser()”Check whether this language can be parsed right now, without downloading.
Resolves aliases, then answers from exactly the lookup
get_language performs: the statically compiled
table, the already-loaded dynamic grammars, and the parser shared
libraries present in the primary and extra (download-cache) library
directories. It never performs network I/O.
A previous implementation consulted only the statically compiled table.
That table is empty in every build that does not set TSLP_LANGUAGES,
so the function answered false for languages this registry parses
perfectly well.
Contrast has_language, which is also true for a
grammar that is merely known to the manifest and would have to be
downloaded first. The pair distinguishes “we can parse it offline, now”
from “we recognise the name”.
The first true answer for a dynamic grammar loads its shared library:
loading is the only way to know the grammar is usable, since a truncated
or wrong-architecture library exists on disk but cannot parse. Loads are
cached process-wide, so repeat calls are cheap.
use tree_sitter_language_pack::{detect_language_from_extension, LanguageRegistry};
let registry = LanguageRegistry::new();// Extension detection uses the static ext table for all 371 grammars.let lang = detect_language_from_extension("feature"); // always returns Some("gherkin")// Parser availability depends on what is compiled in or cached on disk.let can_parse = lang.map(|name| registry.has_parser(name)).unwrap_or(false);Signature:
pub fn has_parser(self: *const LanguageRegistry, name: [:0]const u8) boolExample:
const result = instance.has_parser("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
Yes | The name |
Returns: bool
has_language()
Section titled “has_language()”Check whether a language is available by name or alias.
Returns true if the language can be loaded, either from the static
table or from a dynamic library on disk.
Every branch is one more way to answer true, so they are ordered
cheapest-first and the filesystem is only consulted once every in-memory
source has said no. Probing the loaded-grammar map and the manifest ahead
of the stat calls is what keeps this off the syscall path for the
languages a process actually uses.
Signature:
pub fn has_language(self: *const LanguageRegistry, name: [:0]const u8) boolExample:
const result = instance.has_language("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
Yes | The name |
Returns: bool
language_count()
Section titled “language_count()”Return the total number of available languages (including aliases).
Counts the same set available_languages
lists, without materialising or sorting it.
Signature:
pub fn language_count(self: *const LanguageRegistry) u64Example:
const result = instance.language_count();Returns: u64
process()
Section titled “process()”Parse source code and extract file intelligence based on config in a single pass.
Errors:
Returns Error.InvalidRange if the config is invalid (see
ProcessConfig.validate) or if the source
exceeds the configured
max_source_bytes;
Error.LanguageNotFound if the language is unknown; or
Error.ParseFailed if parsing produces no tree.
Signature:
pub fn process(self: *const LanguageRegistry, source: [:0]const u8, config: ProcessConfig) Error!ProcessResultExample:
const result = try instance.process("value", .{});Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
source |
\[:0\]const u8 |
Yes | The source |
config |
ProcessConfig |
Yes | The configuration options |
Returns: ProcessResult
Errors: Throws Error.
A single syntax node within a Tree.
Nodes hold a strong reference to their parent tree so they remain valid regardless of how the tree is moved or stored at the FFI boundary.
Methods
Section titled “Methods”kind()
Section titled “kind()”Return the node’s kind name (e.g. "function_definition").
Signature:
pub fn kind(self: *const Node) [:0]const u8Example:
const result = instance.kind();Returns: [:0]const u8
kind_id()
Section titled “kind_id()”Return the node’s numeric kind ID.
Tree-sitter assigns a stable u16 ID to every node kind in a grammar
(e.g. "function_definition" → 42). Comparing kind_id() is cheaper
than comparing the string kind() in tight AST loops.
Signature:
pub fn kind_id(self: *const Node) u16Example:
const result = instance.kind_id();Returns: u16
start_byte()
Section titled “start_byte()”Return the inclusive start byte offset of this node.
Signature:
pub fn start_byte(self: *const Node) u64Example:
const result = instance.start_byte();Returns: u64
end_byte()
Section titled “end_byte()”Return the exclusive end byte offset of this node.
Signature:
pub fn end_byte(self: *const Node) u64Example:
const result = instance.end_byte();Returns: u64
byte_range()
Section titled “byte_range()”Return the node’s byte range as a ByteRange.
Callers should slice their own source bytes — this is a zero-copy text accessor.
Signature:
pub fn byte_range(self: *const Node) ByteRangeExample:
const result = instance.byte_range();Returns: ByteRange
start_position()
Section titled “start_position()”Return the start Point (row, column).
Signature:
pub fn start_position(self: *const Node) PointExample:
const result = instance.start_position();Returns: Point
end_position()
Section titled “end_position()”Return the end Point (row, column).
Signature:
pub fn end_position(self: *const Node) PointExample:
const result = instance.end_position();Returns: Point
is_named()
Section titled “is_named()”True when this node is named (not punctuation/whitespace).
Signature:
pub fn is_named(self: *const Node) boolExample:
const result = instance.is_named();Returns: bool
is_error()
Section titled “is_error()”True when this is an error node.
Signature:
pub fn is_error(self: *const Node) boolExample:
const result = instance.is_error();Returns: bool
is_missing()
Section titled “is_missing()”True when this is a missing-token node.
Signature:
pub fn is_missing(self: *const Node) boolExample:
const result = instance.is_missing();Returns: bool
is_extra()
Section titled “is_extra()”True when this is an “extra” node (e.g. a comment).
Signature:
pub fn is_extra(self: *const Node) boolExample:
const result = instance.is_extra();Returns: bool
has_error()
Section titled “has_error()”True when this node or any descendant is an error.
Signature:
pub fn has_error(self: *const Node) boolExample:
const result = instance.has_error();Returns: bool
parent()
Section titled “parent()”Return this node’s parent, if any.
Signature:
pub fn parent(self: *const Node) ?NodeExample:
const result = instance.parent();Returns: ?Node
child()
Section titled “child()”Return the i-th child of this node, if any.
Signature:
pub fn child(self: *const Node, index: u32) ?NodeExample:
const result = instance.child(42);Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
index |
u32 |
Yes | The index |
Returns: ?Node
child_count()
Section titled “child_count()”Total number of children (including unnamed).
Signature:
pub fn child_count(self: *const Node) u64Example:
const result = instance.child_count();Returns: u64
named_child()
Section titled “named_child()”Return the i-th named child of this node, if any.
Signature:
pub fn named_child(self: *const Node, index: u32) ?NodeExample:
const result = instance.named_child(42);Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
index |
u32 |
Yes | The index |
Returns: ?Node
named_child_count()
Section titled “named_child_count()”Number of named children of this node.
Signature:
pub fn named_child_count(self: *const Node) u64Example:
const result = instance.named_child_count();Returns: u64
child_by_field_name()
Section titled “child_by_field_name()”Look up a child by its grammar-defined field name.
Signature:
pub fn child_by_field_name(self: *const Node, name: [:0]const u8) ?NodeExample:
const result = instance.child_by_field_name("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
Yes | The name |
Returns: ?Node
to_sexp()
Section titled “to_sexp()”Return the S-expression form of this node’s subtree.
Signature:
pub fn to_sexp(self: *const Node) [:0]const u8Example:
const result = instance.to_sexp();Returns: [:0]const u8
walk()
Section titled “walk()”Return a TreeCursor positioned at this node.
Signature:
pub fn walk(self: *const Node) TreeCursorExample:
const result = instance.walk();Returns: TreeCursor
PackConfig
Section titled “PackConfig”Configuration for the tree-sitter language pack.
Controls cache directory and which languages to pre-download. Can be loaded from a TOML file, constructed programmatically, or passed as a dict/object from language bindings.
| Field | Type | Default | Description |
|---|---|---|---|
cache_dir |
\[:0\]const u8? |
null |
Override the BASE directory the parser cache lives under. This is a base, not the final library path: the crate appends tree-sitter-language-pack/v{version}/libs to it, exactly as it does to the platform default. So cache_dir = "/tmp/my-parsers" resolves to /tmp/my-parsers/tree-sitter-language-pack/v{version}/libs/. The suffix is not cosmetic. It keeps the whole cache tree — manifest, bundles and lock file included — inside a directory this library owns and versions. Earlier releases used this path verbatim, which put those files in the configured directory’s PARENT and let a cache built by one crate version be reused by another. Default base: the platform cache dir, e.g. ~/.cache on Linux. |
languages |
\[\]const \[:0\]const u8? |
[] |
Languages to pre-download on init. Each entry is a language name (e.g. "python", "rust"). |
groups |
\[\]const \[:0\]const u8? |
[] |
Language groups to pre-download. Group names come from the remote manifest, so the valid set is not fixed by this library; the published manifest currently defines only "all". Call manifest_groups to enumerate them. An unknown name makes init fail. |
Parser
Section titled “Parser”A tree-sitter parser configured for one language at a time.
Methods
Section titled “Methods”Construct a new parser with no language set and no parse limits.
Call Parser.set_language before parsing. Limits are opt-in via
set_max_source_bytes and
set_parse_timeout_ms; both default to
unbounded so that existing callers are unaffected.
Signature:
pub fn new_parser() ParserExample:
const result = new_parser();Returns: Parser
set_max_source_bytes()
Section titled “set_max_source_bytes()”Refuse to parse sources longer than max_bytes.
null (the default) means no limit. Over-limit input makes
parse and parse_bytes return
null after emitting a WARN; input is never silently truncated.
See RECOMMENDED_MAX_SOURCE_BYTES.
Signature:
pub fn set_max_source_bytes(self: *const Parser, max_bytes: ?u64) voidExample:
instance.set_max_source_bytes(42);Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
max_bytes |
u64? |
No | The max bytes |
Returns: No return value.
set_parse_timeout_ms()
Section titled “set_parse_timeout_ms()”Cancel a parse that exceeds timeout_ms milliseconds of wall clock.
null (the default) means no budget. Cancellation runs through
tree-sitter’s parse progress callback, so it is granular to that
callback’s interval rather than exact.
See RECOMMENDED_PARSE_TIMEOUT_MS.
Signature:
pub fn set_parse_timeout_ms(self: *const Parser, timeout_ms: ?u64) voidExample:
instance.set_parse_timeout_ms(42);Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
timeout_ms |
u64? |
No | The timeout ms |
Returns: No return value.
set_language()
Section titled “set_language()”Configure the parser to use the language identified by name (e.g. "python").
Resolves the language through the global registry — auto-downloading
if necessary, when the download feature is enabled.
Errors:
Returns Error.LanguageNotFound if the language is not recognized,
or Error.ParserSetup if the language ABI is incompatible.
Signature:
pub fn set_language(self: *const Parser, name: [:0]const u8) Error!voidExample:
try instance.set_language("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
Yes | The name |
Returns: No return value.
Errors: Throws Error.
parse()
Section titled “parse()”Parse a UTF-8 source string.
Returns null if no language is set, if the parse was cancelled by the
configured timeout, or if the source
exceeds the configured size limit. Each
non-parse outcome is logged, so an empty result is never silent.
Concurrency
Section titled “Concurrency”Parsing runs fully in parallel across threads for almost every language — no lock is
taken. The exception is the small set of grammars whose external scanner keeps mutable
process-global state (currently just properties): parses of that language are
serialized against each other through an internal per-language lock, so that concurrent
threads can’t corrupt shared scanner state. Every other language is unaffected by that
lock and never waits on it.
Signature:
pub fn parse(self: *const Parser, source: [:0]const u8) ?TreeExample:
const result = instance.parse("value");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
source |
\[:0\]const u8 |
Yes | The source |
Returns: ?Tree
parse_bytes()
Section titled “parse_bytes()”Parse a raw byte slice.
Same outcomes as parse, including the concurrency behaviour documented
there.
Signature:
pub fn parse_bytes(self: *const Parser, source: []const u8) ?TreeExample:
const result = instance.parse_bytes("data");Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
source |
\[\]const u8 |
Yes | The source |
Returns: ?Tree
reset()
Section titled “reset()”Reset internal state. The next call to parse will
not be incremental.
Signature:
pub fn reset(self: *const Parser) voidExample:
instance.reset();Returns: No return value.
A source position — row + column, zero-indexed.
| Field | Type | Default | Description |
|---|---|---|---|
row |
u64 |
— | Zero-indexed row number. |
column |
u64 |
— | Zero-indexed column, counted in bytes from the start of the row. This is tree_sitter.Point.column verbatim, and tree-sitter defines it as a byte offset — not characters, and not UTF-16 code units. Measured on a row of the form x = '<c>' where <c> is a single 4-byte character (an emoji), the string node reports columns 4..10, identical to its byte range; the character columns would be 4..7 and the UTF-16 columns 4..8. Anything that builds LSP positions (UTF-16) or editor caret columns (characters) from this field is silently wrong on every row containing a non-ASCII byte, and must re-measure the row against the source text instead. Earlier releases documented this field as UTF-16 code units; that was never what the value contained. |
ProcessConfig
Section titled “ProcessConfig”Configuration for the process() function.
Controls which analysis features are enabled and whether chunking is performed.
| Field | Type | Default | Description |
|---|---|---|---|
language |
\[:0\]const u8 |
"" |
Language name (required). |
structure |
bool |
true |
Extract structural items (functions, classes, etc.). Default: true. |
imports |
bool |
true |
Extract import statements. Default: true. |
exports |
bool |
true |
Extract export statements. Default: true. |
comments |
bool |
false |
Extract comments. Default: false. |
docstrings |
bool |
false |
Extract docstrings. Default: false. |
symbols |
bool |
false |
Extract symbol definitions. Default: false. |
diagnostics |
bool |
false |
Include parse diagnostics. Default: false. |
chunk_max_size |
u64? |
null |
Maximum chunk size in bytes. null disables chunking. Some(0) is rejected by ProcessConfig.validate with Error.InvalidRange. A zero-sized chunk limit previously produced an empty chunk list and silently discarded the whole source; use null to mean “do not chunk”. |
data_extraction |
bool |
false |
Extract hierarchical key/value data tree from data-format files. Default: false. When true, ProcessResult.data is populated with a DataNode tree for supported languages: JSON, YAML, TOML, .properties, HCL/HOCON, INI, editorconfig, KDL, CUE, CSV, PSV, PO, nginx config, Caddy config, XML, and DTD. For languages outside this set the field is left as null. |
max_source_bytes |
u64? |
null |
Reject source longer than this many bytes instead of parsing it. Default: null (unbounded). Tree-sitter allocates and walks proportionally to input size, so an unbounded parse of attacker-supplied input is a denial-of-service vector. The default stays unbounded for backward compatibility; services handling untrusted input should opt in, e.g. with RECOMMENDED_MAX_SOURCE_BYTES. Exceeding the limit fails the call with Error.InvalidRange — the source is never silently truncated. |
parse_timeout_ms |
u64? |
null |
Wall-clock budget for the parse step, in milliseconds. Default: null (no timeout). Enforced through tree-sitter’s parse progress callback, which the parser invokes periodically; cancellation is therefore granular to that callback interval rather than exact. A parse that exceeds the budget fails with Error.ParseTimeout. |
ProcessResult
Section titled “ProcessResult”Complete analysis result from processing a source file.
Contains metrics, structural analysis, imports/exports, comments,
docstrings, symbols, diagnostics, and optionally chunked code segments.
Fields are populated based on the ProcessConfig flags.
| Field | Type | Default | Description |
|---|---|---|---|
language |
\[:0\]const u8 |
— | The language name used to parse the source file. |
metrics |
FileMetrics |
— | File-level metrics (line counts, byte size, error count). |
structure |
\[\]const StructureItem |
[] |
Top-level structural items (functions, classes, etc.). |
imports |
\[\]const ImportInfo |
[] |
Import statements extracted from the source. |
exports |
\[\]const ExportInfo |
[] |
Export statements extracted from the source. |
comments |
\[\]const CommentInfo |
[] |
Comments extracted from the source. |
docstrings |
\[\]const DocstringInfo |
[] |
Docstrings extracted from the source. |
symbols |
\[\]const SymbolInfo |
[] |
Symbol definitions (variables, types, functions) extracted from the source. |
diagnostics |
\[\]const Diagnostic |
[] |
Parse diagnostics (syntax errors, missing nodes) from tree-sitter. |
chunks |
\[\]const CodeChunk |
[] |
Syntax-aware code chunks produced when chunking is enabled. |
data |
DataNode? |
null |
Hierarchical data tree extracted when config.data_extraction is true. Populated for supported data-format languages (JSON, YAML, TOML, properties, HCL, INI, XML, CSV, and more). null when data_extraction is false (the default) or when the language is not a recognised data format. See DataNode for the shape of the returned tree. |
Byte and line/column range in source code.
Represents both byte offsets (for slicing) and human-readable line/column positions (for display and diagnostics).
| Field | Type | Default | Description |
|---|---|---|---|
start_byte |
u64 |
— | Inclusive start byte offset in the source. |
end_byte |
u64 |
— | Exclusive end byte offset in the source. |
start_line |
u64 |
— | Zero-indexed line number of the span’s start. |
start_column |
u64 |
— | Zero-indexed column of the span’s start, counted in bytes from the start of the line — not characters, not UTF-16 code units. |
end_line |
u64 |
— | Zero-indexed line number of the span’s end. |
end_column |
u64 |
— | Zero-indexed column of the span’s end, counted in bytes from the start of the line — not characters, not UTF-16 code units. |
StructureItem
Section titled “StructureItem”A structural item (function, class, struct, etc.) in source code.
| Field | Type | Default | Description |
|---|---|---|---|
kind |
StructureKind |
StructureKind.function |
The kind of structural item. |
name |
\[:0\]const u8? |
null |
The declared name of the item, if present. |
visibility |
\[:0\]const u8? |
null |
Visibility modifier (e.g., "pub", "public", "private"). |
span |
Span |
— | Source span covering the entire item declaration. |
children |
\[\]const StructureItem |
[] |
Nested structural items (e.g., methods within a class). |
decorators |
\[\]const \[:0\]const u8 |
[] |
Decorator or attribute names applied to the item. Reserved: not yet populated. Always empty, for every language. Recognising a decorator requires per-language grammar knowledge (a Python decorated_definition wrapper, Java/C# annotations, Rust attributes each have a different shape), which no extractor here implements yet. The field is kept rather than removed so a consumer’s deserializer does not need updating once it is. |
doc_comment |
\[:0\]const u8? |
null |
Documentation comment attached to the item, if any. The text of the comment (or run of comments) immediately preceding the item, with no blank line in between, when that comment is classified as a doc comment. Multiple adjacent single-line doc comments (Rust ///) are joined with \n in source order. Populated for Rust (//////!), Java (/** */), and JavaScript/ TypeScript (/** */). null for every other language, and for a preceding comment that is not in doc-comment form (a plain # comment in Python, Ruby, or Elixir) — Python’s docstring convention is captured separately, as DocstringInfo, not through this field. |
signature |
\[:0\]const u8? |
null |
Full signature text of the item (e.g., function parameters and return type). The item’s own source text from its start up to the start of its body (see StructureItem.body_span), trimmed of trailing whitespace — for example fn add(a: i32, b: i32) -> i32 for a Rust function whose body is { a + b }. null only when that text is empty, which does not happen for any item StructureKind currently reports. Populated for every language and kind this library extracts structure for, since it is derived from body_span’s boundary rather than per-language syntax. |
body_span |
Span? |
null |
Source span covering only the body of the item, if distinct from the declaration. |
SymbolInfo
Section titled “SymbolInfo”A symbol (variable, function, type, etc.) extracted from source code.
| Field | Type | Default | Description |
|---|---|---|---|
name |
\[:0\]const u8 |
— | The name of the symbol. |
kind |
SymbolKind |
SymbolKind.variable |
The kind of symbol (variable, function, class, etc.). |
span |
Span |
— | Source span covering the symbol definition. |
type_annotation |
\[:0\]const u8? |
null |
Explicit type annotation, if present in the source. |
doc |
\[:0\]const u8? |
null |
Documentation comment immediately preceding this symbol, resolved by the same walk StructureItem.doc_comment uses (see doc_comment_at) — never hard-coded null. Populated for Rust (//////!), Java (/** */), and JavaScript/ TypeScript (/** */) — the languages whose comment classification recognizes a doc-kind comment. null for every other language (e.g. Python, Go, Ruby, which have no doc-kind comment classification), and also null when a symbol in a supported language simply has no doc comment immediately above it. |
A parsed syntax tree. Cheap to clone (refcount bump).
Methods
Section titled “Methods”root_node()
Section titled “root_node()”Return the root Node of this tree.
Signature:
pub fn root_node(self: *const Tree) NodeExample:
const result = instance.root_node();Returns: Node
walk()
Section titled “walk()”Return a TreeCursor positioned at the root.
Signature:
pub fn walk(self: *const Tree) TreeCursorExample:
const result = instance.walk();Returns: TreeCursor
TreeCursor
Section titled “TreeCursor”A cursor for traversing a Tree.
Methods
Section titled “Methods”node()
Section titled “node()”Return the Node at the cursor’s current position.
Signature:
pub fn node(self: *const TreeCursor) NodeExample:
const result = instance.node();Returns: Node
goto_first_child()
Section titled “goto_first_child()”Move the cursor to the first child of the current node.
Returns true if a child existed.
Signature:
pub fn goto_first_child(self: *const TreeCursor) boolExample:
const result = instance.goto_first_child();Returns: bool
goto_parent()
Section titled “goto_parent()”Move the cursor to the parent of the current node.
Returns true if a parent existed.
Signature:
pub fn goto_parent(self: *const TreeCursor) boolExample:
const result = instance.goto_parent();Returns: bool
goto_next_sibling()
Section titled “goto_next_sibling()”Move the cursor to the next sibling of the current node.
Returns true if a sibling existed.
Signature:
pub fn goto_next_sibling(self: *const TreeCursor) boolExample:
const result = instance.goto_next_sibling();Returns: bool
field_name()
Section titled “field_name()”Return the field name for the current node, if any.
Signature:
pub fn field_name(self: *const TreeCursor) ?[:0]const u8Example:
const result = instance.field_name();Returns: ?[:0]const u8
DataNodeKind
Section titled “DataNodeKind”The kind of a data node extracted from a data-format file.
Classifies each node in the hierarchical DataNode tree returned when
data_extraction is enabled on ProcessConfig.
Wire format (public JSON contract)
Section titled “Wire format (public JSON contract)”Unit variants serialize as a bare string ("KeyValue"). DO NOT add
#[serde(tag = "...")] or rename variants — every language binding has a
hand-written deserializer matching this exact shape, and any change breaks
all bindings’ process() tests simultaneously.
Covered by tests/wire_format.rs.
| Value | Description |
|---|---|
key_value |
A key/value pair or mapping (json/toml/properties/yaml/hcl/cue/kdl pair, or a wrapper “object”/“mapping” container). |
element |
An XML element with a tag name in key and attributes in attributes. |
sequence |
A positional sequence item (JSON array element, YAML block sequence item, CSV/PSV row or cell). |
StructureKind
Section titled “StructureKind”The kind of structural item found in source code.
Categorizes top-level and nested declarations such as functions, classes,
structs, enums, traits, and more. Use Other for
language-specific constructs that do not fit a standard category.
Wire format (public JSON contract)
Section titled “Wire format (public JSON contract)”Unit variants serialize as a bare string ("Function"); the Other
variant serializes as a single-keyed object ({"Other": "macro"}). DO
NOT add #[serde(tag = "...")] or rename variants — every language
binding has a hand-written deserializer matching this exact shape, and
any change breaks all bindings’ process() tests simultaneously.
Covered by tests/wire_format.rs.
| Value | Description |
|---|---|
function |
A free-standing or associated function. |
method |
A method defined inside a class, struct, trait, or impl block. |
class |
A class definition. |
struct |
A struct definition. |
interface |
An interface or protocol definition. |
enum |
An enum definition. |
module |
A module or package declaration. |
trait |
A trait definition. |
impl |
An impl block (Rust) or similar implementation block. |
namespace |
A namespace declaration. |
other |
A language-specific construct that does not fit any standard category. — Fields: 0: [:0]const u8 |
CommentKind
Section titled “CommentKind”The kind of a comment found in source code.
Distinguishes between single-line comments, block (multi-line) comments, and documentation comments.
| Value | Description |
|---|---|
line |
A single-line comment (e.g., // ... or # ...). |
block |
A block or multi-line comment using slash-star delimiters. |
doc |
A documentation comment such as /// ... or slash-double-star block. |
DocstringFormat
Section titled “DocstringFormat”The format of a docstring extracted from source code.
Identifies the docstring convention used, which varies by language
(e.g., Python triple-quoted strings, JSDoc, Rustdoc /// comments).
Wire format (public JSON contract)
Section titled “Wire format (public JSON contract)”Unit variants serialize as a bare string ("JSDoc"); the Other
variant serializes as a single-keyed object ({"Other": "rst"}). DO
NOT add #[serde(tag = "...")]. Covered by tests/wire_format.rs.
| Value | Description |
|---|---|
python_triple_quote |
Python triple-quoted string docstring ("""..."""). |
js_doc |
JavaScript/TypeScript JSDoc block comment (opens with two stars, closes with star-slash). |
rustdoc |
Rust /// or //! doc comment. |
go_doc |
Go doc comment (a comment block immediately preceding a declaration). |
java_doc |
Java Javadoc block comment (opens with two stars, closes with star-slash). |
other |
A language-specific docstring format not covered by the standard variants. — Fields: 0: [:0]const u8 |
ExportKind
Section titled “ExportKind”The kind of an export statement found in source code.
Covers named exports, default exports, and re-exports from other modules.
| Value | Description |
|---|---|
named |
A named export (e.g., export { foo }). |
default |
A default export (e.g., export default foo). |
re_export |
A re-export from another module (e.g., export { foo } from 'bar'). |
SymbolKind
Section titled “SymbolKind”The kind of a symbol definition found in source code.
Categorizes symbol definitions such as variables, constants, functions, classes, types, interfaces, enums, and modules.
Wire format (public JSON contract)
Section titled “Wire format (public JSON contract)”Unit variants serialize as a bare string ("Function"); the Other
variant serializes as a single-keyed object ({"Other": "macro"}). DO
NOT add #[serde(tag = "...")]. Covered by tests/wire_format.rs.
| Value | Description |
|---|---|
variable |
A variable binding. |
constant |
A constant (immutable binding). |
function |
A function definition. |
class |
A class definition. |
type |
A type alias or typedef. |
interface |
An interface definition. |
enum |
An enum definition. |
module |
A module declaration. |
other |
A symbol kind not covered by the standard variants. — Fields: 0: [:0]const u8 |
DiagnosticSeverity
Section titled “DiagnosticSeverity”Severity level of a diagnostic produced during parsing.
Used to classify parse errors, warnings, and informational messages found in the syntax tree.
| Value | Description |
|---|---|
error |
A parse error (e.g., an ERROR or MISSING node in the tree). |
warning |
A warning-level diagnostic. |
info |
An informational diagnostic. |
Errors
Section titled “Errors”Errors that can occur when using the tree-sitter language pack.
Covers language lookup failures, parse errors, query errors, and I/O issues.
Feature-gated variants are included when config, download, or related
features are enabled.
Matching on Error
Section titled “Matching on Error”The set of variants is not stable: new failure modes are added in minor
releases, and Io, Json, and Toml exist only under certain feature
combinations, so the variant set a downstream crate sees depends on which
features it enables. Downstream matches must therefore carry a _ arm;
#[non_exhaustive] makes the compiler enforce that instead of letting a
feature change silently break a build.
C ABI error codes
Section titled “C ABI error codes”Each variant alef can see carries an explicit alef(error_code = N)
allocation that becomes a member of the generated AlefFfiErrorCode C enum.
These numbers are a public ABI contract: an allocated number is never
reused after its variant is removed, and a variant’s number never changes,
because C callers compare against the value, not the name. New variants take
the next free number. 0-4 are reserved by alef, so allocation starts at 100.
An unannotated variant is emitted as the unknown code rather than as itself,
which silently flattens the taxonomy — annotate every new variant.
| Variant | Description |
|---|---|
language_not_found |
The requested language name (or alias) was not found in the registry. |
dynamic_load |
A dynamic shared library could not be loaded at runtime. |
null_language_pointer |
The tree-sitter language function returned a null pointer for the given language name. |
parser_setup |
The language could not be applied to the parser (e.g., ABI version mismatch). |
lock_poisoned |
An internal RwLock or Mutex was poisoned by a previous panic. |
config |
A configuration file or value was invalid or could not be applied. |
parse_failed |
The tree-sitter parser returned no tree for the given source input. |
parse_timeout |
The parse was cancelled because it exceeded its configured wall-clock budget. Raised only when a budget is configured — see ProcessConfig.parse_timeout_ms, which defaults to null. |
query_error |
A tree-sitter query could not be compiled or executed. |
invalid_range |
A byte range was invalid (e.g., end before start, or out of bounds). |
download |
A parser download from GitHub releases failed. |
checksum_mismatch |
The downloaded file’s SHA-256 digest did not match the manifest’s expected value. |
cache_lock |
The cross-process download cache lock file could not be acquired or created. |