Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR improves calls to methods in
trait
blocks (not methods inimpl
blocks) that refer to associated types.One approach to implementing this would be: When a method call resolves to a method inside a trait we find the
impl
block that makes theself
argument implement the trait. Thisimpl
block contains the definition of the associated type, and when we read off the declared type of the method we convert the associated type to the specific definition of the type.However, this change would have to be done inside
getDeclaredType
which right now doesn't depend on the call site at all. Hence, instead of doing that, this PR handles associated types by treating them as type parameters. I.e. a trait like this:is treated as-if it was
One downside of this approach is that it's not immediately clear to me how to handle associated types with generics like this:
Here
Self::GenericAssociatedType
refers to a type parameter ofput
. So what should we do for theA
passed to it?TheGenericAssociatedType
type parameter would have to be handled as a sort of higher-kinded type.My impression is that associated types with generics is a feature that is not used very much. So I suggest that it's ok to not handle that feature, unless there's some straightforward way to do it.