-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Feature GADT support for class type parameters #11222
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey Ang, the code looks good. Good catch with the nested classes. Could you rewrite the code to look up "outer" classes instead of accumulating class type parameters? We usually try to avoid storing information in context that we can otherwise get.
When class B is nested inside A, then the owner of B should be A. You'll need to recursively get owners which are classes.
Hi Alex, thanks a lot for the review. I just changed the code and used takeWhile(!_.owner.flags.is(Method)) instead of takeWhile(!_.owner.is(Method)) Building dotty would fail with an error
What is the difference between |
@Ang9876 there seem to be some optimisations in |
Co-authored-by: Allan Renucci <allanrenucci@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright, this looks good. Thanks for your work, @Ang9876 !
tests/pos/class-gadt
.tests/pos/i4345.scala
andi5735.scala
(issue Superfluous asInstanceOf breaking singleton types #11220 and Assertion failure when check the subtype relation #11221)