Quotes reflect: sort the typeMembers output list and filter out non-members #22876
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The typeMember currently returns a List (implying some kind of ordering), even though the order of the elements can be unpredictable. This is because the underlying methods operate on Sets, before wrapping those into a Seq. I believe the simplest solution is to just sort the obtained as part of the quotes reflect implementation: first depending on the location (which classlike contains it), then depending on if it is a type parameter (and the declaration order of it), then for non-type params lexicographically (ideally it would also be sorted by declaration order, but I can't really find the use case for that and it would easily be the costliest part). The reasons for choosing to sort are:
lookupPrefix.typeMembers
), but the costliest part, filtering through all of the declarations from all of the parents, we do not have to touch as part of this sort. We can also reuse the caches (while making sure we do not miss any type members which were included in the previous implementation), since we just sort that part lexicographically.We also now filter out the non-existent Symbols, which can appear like in #22483. The whole reason why that happens is because after collecting the member names in
memberDenots
we wrap them inmember
to get their Denotation/Symbol. If that returns a NoSymbol, it's because we cannot access them as part of the symbol (so any kind of selection there will not work either). Because of this I am comfortable with just filtering them out.Fixes #22472
Fixes #22483