|
|
|
@ -1,28 +1,36 @@
|
|
|
|
|
; inherits: javascript
|
|
|
|
|
|
|
|
|
|
; Types
|
|
|
|
|
; Namespaces
|
|
|
|
|
|
|
|
|
|
(type_identifier) @type
|
|
|
|
|
(predefined_type) @type.builtin
|
|
|
|
|
(internal_module
|
|
|
|
|
[((identifier) @namespace) ((nested_identifier (identifier) @namespace))])
|
|
|
|
|
|
|
|
|
|
((identifier) @type
|
|
|
|
|
(#match? @type "^[A-Z]"))
|
|
|
|
|
(ambient_declaration "global" @namespace)
|
|
|
|
|
|
|
|
|
|
(type_arguments
|
|
|
|
|
"<" @punctuation.bracket
|
|
|
|
|
">" @punctuation.bracket)
|
|
|
|
|
|
|
|
|
|
; Variables
|
|
|
|
|
|
|
|
|
|
(required_parameter (identifier) @variable.parameter)
|
|
|
|
|
(optional_parameter (identifier) @variable.parameter)
|
|
|
|
|
|
|
|
|
|
; Punctuation
|
|
|
|
|
|
|
|
|
|
[
|
|
|
|
|
":"
|
|
|
|
|
] @punctuation.delimiter
|
|
|
|
|
|
|
|
|
|
(optional_parameter "?" @punctuation.special)
|
|
|
|
|
(property_signature "?" @punctuation.special)
|
|
|
|
|
|
|
|
|
|
(conditional_type ["?" ":"] @operator)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; Keywords
|
|
|
|
|
|
|
|
|
|
[
|
|
|
|
|
"abstract"
|
|
|
|
|
"declare"
|
|
|
|
|
"export"
|
|
|
|
|
"infer"
|
|
|
|
|
"implements"
|
|
|
|
|
"keyof"
|
|
|
|
|
"namespace"
|
|
|
|
@ -40,3 +48,17 @@
|
|
|
|
|
"protected"
|
|
|
|
|
"readonly"
|
|
|
|
|
] @keyword.storage.modifier
|
|
|
|
|
|
|
|
|
|
; inherits: javascript
|
|
|
|
|
|
|
|
|
|
; Types
|
|
|
|
|
|
|
|
|
|
(type_identifier) @type
|
|
|
|
|
(predefined_type) @type.builtin
|
|
|
|
|
|
|
|
|
|
(type_arguments
|
|
|
|
|
"<" @punctuation.bracket
|
|
|
|
|
">" @punctuation.bracket)
|
|
|
|
|
|
|
|
|
|
((identifier) @type
|
|
|
|
|
(#match? @type "^[A-Z]"))
|
|
|
|
|