#parser #tree-sitter #incremental

tree-sitter-awa5_rs

AWA5.RS grammar for tree-sitter

5 releases

new 0.1.4 Oct 13, 2024
0.1.3 Jul 30, 2024
0.1.2 Jul 28, 2024
0.1.1 Jul 26, 2024
0.1.0 Jul 25, 2024

#170 in Text editors

Download history 433/week @ 2024-07-25 38/week @ 2024-08-01 4/week @ 2024-09-12 3/week @ 2024-09-19 5/week @ 2024-09-26 2/week @ 2024-10-03 122/week @ 2024-10-10

132 downloads per month

MIT license

120KB
4K SLoC

C 3.5K SLoC JavaScript 124 SLoC Rust 30 SLoC // 0.2% comments Scheme 20 SLoC // 0.3% comments

tree-sitter-awa5_rs

AWA5.RS grammar for tree-sitter


lib.rs:

This crate provides Awa5Rs 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_awa5_rs::language()).expect("Error loading Awa5Rs grammar");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());

Dependencies

~3–4MB
~77K SLoC