-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update julia parser to latest version, along with: - updating the queries, - pulling changes from `nvim-treesitter`’s queries (as the maintainters of the parser update the queries there), - reversing the queries’ order to be compatible with upstream.
- Loading branch information
Showing
6 changed files
with
478 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
[ | ||
(module_definition) | ||
(struct_definition) | ||
(macro_definition) | ||
(function_definition) | ||
(compound_expression) ; begin blocks | ||
(let_statement) | ||
(if_statement) | ||
(for_statement) | ||
(while_statement) | ||
(module_definition) | ||
(struct_definition) | ||
(macro_definition) | ||
(function_definition) | ||
(if_statement) | ||
(try_statement) | ||
(for_statement) | ||
(while_statement) | ||
(let_statement) | ||
(quote_statement) | ||
(do_clause) | ||
(compound_statement) ; begin block | ||
] @fold |
Oops, something went wrong.