exekall: Fix annotation resolution in methods
Allow a method to refer to a TypeVar class attribute by name, such as:
class X:
T = TypeVar('T')
def f(self) -> 'T':
pass
GitLab Maintenance scheduled for Thursday, 18th December 2025, from 7:00 AM to 10:00 AM BST. GitLab will be in read-only mode and experience short periods of complete downtime (up to 20 minutes) during this window.
Allow a method to refer to a TypeVar class attribute by name, such as:
class X:
T = TypeVar('T')
def f(self) -> 'T':
pass