2023-09-17 20:00:21 +03:00
|
|
|
; inherits: soql
|
2024-02-19 00:00:07 +09:00
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
; Apex + SOQL
|
2023-09-17 20:00:21 +03:00
|
|
|
[
|
|
|
|
|
"["
|
|
|
|
|
"]"
|
|
|
|
|
"{"
|
|
|
|
|
"}"
|
|
|
|
|
"("
|
|
|
|
|
")"
|
|
|
|
|
] @punctuation.bracket
|
|
|
|
|
|
|
|
|
|
[
|
|
|
|
|
","
|
|
|
|
|
"."
|
|
|
|
|
":"
|
|
|
|
|
"?"
|
|
|
|
|
";"
|
2024-01-06 15:05:50 +09:00
|
|
|
] @punctuation.delimiter
|
2023-09-17 20:00:21 +03:00
|
|
|
|
2024-02-19 16:49:04 +01:00
|
|
|
; Default general color definition
|
2023-09-17 20:00:21 +03:00
|
|
|
(identifier) @variable
|
|
|
|
|
|
|
|
|
|
(type_identifier) @type
|
|
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
; Methods
|
2023-09-17 20:00:21 +03:00
|
|
|
(method_declaration
|
feat!: align standard captures with upstream
Problem: Sharing highlight queries with upstream tree-sitter and
Helix is difficult.
Solution: Where reasonable, use capture names in tree-sitter's standard
list or Helix's Atom-style hierarchy.
Specifically:
* tree-sitter "standard capture names"
(https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72):
- `@parameter` -> `@variable.parameter`
- `@field` -> `@variable.member`
- `@namespace` -> `@module`
- `@float` -> `@number.float`
- `@symbol` -> `@string.special.symbol`
- `@string.regex` -> `@string.regexp`
- `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below)
- `@text.title` -> `@markup.heading`
- `@text.literal` -> `@markup.raw`
- `@text.reference` -> `@markup.link`
- `@text.uri` -> `@markup.link.url` (in markup links)
- `@string.special` -> `@markup.link.label` (non-url links)
- `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`)
* Helix captures
(https://docs.helix-editor.com/master/themes.html#syntax-highlighting):
- `@method` -> `@function.method`
- `@method.call` -> `@function.method.call`
- `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}`
- `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}`
- `@text.uri` -> `@string.special.url` (outside markup)
- `@preproc` -> `@keyword.directive`
- `@define` -> `@keyword.directive`(`.define`?)
- `@storageclass` -> `@keyword.storage`
- `@conditional` -> `@keyword.conditional`
- `@debug` -> `@keyword.debug`
- `@exception` -> `@keyword.exception`
- `@include` -> `@keyword.import`
- `@repeat` -> `@keyword.repeat`
* cleanup
- remove some redundant `@conceal` (but still allow it for conceal-only patterns)
- remove obsolete `@error` (syntax linting is out of scope for this repo)
- sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
|
|
|
name: (identifier) @function.method)
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
(method_invocation
|
feat!: align standard captures with upstream
Problem: Sharing highlight queries with upstream tree-sitter and
Helix is difficult.
Solution: Where reasonable, use capture names in tree-sitter's standard
list or Helix's Atom-style hierarchy.
Specifically:
* tree-sitter "standard capture names"
(https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72):
- `@parameter` -> `@variable.parameter`
- `@field` -> `@variable.member`
- `@namespace` -> `@module`
- `@float` -> `@number.float`
- `@symbol` -> `@string.special.symbol`
- `@string.regex` -> `@string.regexp`
- `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below)
- `@text.title` -> `@markup.heading`
- `@text.literal` -> `@markup.raw`
- `@text.reference` -> `@markup.link`
- `@text.uri` -> `@markup.link.url` (in markup links)
- `@string.special` -> `@markup.link.label` (non-url links)
- `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`)
* Helix captures
(https://docs.helix-editor.com/master/themes.html#syntax-highlighting):
- `@method` -> `@function.method`
- `@method.call` -> `@function.method.call`
- `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}`
- `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}`
- `@text.uri` -> `@string.special.url` (outside markup)
- `@preproc` -> `@keyword.directive`
- `@define` -> `@keyword.directive`(`.define`?)
- `@storageclass` -> `@keyword.storage`
- `@conditional` -> `@keyword.conditional`
- `@debug` -> `@keyword.debug`
- `@exception` -> `@keyword.exception`
- `@include` -> `@keyword.import`
- `@repeat` -> `@keyword.repeat`
* cleanup
- remove some redundant `@conceal` (but still allow it for conceal-only patterns)
- remove obsolete `@error` (syntax linting is out of scope for this repo)
- sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
|
|
|
name: (identifier) @function.method.call)
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
(super) @function.builtin
|
|
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
; Annotations
|
2023-09-17 20:00:21 +03:00
|
|
|
(annotation
|
|
|
|
|
name: (identifier) @attribute)
|
|
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
; Types
|
2023-09-17 20:00:21 +03:00
|
|
|
(interface_declaration
|
|
|
|
|
name: (identifier) @type)
|
|
|
|
|
|
|
|
|
|
(class_declaration
|
|
|
|
|
name: (identifier) @type)
|
|
|
|
|
|
|
|
|
|
(class_declaration
|
2024-01-06 15:05:50 +09:00
|
|
|
(superclass) @type)
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
(enum_declaration
|
|
|
|
|
name: (identifier) @type)
|
|
|
|
|
|
|
|
|
|
(enum_constant
|
|
|
|
|
name: (identifier) @constant)
|
|
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
(type_arguments
|
|
|
|
|
"<" @punctuation.delimiter)
|
|
|
|
|
|
|
|
|
|
(type_arguments
|
|
|
|
|
">" @punctuation.delimiter)
|
2023-09-17 20:00:21 +03:00
|
|
|
|
2024-01-21 22:05:44 +09:00
|
|
|
(field_access
|
|
|
|
|
object: (identifier) @type)
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
(field_access
|
|
|
|
|
field: (identifier) @property)
|
|
|
|
|
|
|
|
|
|
((scoped_identifier
|
|
|
|
|
scope: (identifier) @type)
|
2024-01-06 15:05:50 +09:00
|
|
|
(#match? @type "^[A-Z]"))
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
((method_invocation
|
|
|
|
|
object: (identifier) @type)
|
2024-01-06 15:05:50 +09:00
|
|
|
(#match? @type "^[A-Z]"))
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
(method_declaration
|
|
|
|
|
(formal_parameters
|
|
|
|
|
(formal_parameter
|
feat!: align standard captures with upstream
Problem: Sharing highlight queries with upstream tree-sitter and
Helix is difficult.
Solution: Where reasonable, use capture names in tree-sitter's standard
list or Helix's Atom-style hierarchy.
Specifically:
* tree-sitter "standard capture names"
(https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72):
- `@parameter` -> `@variable.parameter`
- `@field` -> `@variable.member`
- `@namespace` -> `@module`
- `@float` -> `@number.float`
- `@symbol` -> `@string.special.symbol`
- `@string.regex` -> `@string.regexp`
- `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below)
- `@text.title` -> `@markup.heading`
- `@text.literal` -> `@markup.raw`
- `@text.reference` -> `@markup.link`
- `@text.uri` -> `@markup.link.url` (in markup links)
- `@string.special` -> `@markup.link.label` (non-url links)
- `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`)
* Helix captures
(https://docs.helix-editor.com/master/themes.html#syntax-highlighting):
- `@method` -> `@function.method`
- `@method.call` -> `@function.method.call`
- `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}`
- `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}`
- `@text.uri` -> `@string.special.url` (outside markup)
- `@preproc` -> `@keyword.directive`
- `@define` -> `@keyword.directive`(`.define`?)
- `@storageclass` -> `@keyword.storage`
- `@conditional` -> `@keyword.conditional`
- `@debug` -> `@keyword.debug`
- `@exception` -> `@keyword.exception`
- `@include` -> `@keyword.import`
- `@repeat` -> `@keyword.repeat`
* cleanup
- remove some redundant `@conceal` (but still allow it for conceal-only patterns)
- remove obsolete `@error` (syntax linting is out of scope for this repo)
- sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
|
|
|
name: (identifier) @variable.parameter)))
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
(constructor_declaration
|
|
|
|
|
name: (identifier) @constructor)
|
|
|
|
|
|
|
|
|
|
(dml_type) @function.builtin
|
|
|
|
|
|
|
|
|
|
(assignment_operator) @operator
|
|
|
|
|
|
2024-10-05 10:35:26 -06:00
|
|
|
(update_operator) @operator
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
(trigger_declaration
|
|
|
|
|
name: (identifier) @type
|
|
|
|
|
object: (identifier) @type
|
|
|
|
|
(trigger_event) @keyword
|
2024-01-06 15:05:50 +09:00
|
|
|
(","
|
|
|
|
|
(trigger_event) @keyword)*)
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
"@"
|
2023-09-17 20:00:21 +03:00
|
|
|
"="
|
|
|
|
|
"!="
|
|
|
|
|
"<="
|
|
|
|
|
">="
|
|
|
|
|
] @operator
|
|
|
|
|
|
|
|
|
|
(binary_expression
|
2024-03-21 20:44:35 +09:00
|
|
|
operator: [
|
|
|
|
|
">"
|
|
|
|
|
"<"
|
|
|
|
|
"=="
|
|
|
|
|
"==="
|
|
|
|
|
"!=="
|
|
|
|
|
"&&"
|
|
|
|
|
"||"
|
|
|
|
|
"+"
|
|
|
|
|
"-"
|
|
|
|
|
"*"
|
|
|
|
|
"/"
|
|
|
|
|
"&"
|
|
|
|
|
"|"
|
|
|
|
|
"^"
|
|
|
|
|
"%"
|
|
|
|
|
"<<"
|
|
|
|
|
">>"
|
|
|
|
|
">>>"
|
|
|
|
|
] @operator)
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
(unary_expression
|
2024-03-21 20:44:35 +09:00
|
|
|
operator: [
|
|
|
|
|
"+"
|
|
|
|
|
"-"
|
|
|
|
|
"!"
|
|
|
|
|
"~"
|
|
|
|
|
]) @operator
|
2023-09-17 20:00:21 +03:00
|
|
|
|
2024-10-10 14:57:54 -06:00
|
|
|
"=>" @operator
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
[
|
|
|
|
|
(boolean_type)
|
|
|
|
|
(void_type)
|
2024-01-05 03:19:54 +09:00
|
|
|
] @type.builtin
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
; Fields
|
|
|
|
|
(field_declaration
|
2024-03-21 20:44:35 +09:00
|
|
|
declarator: (variable_declarator
|
|
|
|
|
name: (identifier) @variable.member))
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
(field_access
|
feat!: align standard captures with upstream
Problem: Sharing highlight queries with upstream tree-sitter and
Helix is difficult.
Solution: Where reasonable, use capture names in tree-sitter's standard
list or Helix's Atom-style hierarchy.
Specifically:
* tree-sitter "standard capture names"
(https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72):
- `@parameter` -> `@variable.parameter`
- `@field` -> `@variable.member`
- `@namespace` -> `@module`
- `@float` -> `@number.float`
- `@symbol` -> `@string.special.symbol`
- `@string.regex` -> `@string.regexp`
- `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below)
- `@text.title` -> `@markup.heading`
- `@text.literal` -> `@markup.raw`
- `@text.reference` -> `@markup.link`
- `@text.uri` -> `@markup.link.url` (in markup links)
- `@string.special` -> `@markup.link.label` (non-url links)
- `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`)
* Helix captures
(https://docs.helix-editor.com/master/themes.html#syntax-highlighting):
- `@method` -> `@function.method`
- `@method.call` -> `@function.method.call`
- `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}`
- `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}`
- `@text.uri` -> `@string.special.url` (outside markup)
- `@preproc` -> `@keyword.directive`
- `@define` -> `@keyword.directive`(`.define`?)
- `@storageclass` -> `@keyword.storage`
- `@conditional` -> `@keyword.conditional`
- `@debug` -> `@keyword.debug`
- `@exception` -> `@keyword.exception`
- `@include` -> `@keyword.import`
- `@repeat` -> `@keyword.repeat`
* cleanup
- remove some redundant `@conceal` (but still allow it for conceal-only patterns)
- remove obsolete `@error` (syntax linting is out of scope for this repo)
- sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
|
|
|
field: (identifier) @variable.member)
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
; Variables
|
2024-06-17 10:29:06 -04:00
|
|
|
(variable_declarator
|
|
|
|
|
(identifier) @property)
|
|
|
|
|
|
2023-09-17 20:00:21 +03:00
|
|
|
(field_declaration
|
2024-01-06 15:05:50 +09:00
|
|
|
(modifiers
|
|
|
|
|
(modifier
|
|
|
|
|
[
|
2024-09-16 00:15:57 -06:00
|
|
|
(final)
|
|
|
|
|
(static)
|
2024-01-06 15:05:50 +09:00
|
|
|
])
|
|
|
|
|
(modifier
|
|
|
|
|
[
|
2024-09-16 00:15:57 -06:00
|
|
|
(final)
|
|
|
|
|
(static)
|
2024-01-06 15:05:50 +09:00
|
|
|
]))
|
2023-09-17 20:00:21 +03:00
|
|
|
(variable_declarator
|
|
|
|
|
name: (identifier) @constant))
|
|
|
|
|
|
|
|
|
|
((identifier) @constant
|
|
|
|
|
(#lua-match? @constant "^[A-Z][A-Z0-9_]+$")) ; SCREAM SNAKE CASE
|
|
|
|
|
|
|
|
|
|
(this) @variable.builtin
|
|
|
|
|
|
|
|
|
|
; Literals
|
|
|
|
|
[
|
|
|
|
|
(int)
|
|
|
|
|
(decimal)
|
|
|
|
|
(currency_literal)
|
|
|
|
|
] @number
|
|
|
|
|
|
|
|
|
|
(string_literal) @string
|
|
|
|
|
|
|
|
|
|
[
|
|
|
|
|
(line_comment)
|
|
|
|
|
(block_comment)
|
|
|
|
|
] @comment
|
|
|
|
|
|
|
|
|
|
(null_literal) @constant.builtin
|
|
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
; ;; Keywords
|
2023-09-17 20:00:21 +03:00
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
"abstract"
|
|
|
|
|
"final"
|
|
|
|
|
"private"
|
|
|
|
|
"protected"
|
|
|
|
|
"public"
|
|
|
|
|
"static"
|
2024-03-08 19:09:51 +09:00
|
|
|
] @keyword.modifier
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
[
|
|
|
|
|
"if"
|
|
|
|
|
"else"
|
|
|
|
|
"switch"
|
feat!: align standard captures with upstream
Problem: Sharing highlight queries with upstream tree-sitter and
Helix is difficult.
Solution: Where reasonable, use capture names in tree-sitter's standard
list or Helix's Atom-style hierarchy.
Specifically:
* tree-sitter "standard capture names"
(https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72):
- `@parameter` -> `@variable.parameter`
- `@field` -> `@variable.member`
- `@namespace` -> `@module`
- `@float` -> `@number.float`
- `@symbol` -> `@string.special.symbol`
- `@string.regex` -> `@string.regexp`
- `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below)
- `@text.title` -> `@markup.heading`
- `@text.literal` -> `@markup.raw`
- `@text.reference` -> `@markup.link`
- `@text.uri` -> `@markup.link.url` (in markup links)
- `@string.special` -> `@markup.link.label` (non-url links)
- `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`)
* Helix captures
(https://docs.helix-editor.com/master/themes.html#syntax-highlighting):
- `@method` -> `@function.method`
- `@method.call` -> `@function.method.call`
- `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}`
- `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}`
- `@text.uri` -> `@string.special.url` (outside markup)
- `@preproc` -> `@keyword.directive`
- `@define` -> `@keyword.directive`(`.define`?)
- `@storageclass` -> `@keyword.storage`
- `@conditional` -> `@keyword.conditional`
- `@debug` -> `@keyword.debug`
- `@exception` -> `@keyword.exception`
- `@include` -> `@keyword.import`
- `@repeat` -> `@keyword.repeat`
* cleanup
- remove some redundant `@conceal` (but still allow it for conceal-only patterns)
- remove obsolete `@error` (syntax linting is out of scope for this repo)
- sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
|
|
|
] @keyword.conditional
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
[
|
|
|
|
|
"for"
|
|
|
|
|
"while"
|
|
|
|
|
"do"
|
|
|
|
|
"break"
|
feat!: align standard captures with upstream
Problem: Sharing highlight queries with upstream tree-sitter and
Helix is difficult.
Solution: Where reasonable, use capture names in tree-sitter's standard
list or Helix's Atom-style hierarchy.
Specifically:
* tree-sitter "standard capture names"
(https://github.com/tree-sitter/tree-sitter/blob/3f44b896852eb7daaa6df4fb778c9bb52c70c815/highlight/src/lib.rs#L20-L72):
- `@parameter` -> `@variable.parameter`
- `@field` -> `@variable.member`
- `@namespace` -> `@module`
- `@float` -> `@number.float`
- `@symbol` -> `@string.special.symbol`
- `@string.regex` -> `@string.regexp`
- `@text.*` -> `@markup.*` (`strong`, `italic`, `link`, `strikethrough`; with exceptions; see below)
- `@text.title` -> `@markup.heading`
- `@text.literal` -> `@markup.raw`
- `@text.reference` -> `@markup.link`
- `@text.uri` -> `@markup.link.url` (in markup links)
- `@string.special` -> `@markup.link.label` (non-url links)
- `@punctuation.special` -> `@markup.list` (markdown lists only; move subitems from `@text.todo`)
* Helix captures
(https://docs.helix-editor.com/master/themes.html#syntax-highlighting):
- `@method` -> `@function.method`
- `@method.call` -> `@function.method.call`
- `@text.{todo,warning,note,danger}` -> `@comment.{error,warning,hint,info,todo}`
- `@text.diff.{add,delete,}` -> `@diff.{plus,minus,delta}`
- `@text.uri` -> `@string.special.url` (outside markup)
- `@preproc` -> `@keyword.directive`
- `@define` -> `@keyword.directive`(`.define`?)
- `@storageclass` -> `@keyword.storage`
- `@conditional` -> `@keyword.conditional`
- `@debug` -> `@keyword.debug`
- `@exception` -> `@keyword.exception`
- `@include` -> `@keyword.import`
- `@repeat` -> `@keyword.repeat`
* cleanup
- remove some redundant `@conceal` (but still allow it for conceal-only patterns)
- remove obsolete `@error` (syntax linting is out of scope for this repo)
- sort, cleanup capture list in `CONTRIBUTING.md`
2023-12-24 10:00:20 +01:00
|
|
|
] @keyword.repeat
|
2023-09-17 20:00:21 +03:00
|
|
|
|
2024-01-06 15:05:50 +09:00
|
|
|
"return" @keyword.return
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
[
|
2024-01-06 15:05:50 +09:00
|
|
|
"throw"
|
|
|
|
|
"finally"
|
|
|
|
|
"try"
|
|
|
|
|
"catch"
|
|
|
|
|
] @keyword.exception
|
2023-09-17 20:00:21 +03:00
|
|
|
|
|
|
|
|
"new" @keyword.operator
|
|
|
|
|
|
|
|
|
|
[
|
2024-10-05 10:35:26 -06:00
|
|
|
(abstract)
|
2024-09-16 00:15:57 -06:00
|
|
|
(all_rows_clause)
|
2023-09-17 20:00:21 +03:00
|
|
|
"continue"
|
|
|
|
|
"extends"
|
2024-10-05 10:35:26 -06:00
|
|
|
(final)
|
2023-09-17 20:00:21 +03:00
|
|
|
"get"
|
2024-10-05 10:35:26 -06:00
|
|
|
(global)
|
2023-09-17 20:00:21 +03:00
|
|
|
"implements"
|
|
|
|
|
"instanceof"
|
|
|
|
|
"on"
|
2024-10-05 10:35:26 -06:00
|
|
|
(override)
|
|
|
|
|
(private)
|
|
|
|
|
(protected)
|
|
|
|
|
(public)
|
2023-09-17 20:00:21 +03:00
|
|
|
"set"
|
2024-10-05 10:35:26 -06:00
|
|
|
(static)
|
|
|
|
|
(testMethod)
|
|
|
|
|
(webservice)
|
|
|
|
|
(transient)
|
2023-09-17 20:00:21 +03:00
|
|
|
"trigger"
|
2024-10-05 10:35:26 -06:00
|
|
|
(virtual)
|
2023-09-17 20:00:21 +03:00
|
|
|
"when"
|
2024-10-05 10:35:26 -06:00
|
|
|
(with_sharing)
|
|
|
|
|
(without_sharing)
|
|
|
|
|
(inherited_sharing)
|
2023-09-17 20:00:21 +03:00
|
|
|
] @keyword
|
|
|
|
|
|
2024-04-23 12:23:15 -07:00
|
|
|
[
|
|
|
|
|
"interface"
|
|
|
|
|
"class"
|
|
|
|
|
"enum"
|
|
|
|
|
] @keyword.type
|
|
|
|
|
|
2024-01-09 11:50:31 +02:00
|
|
|
"System.runAs" @function.builtin
|