just: bump grammar support to handle module path in aliases and recipes dependencies (#14009)

pull/13448/head^2
Poliorcetics 2025-07-19 21:18:18 +02:00 committed by GitHub
parent 4418e338e8
commit e7f95ca6b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 1 deletions

View File

@ -3422,7 +3422,7 @@ language-servers = ["just-lsp"]
[[grammar]] [[grammar]]
name = "just" name = "just"
source = { git = "https://github.com/poliorcetics/tree-sitter-just", rev = "8d03cfdd7ab89ff76d935827de1b93450fa0ec0a" } source = { git = "https://github.com/poliorcetics/tree-sitter-just", rev = "0f84211c637813bcf1eb32c9e35847cdaea8760d" }
[[language]] [[language]]
name = "gn" name = "gn"

View File

@ -61,6 +61,9 @@
(mod (mod
name: (identifier) @namespace) name: (identifier) @namespace)
(module_path
name: (identifier) @namespace)
; Paths ; Paths
(mod (mod

View File

@ -30,6 +30,9 @@
(function_call (function_call
name: (identifier) @local.reference) name: (identifier) @local.reference)
(module_path
name: (identifier) @local.reference)
(recipe_dependency (recipe_dependency
name: (identifier) @local.reference) name: (identifier) @local.reference)