julia: add if_clause (#4204)

* fix(julia/highlights): Add `if_clause`

* Update Julia lockfile revision
This commit is contained in:
Sergio A. Vargas 2023-01-23 03:14:30 -05:00 committed by GitHub
parent 6cf93175bf
commit 4895c2133f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -216,7 +216,7 @@
"revision": "505f5bd90053ae895aa3d6f2bac8071dd9abd8b2"
},
"julia": {
"revision": "041217800bf423099015e1654c9a4fdd75310bb1"
"revision": "9d368185be7e8139f2eda93d8b0acc2a54031718"
},
"kotlin": {
"revision": "b953dbdd05257fcb2b64bc4d9c1578fac12e3c28"

View file

@ -128,6 +128,8 @@
["elseif"] @conditional)
(else_clause
["else"] @conditional)
(if_clause
"if" @conditional) ; `if` clause in comprehensions
(ternary_expression
["?" ":"] @conditional.ternary)