2 releases
0.0.2 | Jan 30, 2025 |
---|---|
0.0.1 | Mar 11, 2023 |
#25 in Parser tooling
8,623 downloads per month
Used in 5 crates
(3 directly)
620KB
23K
SLoC
tree-sitter-nix
Nix grammar for tree-sitter.
lib.rs
:
This crate provides nix 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#"
let
b = a + 1;
a = 1;
in
a + b
"#;
let mut parser = Parser::new();
let language = tree_sitter_nix::LANGUAGE;
parser
.set_language(&language.into())
.expect("Error loading nix parser");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());
Dependencies
~4–310KB