feat: impl text delta support (#14132)

This commit is contained in:
DarkSky
2025-12-22 03:16:16 +08:00
committed by GitHub
parent efbdee5508
commit 321965a424
31 changed files with 2299 additions and 415 deletions

View File

@@ -110,7 +110,7 @@ fn get_language_parser(language: &Language) -> Parser {
};
parser
.set_language(&lang.into())
.unwrap_or_else(|_| panic!("Error loading grammar for language: {:?}", language));
.unwrap_or_else(|_| panic!("Error loading grammar for language: {language:?}"));
parser
}