-
Notifications
You must be signed in to change notification settings - Fork 21
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
Auto-tupling isn't spec'ed and should perhaps be deprecated (not just linted) #3583
Comments
Imported From: https://issues.scala-lang.org/browse/SI-3583?orig=1 |
@retronym said:
[11:13pm] paulp: So I change from one joda time class with a 7-arg constructor to a similar one with fewer.
[11:13pm] paulp: but in addition to not having a 7-arg constructor, it has one which takes Object.
[11:14pm] paulp: so no warning until runtime failure "what the <expletive deleted> is a 7-tuple?" says joda time.
[11:14pm] paulp: that is an absolute debacle.
[11:14pm] paulp: I knew about this issue but it never bit me this ugly before.
[11:16pm] retronym: -Xwarn-auto-tupling would be popular, from my straw polls
[11:19pm] retronym: paulp: or just outright disable it if there are overloaded alternatives |
@retronym said: |
@paulp said: |
@adriaanm said: |
It's been a while since we looked at the linting/deprecation story here. As of 2.13.10, it still is only a lint (no warning without Scala 3, to my dismay, doesn't even warn, not even under I found scala/scala3#85, which does add the following: scala> import language.noAutoTupling
scala> def foo(x: Any) = (); foo(1, 2)
Error: too many arguments for method foo: (x: Any): Unit Not sure where subsequent chapters in the Scala 3 story, if any exist, might be found in GitHub and/or forums. The searching becomes difficult because Scala 3 added a different kind of "auto-tupling", the kind that is specific to function literals and permits one to write e.g. I'm still eager to hasten the old kind of auto-tupling's exit from the language, but if Scala 3 hasn't sped that up yet, then it would arguably be odd for us to be more aggressive (for example, by deprecating under |
On scala/scala-dev#496 (which is now closed in favor of this one), @Jasper-M made some useful remarks I'd like to reproduce here:
|
There is a bunch of Scala 3 discussion at scala/scala3#4311 . At one point Martin expresss an intent to deprecate in 3.0, and it's unclear to me why it didn't happen — oversight, or change of heart? |
In Let’s drop auto-tupling thread, I proposed creating a marker trait:
This can inform the compiler that you're using Shapeless and you do want to pass in a tuple to Edit: Maybe an annotation like |
New Scala 3 ticket/discussion: scala/scala3#19255 If Scala 3 decides to deprecate, we could deprecate as well under |
From Typers:
I couldn't find this in the spec.
The text was updated successfully, but these errors were encountered: