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

Recognize subclasses with generics #1287

Merged
merged 2 commits into from
Mar 4, 2024

Conversation

art-divin
Copy link
Collaborator

Resolves #809

Context

Here's how the superclass is matched against a map of classes available to Sourcery after parsing AST:

private static func findBaseType(for type: Type, name: String, typesByName: [String: Type]) -> Type? {
        if let baseType = typesByName[name] {
            return baseType
        }
        if let module = type.module, let baseType = typesByName["\(module).\(name)"] {
            return baseType
        }
        for importModule in type.imports {
            if let baseType = typesByName["\(importModule).\(name)"] {
                return baseType
            }
        }
        return nil
    }

here, line if let baseType = typesByName[name] { fails the checks because name is "GenericBaseViewController<String>" but keys are: ["SubclassedBaseViewController", "GenericBaseViewController", "BaseViewController", "SubclassedGenericBaseViewController"]

The fix is to try and deconstruct the name used for lookup if it contains brackets "<" and ">".

commit 4afdb46
Author: art-divin <[email protected]>
Date:   Sun Mar 3 19:51:55 2024 +0000

    Update Docs

commit 78d6189
Author: Ruslan Alikhamov <[email protected]>
Date:   Sun Mar 3 23:44:13 2024 +0400

    Add generic requirements to Method (#1284)

    * Implemented generic requirements in Method

    * reverted changes in stencil

    * Return type is generic if its name matches generic requirement type

    * Updated generated files
@art-divin art-divin added this to the 2.1.8 milestone Mar 4, 2024
@art-divin art-divin self-assigned this Mar 4, 2024
@art-divin art-divin merged commit 2920af0 into master Mar 4, 2024
2 checks passed
@art-divin art-divin deleted the recognize-subclasses-with-generics branch March 4, 2024 16:36
art-divin added a commit that referenced this pull request Mar 17, 2024
art-divin added a commit that referenced this pull request Mar 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Sourcery can't find classes inheriting from a generic class
1 participant