2022-05-20 05:19:46 +04:00
|
|
|
(
|
|
|
|
[
|
|
|
|
(attribute_item)+
|
|
|
|
(line_comment)+
|
|
|
|
]*
|
|
|
|
.
|
|
|
|
(function_item
|
|
|
|
body: (_) @function.inside)) @function.around
|
2021-10-23 08:11:19 +05:30
|
|
|
|
2022-05-20 05:19:46 +04:00
|
|
|
(
|
|
|
|
[
|
|
|
|
(attribute_item)+
|
|
|
|
(line_comment)+
|
|
|
|
]*
|
|
|
|
.
|
|
|
|
(struct_item
|
|
|
|
body: (_) @class.inside)) @class.around
|
2021-10-23 08:11:19 +05:30
|
|
|
|
2022-05-20 05:19:46 +04:00
|
|
|
(
|
|
|
|
[
|
|
|
|
(attribute_item)+
|
|
|
|
(line_comment)+
|
|
|
|
]*
|
|
|
|
.
|
|
|
|
(enum_item
|
|
|
|
body: (_) @class.inside)) @class.around
|
2021-10-23 08:11:19 +05:30
|
|
|
|
2022-05-20 05:19:46 +04:00
|
|
|
(
|
|
|
|
[
|
|
|
|
(attribute_item)+
|
|
|
|
(line_comment)+
|
|
|
|
]*
|
|
|
|
.
|
|
|
|
(union_item
|
|
|
|
body: (_) @class.inside)) @class.around
|
2021-10-23 08:11:19 +05:30
|
|
|
|
2022-05-20 05:19:46 +04:00
|
|
|
(
|
|
|
|
[
|
|
|
|
(attribute_item)+
|
|
|
|
(line_comment)+
|
|
|
|
]*
|
|
|
|
.
|
|
|
|
(trait_item
|
|
|
|
body: (_) @class.inside)) @class.around
|
2021-10-23 08:11:19 +05:30
|
|
|
|
2022-05-20 05:19:46 +04:00
|
|
|
(
|
|
|
|
[
|
|
|
|
(attribute_item)+
|
|
|
|
(line_comment)+
|
|
|
|
]*
|
|
|
|
.
|
|
|
|
(impl_item
|
|
|
|
body: (_) @class.inside)) @class.around
|
2021-10-23 08:11:19 +05:30
|
|
|
|
|
|
|
(parameters
|
|
|
|
(_) @parameter.inside)
|
2022-05-20 05:19:46 +04:00
|
|
|
|
|
|
|
(type_parameters
|
|
|
|
(_) @parameter.inside)
|
2021-10-23 08:11:19 +05:30
|
|
|
|
|
|
|
(closure_parameters
|
|
|
|
(_) @parameter.inside)
|
|
|
|
|
|
|
|
(arguments
|
|
|
|
(_) @parameter.inside)
|
2022-03-06 00:24:24 -05:00
|
|
|
|
|
|
|
[
|
|
|
|
(line_comment)
|
|
|
|
(block_comment)
|
|
|
|
] @comment.inside
|
|
|
|
|
|
|
|
(line_comment)+ @comment.around
|
|
|
|
|
|
|
|
(block_comment) @comment.around
|