helix/runtime/queries/_javascript/locals.scm

15 lines
364 B
Scheme
Raw Normal View History

2024-09-13 13:28:20 -05:00
; 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
(identifier) @local.definition)
; (i = 1)
(formal_parameters
(assignment_pattern
left: (identifier) @local.definition))