#tree-sitter #parser #incremental #awasm #awa5-rs

tree-sitter-awa5_rs

AWA5.RS grammar for tree-sitter

4 releases

0.1.3 Jul 30, 2024
0.1.2 Jul 28, 2024
0.1.1 Jul 26, 2024
0.1.0 Jul 25, 2024

#281 in Text editors

Download history 433/week @ 2024-07-25 38/week @ 2024-08-01

107 downloads per month

MIT license

120KB
3.5K SLoC

C 3.5K SLoC JavaScript 121 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

~2.8–4MB
~73K SLoC