We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
3.0.1
In the documentation of scala.quoted.Quotes (https://dotty.epfl.ch/api/scala/quoted/Quotes.html) we see the self types as if they are inherited.
scala.quoted.Quotes
trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching => ... }
Sefl types should not appear as inherited as those are not yet inherited. They guarantee that the implementation will inherit them.
We should show the self type in some form. Maybe the first code snippet could be charged for classes that have an explicit self type
- trait Quotes + trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching }
Or maybe put it in its own section as most users will not care about this information.
The text was updated successfully, but these errors were encountered:
Related to #13203
Sorry, something went wrong.
Self types appear as inherited in docs
55e03b8
fixes scala#13204
a4bae35
KacperFKorban
Successfully merging a pull request may close this issue.
Compiler version
3.0.1
Minimized code
In the documentation of
scala.quoted.Quotes
(https://dotty.epfl.ch/api/scala/quoted/Quotes.html) we see the self types as if they are inherited.Expectation
Sefl types should not appear as inherited as those are not yet inherited. They guarantee that the implementation will inherit them.
We should show the self type in some form. Maybe the first code snippet could be charged for classes that have an explicit self type
Or maybe put it in its own section as most users will not care about this information.
The text was updated successfully, but these errors were encountered: