blob: c5afe5f4eaeba7eea2a249a574e6e11b9e077a2c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[
(class_declaration body: (_) @class.inside)
(struct_declaration body: (_) @class.inside)
(interface_declaration body: (_) @class.inside)
(enum_declaration body: (_) @class.inside)
(delegate_declaration)
(record_declaration body: (_) @class.inside)
(record_struct_declaration body: (_) @class.inside)
] @class.around
(constructor_declaration body: (_) @function.inside) @function.around
(destructor_declaration body: (_) @function.inside) @function.around
(method_declaration body: (_) @function.inside) @function.around
(property_declaration (_) @function.inside) @function.around
(parameter (_) @parameter.inside) @parameter.around
(comment)+ @comment.around
|