-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Rename -Xlint:named-booleans
to -Wunnamed-boolean-literal
(and no longer include it in -Xlint
)
#10704
Conversation
5b7820d
to
0970a1b
Compare
-Xlint:named-booleans
to -Wnamed-literal
and tweak noise level
I've posted a call for feedback on this in various places (including the Known issues section of the 2.13.13 release notes), with a link to this PR. |
In pekko we just turn it off for now, otherwise, there are many code that need to be changed, but overall I think this is a good feature. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where were the complaints? I don't have the context.
Is demoting to -W
still necessary with the adjustments in this PR?
Scala 2 appears to accept unnamed arguments after named, which means that a quick fix simply inserting the argument name is possible. I was surprised to find this was accepted, because, IMO, this is a bug in Scala 2, long standing presumably, which has just been fixed in Scala 3: scala/scala3#18363. This means that the simple quick fix of inserting the name will risk breaking cross builds with Scala 3. A more comprehensive fix which moves named boolean argument to the end of arglists might be possible (evaluation order effects?), but a lot more complicated. Ultimately I think an implication of this lint is that library authors should move all booleans to the end of parameter lists to allow downstream users to enable the lint, or not, with a minimum of fuss. But this impact on APIs seems wildly excessive to me. |
Only if all preceding named arguments are on the correct position. I beleive Scala 3 behaves the same, also after scala/scala3#18363. IIRC Scala 3 used to allow more unnamed after named than Scala 2, and that PR brought the two in line. |
It does. I take it back. |
The misleading text in the tour has been updated at https://docs.scala-lang.org/tour/named-arguments.html |
As lrytz mentioned on the PR, the two aspects are safety (guard against swapping) and style (readability). This commit puts safety under The I think trying to find a "sweet spot" for all use cases is a fool's errand. Personally, I don't want to see |
-Xlint:named-booleans
to -Wnamed-literal
and tweak noise level-Xlint:named-booleans
to -Wnamed-literal
and tweak noise level [ci: last-only]
bb0b858
to
f4df3a4
Compare
Rebased and took lrytz's two suggestions. Copying my inline comment: The paradigm is to consider "effectively unnamed boolean args", which are unnamed literals and default args. The relaxed check warns if there are at least 2 effectively unnamed args, at least one of which is a literal. There is an old paulp comment to the effect that a boolean arg with a default is peak evil. I did not add that to the warning text, however. Edit: also realized (again) that I can't enable |
More random scripted test errors.
etc. /cc @lrytz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good in general, but I'm still not in favor of the -Ylinterator flag. Who is it intended for?
🤷♂️ no idea... clicked rebuild. |
I'll rename to The broad lesson, as well, is to introduce noise under a flag and then promote to lint under public pressure, rather than the other way around. |
Why did applications with named args stop working? They were out of order. |
Args in the result |
195eeec
to
dba39ba
Compare
dba39ba
to
b89ad0c
Compare
I think I would expect the name to be |
That would be a warning about mononyms, as it's pronounced "one-named boolean". I considered changing it, but ran out of options. On reconsideration, I see the issue is that the word is not "unnamed" but "positional". I'll keep the phone lines open right up until squashing, for any further suggestions. |
(I'm pretty swamped this week and next and will probably be slow with the more in-depth feedback, I'm afraid.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
9717b3d
to
6bbe4ee
Compare
-Xlint:named-booleans
to -Wnamed-literal
and tweak noise level [ci: last-only]-Xlint:named-booleans
is -Wliteral-args
or -Wboolean-literal
[ci: last-only]
6bbe4ee
to
e1d6940
Compare
-Xlint:named-booleans
is -Wliteral-args
or -Wboolean-literal
[ci: last-only]-Xlint:named-booleans
is -Wliteral-args
or -Wboolean-literal
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Re-reviewed. The implementation LGTM, I'd change the flag names. My suggestion is rather verbose but I think easier to understand.
Leaving to @SethTisue for 👓
e1d6940
to
23a15cd
Compare
-Xlint:named-booleans
is -Wliteral-args
or -Wboolean-literal
-Xlint:named-booleans
is -Wunnamed-boolean-literal
Also -Wunnamed-boolean-literal-strict a strict version for booleans. Remove exclusion of case apply for boolean lint Quickfix name boolean literal Warn ambiguous effectively unnamed per review Examine args only once Unnamed and original apply survive rewrite
23a15cd
to
2bc7faf
Compare
/rebuild |
Someday, instead of coding, we'll just ask the A.I. to "rebuild" and maybe "tweak". The second commit fixes detecting "a default arg was used for a boolean param in a named arg block". A third commit adds a check for Updated the PR OP comment @SethTisue Sorry @lrytz for the re-review re-request. |
-Xlint:named-booleans
is -Wunnamed-boolean-literal
-Xlint:named-booleans
to -Wunnamed-boolean-literal
(and no longer include it in -Xlint
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree on the new naming here.
@lrytz you can merge after taking the last look it seems Som wants you to take
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All good, thanks for fixing the defaults!
The existing lint to check that boolean literal arguments in method calls use named arg syntax (
f(flag = true)
) is moved to a warning option-Wunnamed-boolean-literal
.The warning is issued if the unnamed arg may be inadvertently swapped with another: there is another unnamed boolean arg or another boolean parameter that is supplied using a default argument.
A stricter warning is available under
-Wunnamed-boolean-literal-strict
, which warns about any unnamed boolean arg, except for the pattern of anassert
method that takes exactly one boolean parameter in first position.The exclusion for
assert
assumes that such a method will have a name that conveys how the boolean arg is used, so that naming the arg is superfluous.This warning is on a par with
-Wvalue-discard
, which is also an ordinary language feature, but may be deemed warnable for some projects.Follow-up to #10612
Removes the exclusion Lukas doubted at #10612 (comment)