Files
helix/runtime/queries/swift/highlights.scm

224 lines
5.8 KiB
Scheme

; Upstream: https://github.com/alex-pinkus/tree-sitter-swift/blob/7b7909f2f6b9414be0958275f4c8e5d69c3bca43/queries/highlights.scm
; Typed throws (SE-0413), `func f() throws(MyError)`: the `throws` keyword is a
; hidden token inside `throws_clause`, so it has no node of its own to capture.
; Capturing the whole clause as a base layer up here, before the punctuation and
; type rules below, leaves only the bare `throws` word coloured: the parens fall
; back to @punctuation.bracket and the error type to @type via those later, more
; specific rules.
(throws_clause) @keyword
(line_string_literal
["\\(" ")"] @punctuation.special)
["." ";" ":" "," ] @punctuation.delimiter
["(" ")" "[" "]" "{" "}" "<" ">"] @punctuation.bracket
; Operators
[
"!"
"?"
"+"
"-"
"\\"
"*"
"/"
"%"
"="
"+="
"-="
"*="
"/="
"<"
">"
"<="
">="
"++"
"--"
"&"
"~"
"%="
"!="
"!=="
"=="
"==="
"??"
"->"
"..<"
"..."
(custom_operator)
] @operator
"?" @type
(type_annotation "!" @type)
; Identifiers
(simple_identifier) @variable
(attribute) @variable
(type_identifier) @type
(self_expression) @variable.builtin
(user_type (type_identifier) @variable.builtin (#eq? @variable.builtin "Self"))
; Declarations
"func" @keyword.function
[
(visibility_modifier)
(member_modifier)
(function_modifier)
(property_modifier)
(parameter_modifier)
(inheritance_modifier)
] @keyword
(function_declaration (simple_identifier) @function.method)
(protocol_function_declaration (simple_identifier) @function.method)
(init_declaration ["init" @constructor])
(deinit_declaration ["deinit" @constructor])
(throws) @keyword
"async" @keyword
"await" @keyword
(where_keyword) @keyword
(parameter external_name: (simple_identifier) @variable.parameter)
(parameter name: (simple_identifier) @variable.parameter)
(type_parameter (type_identifier) @variable.parameter)
(inheritance_constraint (identifier (simple_identifier) @variable.parameter))
(equality_constraint (identifier (simple_identifier) @variable.parameter))
(pattern bound_identifier: (simple_identifier)) @variable
[
"typealias"
"struct"
"class"
"actor"
"enum"
"protocol"
"extension"
"indirect"
"nonisolated"
"override"
"convenience"
"required"
"mutating"
"associatedtype"
"package"
"any"
] @keyword
(opaque_type ["some" @keyword])
(existential_type ["any" @keyword])
(precedence_group_declaration
["precedencegroup" @keyword]
(simple_identifier) @type)
(precedence_group_attribute
(simple_identifier) @keyword
[(simple_identifier) @type
(boolean_literal) @constant.builtin.boolean])
[
(getter_specifier)
(setter_specifier)
(modify_specifier)
] @keyword
(class_body (property_declaration (pattern (simple_identifier) @variable.other.member)))
(protocol_property_declaration (pattern (simple_identifier) @variable.other.member))
(import_declaration "import" @keyword.control.import)
(enum_entry "case" @keyword)
; Member access
(navigation_suffix
(simple_identifier) @variable.other.member)
; Function calls
(call_expression (simple_identifier) @function) ; foo()
(call_expression ; foo.bar.baz(): highlight the baz()
(navigation_expression
(navigation_suffix (simple_identifier) @function)))
((navigation_expression
(simple_identifier) @type) ; SomeType.method(): highlight SomeType as a type
(#match? @type "^[A-Z]"))
(call_expression (simple_identifier) @keyword (#eq? @keyword "defer")) ; defer { ... }
(try_operator) @operator
(try_operator ["try" @keyword])
(directive) @function.macro
(diagnostic) @function.macro
; Freestanding macro expansion (`#myMacro(…)`): colour the macro name. The `.`
; anchors to the direct-child name so the call arguments are unaffected.
(macro_invocation . (simple_identifier) @function.macro)
; Playground literals: `#colorLiteral(…)`, `#imageLiteral(…)`, `#fileLiteral(…)`.
(playground_literal
["colorLiteral" "fileLiteral" "imageLiteral"] @function.macro)
; Statements
(for_statement "for" @keyword.control.repeat)
(for_statement "in" @keyword.control.repeat)
; The loop variable is now an `item: (pattern …)` (was a bare `simple_identifier`
; pre-0.7). `for x in xs` is caught by the `pattern bound_identifier` rule above
; and tuple bindings `for (k, v) in …` by the general `(simple_identifier)` rule,
; so no dedicated rule is needed here.
(else) @keyword
(as_operator) @keyword
["while" "repeat" "continue" "break"] @keyword.control.repeat
["let" "var"] @keyword
(guard_statement "guard" @keyword.control.conditional)
(if_statement "if" @keyword.control.conditional)
(switch_statement "switch" @keyword.control.conditional)
(switch_entry "case" @keyword.control.conditional)
(switch_entry "fallthrough" @keyword.control.conditional)
(switch_entry (default_keyword) @keyword.control.conditional)
"return" @keyword.control.return
(ternary_expression
["?" ":"] @keyword.control.conditional)
["do" (throw_keyword) (catch_keyword)] @keyword.control.exception
(statement_label) @label
; Comments
(comment) @comment
(multiline_comment) @comment
; String literals
(line_str_text) @string
(str_escaped_char) @string
(multi_line_str_text) @string
(raw_str_part) @string
(raw_str_end_part) @string
(raw_str_interpolation_start) @punctuation.special
["\"" "\"\"\""] @string
; Lambda literals
(lambda_literal "in" @keyword.operator)
; Basic literals
[
(hex_literal)
(oct_literal)
(bin_literal)
] @constant.numeric
(integer_literal) @constant.numeric.integer
(real_literal) @constant.numeric.float
(boolean_literal) @constant.builtin.boolean
"nil" @constant.builtin
; Magic compile-time literals: `#file`, `#fileID`, `#filePath`, `#line`,
; `#column`, `#function`, `#dsohandle`. Colour the whole node (incl. the `#`).
(special_literal) @constant.builtin
(value_parameter_pack ["each" @keyword])
(value_pack_expansion ["repeat" @keyword])
(type_parameter_pack ["each" @keyword])
(type_pack_expansion ["repeat" @keyword])