helix/runtime/queries/_javascript/locals.scm

15 lines
402 B
Scheme
Raw Normal View History

; Definitions
;------------
; 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.
; (i)
(formal_parameters
2025-02-25 01:46:34 +08:00
(identifier) @local.definition.variable.parameter)
; (i = 1)
(formal_parameters
(assignment_pattern
2025-02-25 01:46:34 +08:00
left: (identifier) @local.definition.variable.parameter))