Update tree-sitter-rust ()

Co-authored-by: Rock Boynton <rboynton@anduril.com>
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
Rock Boynton 2025-01-23 11:11:07 -08:00 committed by GitHub
parent fcf981bbd7
commit dca235c5c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 3 deletions
languages.toml
runtime/queries/rust

View file

@ -298,7 +298,7 @@ args = { attachCommands = [ "platform select remote-gdb-server", "platform conne
[[grammar]]
name = "rust"
source = { git = "https://github.com/tree-sitter/tree-sitter-rust", rev = "9c84af007b0f144954adb26b3f336495cbb320a7" }
source = { git = "https://github.com/tree-sitter/tree-sitter-rust", rev = "1f63b33efee17e833e0ea29266dd3d713e27e321" }
[[language]]
name = "sway"

View file

@ -174,8 +174,7 @@
(for_expression
"for" @keyword.control.repeat)
((identifier) @keyword.control
(#match? @keyword.control "^yield$"))
(gen_block "gen" @keyword.control)
"in" @keyword.control
@ -196,6 +195,7 @@
"continue"
"return"
"await"
"yield"
] @keyword.control.return
"use" @keyword.control.import
@ -204,6 +204,10 @@
(type_cast_expression "as" @keyword.operator)
((generic_type
type: (type_identifier) @keyword)
(#eq? @keyword "use"))
[
(crate)
(super)
@ -241,6 +245,7 @@
[
"static"
"const"
"raw"
"ref"
"move"
"dyn"