#tree-sitter #parser #incremental #frugurt

tree-sitter-frugurt

Frugurt grammar for tree-sitter

10 releases

new 0.0.10 May 10, 2024
0.0.9 May 8, 2024
0.0.5 Apr 27, 2024

#123 in Text editors

Download history 320/week @ 2024-04-15 304/week @ 2024-04-22 477/week @ 2024-04-29 256/week @ 2024-05-06

1,357 downloads per month

MIT license

330KB
13K SLoC

C 12K SLoC JavaScript 364 SLoC // 0.0% comments Rust 29 SLoC // 0.3% comments Scheme 25 SLoC

tree-sitter-frugurt

Frugurt grammar for tree-sitter.


lib.rs:

This crate provides Frugurt 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:

let code = r#"
"#;
let mut parser = tree_sitter::Parser::new();
parser.set_language(&tree_sitter_frugurt::language()).expect("Error loading Frugurt grammar");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());

Dependencies

~2.7–4MB
~71K SLoC