2024-02-19 19:49:12 +00:00
|
|
|
(statement) @statement
|
|
|
|
[
|
|
|
|
(expression)
|
|
|
|
(function_expression)
|
|
|
|
(index_expression)
|
|
|
|
] @expression
|
2023-10-18 21:52:56 +00:00
|
|
|
(value) @value
|
2023-12-30 07:04:39 +00:00
|
|
|
(identifier) @variable
|
2024-02-19 19:49:12 +00:00
|
|
|
|
2023-10-18 21:52:56 +00:00
|
|
|
(value) @value
|
|
|
|
(string) @string
|
2023-10-24 00:45:47 +00:00
|
|
|
[
|
|
|
|
(integer)
|
|
|
|
(float)
|
|
|
|
] @number
|
2024-02-19 19:49:12 +00:00
|
|
|
[
|
|
|
|
(command)
|
|
|
|
(function)
|
|
|
|
] @function
|
|
|
|
(range) @range
|
2023-10-18 21:52:56 +00:00
|
|
|
(boolean) @boolean
|
2023-10-24 00:45:47 +00:00
|
|
|
(list) @list
|
2024-02-19 19:49:12 +00:00
|
|
|
(map) @map
|
2023-10-24 00:45:47 +00:00
|
|
|
|
2024-02-19 19:49:12 +00:00
|
|
|
(struct_definition) @struct
|
|
|
|
(enum_definition) @enum
|
|
|
|
|
|
|
|
(block) @block
|
|
|
|
|
|
|
|
["," ";"] @punctuation.delimiter
|
2023-10-24 00:45:47 +00:00
|
|
|
|
|
|
|
[
|
|
|
|
"["
|
|
|
|
"]"
|
|
|
|
"{"
|
|
|
|
"}"
|
|
|
|
"<"
|
|
|
|
">"
|
2023-12-11 16:17:37 +00:00
|
|
|
"("
|
|
|
|
")"
|
2023-10-24 00:45:47 +00:00
|
|
|
] @punctuation.bracket
|
|
|
|
|
2024-02-19 19:49:12 +00:00
|
|
|
(type) @type
|
2023-12-30 07:04:39 +00:00
|
|
|
|
|
|
|
(assignment_operator) @operator.assignment
|
|
|
|
(logic_operator) @operator.logic
|
|
|
|
(math_operator) @operator.math
|
2023-10-24 00:45:47 +00:00
|
|
|
|
|
|
|
[
|
2024-02-19 19:49:12 +00:00
|
|
|
"as"
|
2023-12-11 16:17:37 +00:00
|
|
|
"async"
|
2024-02-19 19:49:12 +00:00
|
|
|
"break"
|
2023-10-24 00:45:47 +00:00
|
|
|
"else"
|
2023-12-30 14:29:33 +00:00
|
|
|
"else if"
|
2024-02-19 19:49:12 +00:00
|
|
|
"enum"
|
2023-12-11 16:17:37 +00:00
|
|
|
"false"
|
2023-10-24 00:45:47 +00:00
|
|
|
"for"
|
2023-12-11 16:17:37 +00:00
|
|
|
"if"
|
2023-10-24 00:45:47 +00:00
|
|
|
"in"
|
2024-02-19 19:49:12 +00:00
|
|
|
"loop"
|
2023-12-11 16:17:37 +00:00
|
|
|
"match"
|
2024-02-19 19:49:12 +00:00
|
|
|
"return"
|
|
|
|
"struct"
|
2023-12-11 16:17:37 +00:00
|
|
|
"true"
|
|
|
|
"while"
|
2023-12-30 05:39:49 +00:00
|
|
|
"->"
|
2024-02-19 19:49:12 +00:00
|
|
|
":"
|
|
|
|
"::"
|
|
|
|
"^"
|
2023-10-24 00:45:47 +00:00
|
|
|
] @keyword
|
|
|
|
|
2023-12-30 07:04:39 +00:00
|
|
|
(function_call) @function.call
|