Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
(class
  body: (_) @class.inside) @class.around

(trait
  body: (_) @class.inside) @class.around

(method
  body: (_) @function.inside) @function.around

(reopen_class
  body: (_) @class.inside) @class.around

(implement_trait
  body: (_) @class.inside) @class.around

(external_function
  body: (_) @function.inside) @function.around

(closure
  body: (_) @function.inside) @function.around

(arguments
  ((_) @parameter.inside . ","? @parameter.around) @parameter.around)

(type_arguments
  ((_) @parameter.inside . ","? @parameter.around) @parameter.around)

(line_comment) @comment.inside

(line_comment)+ @comment.around

(array (_) @entry.around)

(tuple (_) @entry.around)

(tuple_pattern (_) @entry.around)

(define_field (_) @entry.inside) @entry.around