3 releases
0.0.3 | Dec 31, 2023 |
---|---|
0.0.2 | Nov 9, 2023 |
0.0.1 | Nov 1, 2023 |
#269 in Text editors
32 downloads per month
1MB
37K
SLoC
tree-sitter-apachesynapse
WIP: tree-sitter grammer for the Apache Synapse Enterprise Service Bus (ESB) https://synapse.apache.org/
lib.rs
:
This crate provides apachesynapse 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_apachesynapse::language()).expect("Error loading apachesynapse grammar");
let tree = parser.parse(code, None).unwrap();
Dependencies
~2.8–4MB
~74K SLoC