[tree-sitter] Highlight an obscure inheritance construct properly in C++

This commit is contained in:
Andrew Dupont 2023-12-23 10:06:31 -06:00
parent 1ed79e21e1
commit fdc70fc4a5

View File

@ -138,6 +138,9 @@
(function_declarator
(field_identifier) @entity.name.function.method.cpp)
(field_initializer
(field_identifier) @entity.name.function.cpp)
(call_expression
(identifier) @support.function.c99.cpp
; Regex copied from the TM grammar.