6 releases (3 stable)
1.2.0 | May 25, 2024 |
---|---|
1.1.0 | Aug 14, 2023 |
1.0.0 | Jun 20, 2023 |
0.0.3 | Feb 27, 2023 |
#2552 in Parser implementations
384 downloads per month
2.5MB
98K
SLoC
tree-sitter-starlark
Starlark grammar for tree-sitter
Adapted from the official spec and the Google spec
lib.rs
:
This crate provides Starlark language support for the tree-sitter parsing library.
Typically, you will use the language function to add this language to a tree-sitter Parser, and then use the parser to parse some code:
use tree_sitter::Parser;
let code = r#"
load("//tools/build_defs/starlark:starlark.bzl", "starlark_library")
starlark_library(
name = "example",
srcs = ["example.star"],
)
"#;
let mut parser = tree_sitter::Parser::new();
parser.set_language(&tree_sitter_starlark::language()).expect("Error loading Starlark grammar");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());
Dependencies
~2.8–4MB
~78K SLoC