aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/_typescript/locals.scm
blob: fe13f21d3d6573eda486e01c566a1041e36e3028 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; 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: t)
; (i: t = 1)
(required_parameter
  (identifier) @local.definition)

; (i?: t)
; (i?: t = 1) // Invalid but still posible to hihglight.
(optional_parameter
  (identifier) @local.definition)