mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-07 05:50:04 -04:00
fix(julia): update queries to parser change
This commit is contained in:
parent
43dbdeea85
commit
360315540c
2 changed files with 6 additions and 5 deletions
|
|
@ -13,7 +13,8 @@
|
|||
(do_clause)
|
||||
(compound_statement)
|
||||
|
||||
(assignment_expression)
|
||||
(assignment)
|
||||
|
||||
(binary_expression)
|
||||
(call_expression)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
;;; Variables
|
||||
(assignment_expression
|
||||
(assignment
|
||||
(identifier) @definition.var)
|
||||
(assignment_expression
|
||||
(assignment
|
||||
(tuple_expression
|
||||
(identifier) @definition.var))
|
||||
|
||||
;;; let/const bindings
|
||||
(variable_declaration
|
||||
(let_binding
|
||||
(identifier) @definition.var)
|
||||
(variable_declaration
|
||||
(let_binding
|
||||
(tuple_expression
|
||||
(identifier) @definition.var))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue