nvim-treesitter/queries/slang/highlights.scm
2023-11-29 00:54:24 -08:00

42 lines
421 B
Scheme

; inherits: hlsl
[
"var"
"let"
"This"
] @type.builtin
[
"interface"
"extension"
"property"
] @keyword
[
"__init"
] @constructor
[
"__subscript"
"get"
"set"
] @function.builtin
(interface_requirements (identifier) @type)
(binary_expression
["is" "as"]
right: (identifier) @type)
[
"as"
"is"
] @keyword.operator
[
"__exported"
"import"
] @include
(property_declaration
(identifier) @property)