7 releases (4 stable)

1.3.0 Dec 5, 2024
1.2.0 May 25, 2024
1.1.0 Aug 14, 2023
1.0.0 Jun 20, 2023
0.0.3 Feb 27, 2023

#224 in Parser tooling

Download history 13/week @ 2024-09-23 3/week @ 2024-09-30 162/week @ 2024-12-02

162 downloads per month

MIT license

2.5MB
98K SLoC

C 97K SLoC // 0.0% comments Scheme 335 SLoC // 0.1% comments Rust 33 SLoC

tree-sitter-starlark

Build Status Discord

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][] constant to add this language to a tree-sitter Parser, and then use the parser to parse some code:

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();
let language = tree_sitter_starlark::LANGUAGE;
parser
    .set_language(&language.into())
    .expect("Error loading Starlark parser");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());

Dependencies

~4–305KB