tree_sitter_printf/lib.rs
1//! This crate provides printf format language support for the [tree-sitter] parsing library.
2//!
3//! Typically, you will use the [`LANGUAGE`] constant to add this language to a
4//! tree-sitter [`Parser`], and then use the parser to parse some code:
5//!
6//! ```
7//! let code = r"%s, %s %d, %.2d:%.2d\n";
8//! let mut parser = tree_sitter::Parser::new();
9//! let language = tree_sitter_printf::LANGUAGE;
10//! parser
11//! .set_language(&language.into())
12//! .expect("Error loading printf format parser");
13//! let tree = parser.parse(code, None).unwrap();
14//! assert!(!tree.root_node().has_error());
15//! ```
16//!
17//! [`Parser`]: https://docs.rs/tree-sitter/0.25.8/tree_sitter/struct.Parser.html
18//! [tree-sitter]: https://tree-sitter.github.io/
19
20use tree_sitter_language::LanguageFn;
21
22extern "C" {
23 fn tree_sitter_printf() -> *const ();
24}
25
26/// The tree-sitter [`LanguageFn`] for this grammar.
27pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_printf) };
28
29/// The content of the [`node-types.json`] file for this grammar.
30///
31/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers/6-static-node-types
32pub const NODE_TYPES: &str = include_str!("../../src/node-types.json");
33
34/// The syntax highlighting query for this grammar.
35pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm");
36
37#[cfg(test)]
38mod tests {
39 #[test]
40 fn test_can_load_grammar() {
41 let mut parser = tree_sitter::Parser::new();
42 parser
43 .set_language(&super::LANGUAGE.into())
44 .expect("Error loading printf format parser");
45 }
46}