python: Fix highlighting for forward references (#20766)

[PEP484](https://peps.python.org/pep-0484/) defines "Forward references"
for undefined types. This PR treats such annotations as types rather
than strings.
Release Notes:

- Added Python syntax highlighting for forward references.
This commit is contained in:
Jaagup Averin 2024-11-28 10:59:10 +02:00 committed by GitHub
parent 1739de59d4
commit b12a508ed9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,6 +18,12 @@
(tuple (identifier) @type)
)
; Forward references
(type
(string) @type
)
; Function calls
(decorator