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

Rust: Associated types #19214

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Conversation

paldepind
Copy link
Contributor

@paldepind paldepind commented Apr 4, 2025

This PR improves calls to methods in trait blocks (not methods in impl 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 the self argument implement the trait. This impl 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:

trait MyTrait {
  type AssociatedType;
  // ...
}

is treated as-if it was

trait MyTrait<AssociatedType> {
  // ...
}

One downside of this approach is that it's not immediately clear to me how to handle associated types with generics like this:

trait MyTraitAssoc2 {
    type GenericAssociatedType<AssociatedParam>;

    fn put<A>(&self, a: A) -> Self::GenericAssociatedType<A>;
}

Here Self::GenericAssociatedType refers to a type parameter of put. So what should we do for the A passed to it?The GenericAssociatedType 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.

@github-actions github-actions bot added the Rust Pull requests that update Rust code label Apr 4, 2025
@paldepind paldepind force-pushed the rust-ti-associated branch from 4d8454c to 77e1b23 Compare April 4, 2025 08:25
@@ -106,6 +131,13 @@
override Type resolveType() { result = TTypeParamTypeParameter(this) }
}

// Used to represent implicit associated type type arguments in traits.

Check warning

Code scanning / CodeQL

Comment has repeated word Warning

The comment repeats type.
@paldepind paldepind changed the title Rust ti associated Rust: Associated types Apr 4, 2025
println!("{:?}", x4);

let x5 = S2;
println!("{:?}", x5.m1()); // $ method=m1 MISSING: type=x5.m1():A.S2
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This missing type is probably worth fixing. But since it's not for a method in a trait block and not a regression I didn't look into it for this PR.

@paldepind paldepind marked this pull request as ready for review April 4, 2025 09:37
@paldepind paldepind requested a review from hvitved April 4, 2025 09:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant