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

[DRAFT] Allow a default for optional interpolations #80547

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

natecook1000
Copy link
Member

This adds an appendInterpolation overload to DefaultStringInterpolation that includes a parameter for providing a default string when the value to interpolate is nil. This allows this kind of usage:

let age: Int? = nil
print("Your age is \(age, default: "timeless")")
// Prints "Your age is timeless"

Includes an additional fixit when optional values are interpolated to use this default: parameter.

This adds an `appendInterpolation` overload to `DefaultStringInterpolation`
that includes a parameter for providing a default string when the value
to interpolate is `nil`. This allows this kind of usage:

    let age: Int? = nil
    print("Your age is \(age, default: "timeless")")
    // Prints "Your age is timeless"

Includes an additional fixit when optional values are interpolated to
use this `default:` parameter.
@natecook1000 natecook1000 added standard library Area: Standard library umbrella swift evolution proposal needed Flag → feature: A feature that warrants a Swift evolution proposal labels Apr 4, 2025
@@ -5688,6 +5688,11 @@ static void diagnoseUnintendedOptionalBehavior(const Expr *E,
.fixItInsertAfter(arg->getEndLoc(), ")");

if (kind == UnintendedInterpolationKind::Optional) {
// Suggest using a default interpolation value parameter.
Ctx.Diags.diagnose(arg->getLoc(), diag::default_optional_parameter)
Copy link
Member Author

Choose a reason for hiding this comment

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

@beccadax Do you know if it would be possible to only provide this fixit when the string interpolation type is DefaultStringInterpolation?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
standard library Area: Standard library umbrella swift evolution proposal needed Flag → feature: A feature that warrants a Swift evolution proposal
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant