Procházet zdrojové kódy

chore: remove 'static

pull/172/merge
Amaan Qureshi před 2 roky
rodič
revize
212a80f864
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: E67890ADC4227273
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. +3
    -3
      bindings/rust/lib.rs

+ 3
- 3
bindings/rust/lib.rs Zobrazit soubor

@ -49,14 +49,14 @@ pub const GRAMMAR: &str = include_str!("../../grammar.js");
/// The syntax highlighting query for this language.
pub const HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm");
/// The symbol tagging query for this language.
pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm");
/// 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: &str = include_str!("../../src/node-types.json");
/// The symbol tagging query for this language.
pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm");
#[cfg(test)]
mod tests {
#[test]

Načítá se…
Zrušit
Uložit