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

Dealias before checking for member in lint #22708

Merged

Conversation

som-snytt
Copy link
Contributor

@som-snytt som-snytt commented Mar 4, 2025

Fixes #22705
Fixes #22706
Fixes #22727

Follow-up to #22502 by inserting a dealias when arriving at target type.

Refactored the body of hidden to make it easier to read. Adjusted the doc for the same reason.

As a reminder to self, the original reason for special handling of aliases was due to subclassing, but overrides are excluded. (One could restore that warning for edge cases.)

The long doc explaining the handling of leading implicits is moved to the end (as an appendix).

Despite best efforts, I was unable to make the doc longer than the code.

@som-snytt
Copy link
Contributor Author

I did not yet re-examine aa44a3c

@som-snytt
Copy link
Contributor Author

I did not yet examine why it fixes the crash.

Copy link
Member

@KacperFKorban KacperFKorban left a comment

Choose a reason for hiding this comment

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

Looks Good, just added some style comments/questions.

Comment on lines +1179 to +1188
def memberMatchesMethod(member: Denotation) =
val memberIsImplicit = member.info.hasImplicitParams
val paramTps =
if memberIsImplicit then methTp.stripPoly.firstParamTypes
else methTp.explicit.firstParamTypes
inline def paramsCorrespond =
val memberParamTps = member.info.stripPoly.firstParamTypes
memberParamTps.corresponds(paramTps): (m, x) =>
m.typeSymbol.denot.isOpaqueAlias == x.typeSymbol.denot.isOpaqueAlias && (x frozen_<:< m)
paramTps.isEmpty || memberIsImplicit && !methTp.hasImplicitParams || paramsCorrespond
Copy link
Member

Choose a reason for hiding this comment

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

The refactor looks correct to me. The only question is: were the isEmpty and length checks there for happy-path-optimization? I suppose that RefChecks is not a performance bottleneck, so it should be fine.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I almost added a code comment at the time: paramTps.isEmpty was checked, and corresponds ensures same length, so the extra length compare was only because of lazyZip. My question was why didn't I make this edit last time I touched the code? I guess it's OK to focus on correctness first and then performance & style eventually.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Simple coding decisions become harder when the domain model is harder (do I need dealias here? stripPoly there?) and still some mental friction in Scala 3 syntax (can I put a colon here? is this easy to read?).

@som-snytt som-snytt force-pushed the issue/22705-extension-never-selected branch from fb3cc68 to f60f52e Compare March 10, 2025 15:57
@KacperFKorban KacperFKorban enabled auto-merge (squash) March 10, 2025 16:00
@KacperFKorban KacperFKorban merged commit d362492 into scala:main Mar 10, 2025
27 checks passed
@som-snytt som-snytt deleted the issue/22705-extension-never-selected branch March 11, 2025 00:40
@WojciechMazur WojciechMazur added this to the 3.7.0 milestone Mar 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment