Open
Description
Description
Add a refactoring action that converts T!
to T?
for all types T
. At first blush, this appears to be possible by converting ImplicitlyUnwrappedOptionalTypeSyntax
nodes to OptionalTypeSyntax
nodes without changing the underlying type syntax for T
.
As an aside, I think we may not necessarily want to go the other way (T?
to T!
) since it's generally not great Swift style.