fix: update julia queries to parser change

This commit is contained in:
Christian Clason 2022-11-06 11:03:23 +01:00 committed by Christian Clason
parent 1fa45d8c79
commit f6bc84dabd
3 changed files with 3 additions and 3 deletions

View file

@ -12,6 +12,6 @@
(quote_statement) (quote_statement)
(do_clause) (do_clause)
(compound_expression) (compound_statement)
] @fold ] @fold

View file

@ -124,7 +124,7 @@
((identifier) @keyword (#any-of? @keyword "global" "local")) ; Grammar error ((identifier) @keyword (#any-of? @keyword "global" "local")) ; Grammar error
(compound_expression (compound_statement
["begin" "end"] @keyword) ["begin" "end"] @keyword)
(quote_statement (quote_statement
["quote" "end"] @keyword) ["quote" "end"] @keyword)

View file

@ -11,7 +11,7 @@
(quote_statement) (quote_statement)
(do_clause) (do_clause)
(compound_expression) (compound_statement)
(assignment_expression) (assignment_expression)
(binary_expression) (binary_expression)