2 stable releases
new 1.0.1 | Mar 28, 2025 |
---|
#2917 in Parser implementations
1.5MB
43K
SLoC
tree-sitter-bos
Tree Sitter grammar for the BOS scripting language.
BOS
DSL scripting language for controlling unit animations and state in the Recoil game engine.
Has origins stretching all way back to Total Annhilation, though it's gone through years and years of modifications and improvements.
lib.rs
:
This crate provides Bos language support for the tree-sitter parsing library.
Typically, you will use the [LANGUAGE][] constant 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();
let language = tree_sitter_bos::LANGUAGE;
parser
.set_language(&language.into())
.expect("Error loading Bos Unit Animation Script parser");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());
Dependencies
~4–280KB