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

Feature GADT support for class type parameters #11222

Merged
merged 2 commits into from
Feb 1, 2021
Merged

Feature GADT support for class type parameters #11222

merged 2 commits into from
Feb 1, 2021

Conversation

Ang9876
Copy link
Contributor

@Ang9876 Ang9876 commented Jan 26, 2021

@abgruszecki abgruszecki self-requested a review January 27, 2021 17:24
Copy link
Contributor

@abgruszecki abgruszecki left a 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.

@Ang9876
Copy link
Contributor Author

Ang9876 commented Jan 27, 2021

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 outersInterator.
But I have a question about flags. If I use

takeWhile(!_.owner.flags.is(Method))

instead of

takeWhile(!_.owner.is(Method))

Building dotty would fail with an error

[error] ## Exception when compiling 478 sources to /.../dotty-1/compiler/../out/bootstrap/scala3-compiler-bootstrapped/scala-3.0.0-RC1/classes

What is the difference between sym.is() and sym.flags.is()?

- Register class type parameters from outer contexts in typedDefdef.
- Remove a condition to support gadt approximation for class type parameters.
- Add test cases in tests/pos/class-gadt.
- Ignore test cases tests/pos/i4345.scala and i5735.scala (issue #11220 and #11221)
@abgruszecki
Copy link
Contributor

@Ang9876 there seem to be some optimisations in Symbol#is, perhaps you've found a problem with those optimisations. Let's check after merging your PR if the problem is still there and if so, open an issue.

Co-authored-by: Allan Renucci <allanrenucci@users.noreply.github.com>
Copy link
Contributor

@abgruszecki abgruszecki left a 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 !

@abgruszecki abgruszecki merged commit b2f28a0 into scala:master Feb 1, 2021
@Kordyjan Kordyjan added this to the 3.0.0 milestone Aug 2, 2023
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.

4 participants