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
132 downloads per month
120KB
4K
SLoC
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