25 releases
0.1.20 | Sep 20, 2023 |
---|---|
0.1.19 | Aug 12, 2023 |
0.1.13 | Jul 29, 2023 |
0.0.9 | Jul 18, 2023 |
#418 in Text editors
222 downloads per month
3MB
123K
SLoC
This crate provides asena 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 = "";
let mut parser = tree_sitter::Parser::new();
parser.set_language(tree_sitter_asena::language()).expect("Error loading asena grammar");
let tree = parser.parse(code, None).unwrap();
Dependencies
~2.7–4MB
~72K SLoC