]>
Commit | Line | Data |
---|---|---|
20fe4b1e | 1 | //! This crate provides api_notation language support for the [tree-sitter][] parsing library. |
dc87cd89 RBR |
2 | //! |
3 | //! Typically, you will use the [language][language func] function to add this language to a | |
4 | //! tree-sitter [Parser][], and then use the parser to parse some code: | |
5 | //! | |
6 | //! ``` | |
7 | //! let code = ""; | |
8 | //! let mut parser = tree_sitter::Parser::new(); | |
20fe4b1e | 9 | //! parser.set_language(tree_sitter_api_notation::language()).expect("Error loading api_notation grammar"); |
dc87cd89 RBR |
10 | //! let tree = parser.parse(code, None).unwrap(); |
11 | //! ``` | |
12 | //! | |
13 | //! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html | |
14 | //! [language func]: fn.language.html | |
15 | //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html | |
16 | //! [tree-sitter]: https://tree-sitter.github.io/ | |
17 | ||
18 | use tree_sitter::Language; | |
19 | ||
20 | extern "C" { | |
0e6205eb | 21 | fn tree_sitter_api_notation() -> Language; |
dc87cd89 RBR |
22 | } |
23 | ||
24 | /// Get the tree-sitter [Language][] for this grammar. | |
25 | /// | |
26 | /// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html | |
27 | pub fn language() -> Language { | |
0e6205eb | 28 | unsafe { tree_sitter_api_notation() } |
dc87cd89 RBR |
29 | } |
30 | ||
31 | /// The content of the [`node-types.json`][] file for this grammar. | |
32 | /// | |
33 | /// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types | |
34 | pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); | |
35 | ||
36 | // Uncomment these to include any queries that this grammar contains | |
37 | ||
38 | // pub const HIGHLIGHTS_QUERY: &'static str = include_str!("../../queries/highlights.scm"); | |
39 | // pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); | |
40 | // pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); | |
41 | // pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); | |
42 | ||
43 | #[cfg(test)] | |
44 | mod tests { | |
45 | #[test] | |
46 | fn test_can_load_grammar() { | |
47 | let mut parser = tree_sitter::Parser::new(); | |
48 | parser | |
49 | .set_language(super::language()) | |
20fe4b1e | 50 | .expect("Error loading api_notation language"); |
dc87cd89 RBR |
51 | } |
52 | } |