aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/julia
Commit message (Collapse)AuthorAgeFilesLines
* fix(julia): treat :: as operator in type contextsFredrik Ekre2024-11-231-3/+3
| | | | | | | | | | | | This patch captures `::` as `@operator` within `(unary_typed_expression)` and `(typed_expression)`. These should be the only two cases that the parser can emit when encountering `::` in the source, but as a fallback it is still captured as `@punctuation` in all other cases. The reasons for capturing `::` as an operator are i) the close relation with the other type-operators `<:` and `>:` and ii) the fact that it is treated as an operator by the Julia parser, just like `<:` and `>:`.
* fix(julia): adapt queries to grammar changes (#6429)Sergio A. Vargas2024-04-141-1/+1
|
* chore(tests): consistent capturesChristian Clason2024-01-191-20/+20
|
* feat(julia): add tests for new changesAmaan Qureshi2023-03-101-0/+26