forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
682 B
Scheme
22 lines
682 B
Scheme
[
|
|
(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
|