Crates.io | tree-sitter-tags |
lib.rs | tree-sitter-tags |
version | |
source | src |
created_at | 2020-05-12 23:32:52.867155 |
updated_at | 2024-12-11 06:50:28.48996 |
description | Library for extracting tag information |
homepage | https://tree-sitter.github.io/tree-sitter |
repository | https://github.com/tree-sitter/tree-sitter |
max_upload_size | |
id | 240877 |
Cargo.toml error: | TOML parse error at line 22, column 1 | 22 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Add this crate, and the language-specific crates for whichever languages you want to parse, to your Cargo.toml
:
[dependencies]
tree-sitter-tags = "0.19"
tree-sitter-javascript = "0.19"
tree-sitter-python = "0.19"
Create a tag context. You need one of these for each thread that you're using for tag computation:
use tree_sitter_tags::TagsContext;
let context = TagsContext::new();
Load some tagging queries from the queries
directory of some language repositories:
use tree_sitter_tags::TagsConfiguration;
let python_config = TagsConfiguration::new(
tree_sitter_python::language(),
tree_sitter_python::TAGGING_QUERY,
"",
).unwrap();
let javascript_config = TagsConfiguration::new(
tree_sitter_javascript::language(),
tree_sitter_javascript::TAGGING_QUERY,
tree_sitter_javascript::LOCALS_QUERY,
).unwrap();
Compute code navigation tags for some source code:
let tags = context.generate_tags(
&javascript_config,
b"class A { getB() { return c(); } }",
None,
);
for tag in tags {
println!("kind: {:?}", tag.kind);
println!("range: {:?}", tag.range);
println!("name_range: {:?}", tag.name_range);
println!("docs: {:?}", tag.docs);
}