-
Notifications
You must be signed in to change notification settings - Fork 340
Description
@bwilkerson while fixing #4184 I noticed these edit groups being produced:
Sep-28-2022.16-24-21.mp4
Here, we're creating linked edit groups with suggestions for Object? and Object where it seems like only Object? is allowed. I believe it's because of withNullability: false here:
I think perhaps it should be more like:
withNullability: type.nullabilitySuffix != NullabilitySuffix.none
However, in the case where there are additional supertypes, that only includes the suffix on the original type. So I think we need to capture the suffix for the original type, and just manually append that onto the result of getDisplayString(withNullability: false) for each result.
Before I do this, a) do you know if there are any cases where the current behaviour is expected (or the described behaviour above would be worse), or whether there's something existing that's cleaner than manipulating strings here to get type.superclass where the result has the nullability suffix propagated?
(I'm also not entirely sure we should be adding tabstops on these types/param names.. you can tab through them, but not the bodies of the inserted methods... but that's another issue).