mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-16 02:10:15 -04:00
fix(apex): update parser and highlights
This commit is contained in:
parent
5bcc338c3d
commit
7821feb7e7
2 changed files with 20 additions and 22 deletions
|
|
@ -9,7 +9,7 @@
|
||||||
"revision": "745d3c65c2294aca1110b6b6ad6805124be605c9"
|
"revision": "745d3c65c2294aca1110b6b6ad6805124be605c9"
|
||||||
},
|
},
|
||||||
"apex": {
|
"apex": {
|
||||||
"revision": "69330ef89fb6b7b2dd16b639d86811e9262c7369"
|
"revision": "779684231107cef4d86ac16f74320e9324680da3"
|
||||||
},
|
},
|
||||||
"arduino": {
|
"arduino": {
|
||||||
"revision": "415ebc8f75eb02a748faa03f5af199f08ced120f"
|
"revision": "415ebc8f75eb02a748faa03f5af199f08ced120f"
|
||||||
|
|
@ -675,7 +675,7 @@
|
||||||
"revision": "c478c6868648eff49eb04a4df90d703dc45b312a"
|
"revision": "c478c6868648eff49eb04a4df90d703dc45b312a"
|
||||||
},
|
},
|
||||||
"sflog": {
|
"sflog": {
|
||||||
"revision": "69330ef89fb6b7b2dd16b639d86811e9262c7369"
|
"revision": "779684231107cef4d86ac16f74320e9324680da3"
|
||||||
},
|
},
|
||||||
"slang": {
|
"slang": {
|
||||||
"revision": "dd991eb3b6957a33d9044e0f5914588f7f449a78"
|
"revision": "dd991eb3b6957a33d9044e0f5914588f7f449a78"
|
||||||
|
|
@ -696,10 +696,10 @@
|
||||||
"revision": "ee5a2d2ba30b487c4bbf613d2ef310a454c09c7c"
|
"revision": "ee5a2d2ba30b487c4bbf613d2ef310a454c09c7c"
|
||||||
},
|
},
|
||||||
"soql": {
|
"soql": {
|
||||||
"revision": "69330ef89fb6b7b2dd16b639d86811e9262c7369"
|
"revision": "779684231107cef4d86ac16f74320e9324680da3"
|
||||||
},
|
},
|
||||||
"sosl": {
|
"sosl": {
|
||||||
"revision": "69330ef89fb6b7b2dd16b639d86811e9262c7369"
|
"revision": "779684231107cef4d86ac16f74320e9324680da3"
|
||||||
},
|
},
|
||||||
"sourcepawn": {
|
"sourcepawn": {
|
||||||
"revision": "6b9bf9cbab91443380d2ca8a2f6c491cc7fac5bf"
|
"revision": "6b9bf9cbab91443380d2ca8a2f6c491cc7fac5bf"
|
||||||
|
|
|
||||||
|
|
@ -84,11 +84,7 @@
|
||||||
|
|
||||||
(assignment_operator) @operator
|
(assignment_operator) @operator
|
||||||
|
|
||||||
(update_expression
|
(update_operator) @operator
|
||||||
[
|
|
||||||
"++"
|
|
||||||
"--"
|
|
||||||
] @operator)
|
|
||||||
|
|
||||||
(trigger_declaration
|
(trigger_declaration
|
||||||
name: (identifier) @type
|
name: (identifier) @type
|
||||||
|
|
@ -226,30 +222,32 @@
|
||||||
"new" @keyword.operator
|
"new" @keyword.operator
|
||||||
|
|
||||||
[
|
[
|
||||||
"abstract"
|
(abstract)
|
||||||
(all_rows_clause)
|
(all_rows_clause)
|
||||||
"continue"
|
"continue"
|
||||||
"default"
|
"default"
|
||||||
"extends"
|
"extends"
|
||||||
"final"
|
(final)
|
||||||
"get"
|
"get"
|
||||||
"global"
|
(global)
|
||||||
"implements"
|
"implements"
|
||||||
"instanceof"
|
"instanceof"
|
||||||
"on"
|
"on"
|
||||||
"private"
|
(override)
|
||||||
"protected"
|
(private)
|
||||||
"public"
|
(protected)
|
||||||
|
(public)
|
||||||
"set"
|
"set"
|
||||||
"static"
|
(static)
|
||||||
"testMethod"
|
(testMethod)
|
||||||
"transient"
|
(webservice)
|
||||||
|
(transient)
|
||||||
"trigger"
|
"trigger"
|
||||||
"virtual"
|
(virtual)
|
||||||
"when"
|
"when"
|
||||||
"with_sharing"
|
(with_sharing)
|
||||||
"without_sharing"
|
(without_sharing)
|
||||||
"inherited_sharing"
|
(inherited_sharing)
|
||||||
] @keyword
|
] @keyword
|
||||||
|
|
||||||
[
|
[
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue