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

Fix #13495: Break completion cycles #13596

Merged
merged 1 commit into from Sep 28, 2021
Merged

Conversation

OlivierBlanvillain
Copy link
Contributor

No description provided.

@@ -1611,7 +1611,7 @@ object SymDenotations {
case _ => false

if owner.isClass then
for c <- owner.info.decls.toList if maybeChild(c) do
for c <- owner.info.decls.toList if maybeChild(c) && (c.isClass || c.is(EnumVal)) do
Copy link
Member

Choose a reason for hiding this comment

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

This duplicates similar checks done in maybeChild, this can probably be avoided by tweaking maybeChild a bit.

@smarter smarter merged commit 8246a7b into scala:master Sep 28, 2021
@smarter smarter deleted the fix-13495 branch September 28, 2021 13:03
@Kordyjan Kordyjan added this to the 3.1.1 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.

None yet

3 participants