Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support callable classes #98

Closed
felix-hilden opened this issue Jan 15, 2022 · 1 comment
Closed

Support callable classes #98

felix-hilden opened this issue Jan 15, 2022 · 1 comment
Labels
enhancement New feature or request

Comments

@felix-hilden
Copy link
Owner

Partially from #96. We should support linking callable classes. For example:

class A:
    b: int = 3

    def __call__(self) -> "A": return self

def foo() -> A: return A()

# example:
a = A()
a().b
foo()().b
A()()()()()()()()()()()()()()()().b
@felix-hilden felix-hilden added the enhancement New feature or request label Jan 15, 2022
@felix-hilden
Copy link
Owner Author

We'll have to change our resolving logic, because currently there is no distinction between a type and its instance. This leads to call chains repeatedly "initialising" (=no-op) the class without actually considering the __call__ method.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant