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

Unused warnings: for macros, by default, look for usages in expansion #10693

Merged
merged 1 commit into from
Mar 5, 2024

Conversation

som-snytt
Copy link
Contributor

@som-snytt som-snytt commented Feb 18, 2024

By default, -Wunused can be satisfied by a usage introduced by a macro expansion.

This is the revised behavior under -Wmacros:default. Previously, the default setting was -Wmacros:before, to lint only before any macros are expanded. The new behavior may reduce the need to suppress warnings.

Previously, -Wmacros:after could be used to lint only the expansion, but if the expansion introduces more unused definitions, then those will generate warnings under that mode.

Note that linting the macro expansion will also warn for -Xlint:missing-interpolator, since 2.13.14. Macros for test assertions that capture interpolations as regular string literals will warn. For example, if a macro transforms

val world = "world"
assert(s"Hello, $world!".contains("Hell"))

into

assert(s"Hello, $world!".contains("Hell"), "Failed test: " + """s"Hello, $world!".contains("Hell")""")

Fixes scala/bug#12953

@scala-jenkins scala-jenkins added this to the 2.13.14 milestone Feb 18, 2024
@som-snytt som-snytt force-pushed the issue/12953-unliftable-unapply branch from c2a6c08 to 4a77a23 Compare February 18, 2024 22:02
@som-snytt
Copy link
Contributor Author

The missing interpolator lint should be in refchecks. The new motivation is that it only warns when the literal is typechecked, not after macro expansion. Since refchecks can check the expandee, it can warn more consistently.

@som-snytt som-snytt force-pushed the issue/12953-unliftable-unapply branch from 4a77a23 to b638a21 Compare February 21, 2024 22:25
@SethTisue SethTisue added the release-notes worth highlighting in next release notes label Mar 5, 2024
@SethTisue
Copy link
Member

SethTisue commented Mar 5, 2024

@som-snytt (now that we have an approval from Lukas, let's turn to the matter of documentation)

is there migration advice that could be in the PR description? as in, I am a Scala user, what do I do now?

@som-snytt som-snytt merged commit 34d3c51 into scala:2.13.x Mar 5, 2024
3 checks passed
@som-snytt som-snytt deleted the issue/12953-unliftable-unapply branch March 5, 2024 18:37
@som-snytt
Copy link
Contributor Author

what do I do now?

That is what everyone is asking themselves. Let me know the results of the next community build.

@SethTisue SethTisue changed the title For macros look for usages in expansion by default Unused warnings: for macros, look for usages in expansion by default Apr 19, 2024
@SethTisue SethTisue changed the title Unused warnings: for macros, look for usages in expansion by default Unused warnings: for macros, by default, look for usages in expansion Apr 19, 2024
@som-snytt
Copy link
Contributor Author

I wonder if this PR ever saw that community build.

I updated the description to include the "missing interpolator" lint seen by some users of assert macros.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release-notes worth highlighting in next release notes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

false positive unused warning implicit Unliftable instance
4 participants