aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/_javascript/locals.scm
blob: 9435661679331b0c00005fc9af4e3158f929eb2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; 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))