|
|
|
|
@ -31,11 +31,11 @@ pub fn language() -> Language {
|
|
|
|
|
/// The content of the [`node-types.json`][] file for this grammar.
|
|
|
|
|
///
|
|
|
|
|
/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types
|
|
|
|
|
pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json");
|
|
|
|
|
pub const NODE_TYPES: &str = include_str!("../../src/node-types.json");
|
|
|
|
|
|
|
|
|
|
// Uncomment these to include any queries that this grammar contains
|
|
|
|
|
|
|
|
|
|
pub const HIGHLIGHTS_QUERY: &'static str = include_str!("../../queries/highlights.scm");
|
|
|
|
|
pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm");
|
|
|
|
|
// pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm");
|
|
|
|
|
// pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm");
|
|
|
|
|
// pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm");
|
|
|
|
|
|