highlight(scala): highlight abstract methods in traits and classes (#9340)

This commit is contained in:
Jaakko Paju 2024-01-28 11:18:35 +02:00 committed by GitHub
parent 0328fa4d02
commit ee68fd09ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -57,13 +57,21 @@
(class_definition
body: (template_body
(function_definition
name: (identifier) @function.method)))
(object_definition
body: (template_body
(function_definition
name: (identifier) @function.method)))
[
(function_definition
name: (identifier) @function.method)
(function_declaration
name: (identifier) @function.method)
]))
(trait_definition
body: (template_body
[
(function_definition
name: (identifier) @function.method)
(function_declaration
name: (identifier) @function.method)
]))
(object_definition
body: (template_body
(function_definition
name: (identifier) @function.method)))