Bump tree-sitter to 0.22.2

This commit is contained in:
Michael Davis 2024-03-17 09:42:16 -04:00 committed by Blaž Hrastnik
parent 476e6baf8f
commit 38af99f05f
4 changed files with 12 additions and 17 deletions

View file

@ -21,7 +21,7 @@ pub fn query_check() -> Result<(), DynError> {
let query_text = read_query(language_name, query_file);
if let Ok(lang) = language {
if !query_text.is_empty() {
if let Err(reason) = Query::new(lang, &query_text) {
if let Err(reason) = Query::new(&lang, &query_text) {
return Err(format!(
"Failed to parse {} queries for {}: {}",
query_file, language_name, reason