forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
808 B
Scheme
37 lines
808 B
Scheme
; Function and method parameters
|
|
;-------------------------------
|
|
|
|
; Javascript and Typescript Treesitter grammars deviate when defining the
|
|
; tree structure for parameters, so we need to address them in each specific
|
|
; language instead of ecma.
|
|
|
|
; (p)
|
|
(formal_parameters
|
|
(identifier) @variable.parameter)
|
|
|
|
; (...p)
|
|
(formal_parameters
|
|
(rest_pattern
|
|
(identifier) @variable.parameter))
|
|
|
|
; ({ p })
|
|
(formal_parameters
|
|
(object_pattern
|
|
(shorthand_property_identifier_pattern) @variable.parameter))
|
|
|
|
; ({ a: p })
|
|
(formal_parameters
|
|
(object_pattern
|
|
(pair_pattern
|
|
value: (identifier) @variable.parameter)))
|
|
|
|
; ([ p ])
|
|
(formal_parameters
|
|
(array_pattern
|
|
(identifier) @variable.parameter))
|
|
|
|
; (p = 1)
|
|
(formal_parameters
|
|
(assignment_pattern
|
|
left: (identifier) @variable.parameter))
|