We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 36ae187 + d72badf commit 0f14a10Copy full SHA for 0f14a10
.gitignore
@@ -6,4 +6,5 @@ package-lock.json
6
examples
7
!examples/ast.rs
8
/target/
9
-.build/
+.build/
10
+/.idea/
bindings/rust/lib.rs
@@ -49,6 +49,9 @@ pub const GRAMMAR: &str = include_str!("../../grammar.js");
49
/// The syntax highlighting query for this language.
50
pub const HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm");
51
52
+/// The symbol tagging query for this language.
53
+pub const TAGGING_QUERY: &str = include_str!("../../queries/tags.scm");
54
+
55
/// The content of the [`node-types.json`][] file for this grammar.
56
///
57
/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types
0 commit comments