Open
Description
Did you check the tree-sitter docs?
- I have read all the tree-sitter docs if it relates to using the parser
Is your feature request related to a problem? Please describe.
Since v3.12, Python supports new Generic syntax:
from collections.abc import Mapping
class MyDict[T](Mapping[str, T]):
...
comparing to older syntax:
from collections.abc import Mapping
from typing import TypeVar, Generic
T = TypeVar('T')
class MyDict(Mapping[str, Generic[T]]):
...
Please support newer syntax.
Describe the solution you'd like
No
Describe alternatives you've considered
No
Additional context
No