-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Integrate splain – implicit resolution chains and type diffs in error messages #7785
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
Conversation
|
You might consider grouping the compiler flags, |
|
@som-snytt could you elaborate how that would work? The only tool I'm seeing that allows grouping like this is |
|
That is, like The other possibility for avoiding a huge |
|
Note that you could also provide a man page for: |
|
ok, got it! |
|
any other suggestions? |
| newSource1.scala:13: error: implicit error; | ||
| !I e: II | ||
| ImplicitChain.g invalid because | ||
| !I impPar3: I1 |
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 find this message a bit hard to interpret. I have the impression that Dotty provides a more helpful error message (see an example here). Am I right, or are there limitations in what Dotty does that are addressed by splain?
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.
the motivation for this notation is to be terse, concise and parsable in the face of implicit chains that are tens of levels deep. I haven't gotten any feedback on this by splain users so far, so I can't tell whether this is as useful to others as it is to me.
The test output with dummy names is certainly less readable than one where the involved names and types are recognizable, like circe.Decoder and shapeless.Generic, which is the intended use case.
One solution would certainly be to offer both verbose and terse messages, to be configured by the user.
Are you suggesting that Dotty's messages would make splain obsolete? Would that imply that it wouldn't be needed in current Scala?
I haven't looked at Dotty's implicit messages yet, does it display whole chains?
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.
Are you suggesting that Dotty's messages would make splain obsolete?
Would that imply that it wouldn't be needed in current Scala?
This is not clear yet. In any case, it’s definitely useful to work on improving error messages!
I haven't looked at Dotty's implicit messages yet, does it display whole chains?
I have posted a comparison of messages produced by Scala and Dotty here
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 will have to investigate some test cases myself.
In any case, implicit conversions are not a feature that is handled by splain explicitly, just FYI.
My question now is: do you want to make this PR about how error messages should look? So far the mission was to make splain available as-is – if this should be different, we should make this an explicit statement.
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.
My question now is: do you want to make this PR about how error messages should look? So far the mission was to make splain available as-is – if this should be different, we should make this an explicit statement.
That’s a good point. I agree that working on how error messages should look could be done in another PR.
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.
marking as "resolved" because although further improvement would be welcome, it's not a blocker
|
Hi, what's the state of this PR? It's been some time since the last update :) |
|
I am waiting for activity! |
|
With the new github inbox for notifications, I'll never miss another review request. I'll get up to speed. First, I'll get up. |
|
@lrytz we're open to eventually merging this, right? I think you and I discussed it a few weeks ago but I admit that I forgot what we said. did we have any medium-sized-or-larger reservations about it? |
|
FWIW, I haven’t had a look at the PR implementation but I think the feature itself is extremely valuable. |
I also don't remember :-) My only reservation here is that the improvements live behind new compiler flags, and that the implementation is separate from the ordinary error messages and type printing. Can we integrate this deeper and make more people benefit from the helpful messages?
|
Even if we decide that this style of output should remain under a flag, perhaps one or more normal error messages could mention the flag, to improve discoverability. Regardless, I agree that deeper integration is better. Because passing flags is cumbersome; people tend to either turn a flag on all the time, or never. |
|
Frankly I'd rather have it soon as a flag than wait months and get new behavior as a default in a 2.13.x version :) |
|
@kubukoz that's understandable of course :-) However, features we add to the compiler are shipped to the entire Scala community, so changing things (even compiler flags or the style of error messages) comes with a cost, that's why things often move a bit slower. Also, from our perspective, it's a piece of code that we'll have to maintain for a long time, so it makes sense to integrate well into our codebase. For example, |
|
I would suggest starting out with the flag, since the plugin has so far only been used by people intentionally looking for the provided functionality, and some of the edge cases in, e.g. the found/req type diffs can be slightly buggy – not to the point of significant impediment, but it could probably need a bit of bug reporting. There's nothing keeping us from making it the default in the future, and it does feel like a lot of commitment to do it out of the gate. |
|
35% of the respondents in https://scalacenter.github.io/scala-developer-survey-2019/ say that "handling missing implicit errors" is a "main pain point in daily workflow". |
|
fair point 😸 regarding your concern about integrating it deeper: One benefit of having it separated, especially with Analyzer Plugin machinery involved, is that it would make it very simple to provide highly customized error message plugins for specific libraries with access to the typer. One example of this is the builtin shapeless Record and Lazy support. Of course there is some compromise in between. My only concern is that this PR and its predecessor have been going on for years and it would be nice to close the plugin repo and develop this in the compiler with some version already released, because it would make development significantly simpler. A flag seems a good approach, treating it as an experimental feature. |
|
So my proposal would be 2.13.4 with |
|
My suspicion is that both parameter messages and parent messages weren't around (or not at that location) when I initially wrote this five years ago. Caveat: I noticed that the parameter message's assembly is a bit more complex. |
|
implemented the latter, please take a look. It's not complete though, this causes annotations to be ignored entirely for all but the first parameter in the chain. Edit: fixed that as well. |
|
@dwijnand I think that addresses all of the examples of information loss you quoted, do you have any others?
The existing hooks didn't include the necessary information, iirc. If they had, the plugin would have been a lot simpler 😄 Necessity wouldn't be an argument for this feature – its intended purpose is to allow people to provide a AnalyzerPlugin for e.g.
Removed!
ok! |
Thanks for the quick fix! I'll re-run all the tests with the option enabled again (and actually we should just have that commit run in the PR).
As it's simple (and already implemented) I'm fine with keeping it, you've convinced me 😄 I have a patch on top of yours which applies a whole bunch of changes, which allowed me to understand the code, and try different things. I'll look to rebasing it onto your branch here and PRing your fork next week so you have a look. |
sorry, don't understand what that means. do you need me to do something there?
🙂
ok cool. do you want me to squash again now? |
My bad, that was a quick self/team-reminder. See #9557 for an example: make a change with the flag default on, to get a CI-verified test pass commit, and then default it off in the next commit for the merge.
No, hopefully we can get my changes in and then we can squash it all up (I've been debating whether it's best to have my changes after or squashed with yours - I don't care about the commit credit, I'm just thinking if any of the two options are preferable.) |
ahhh clever!
👍 |
|
so, we decided to remove the link to the docs.scala-lang.org link in favor of a better description for the option. what are the requirements for this? |
|
scala/docs.scala-lang#1840 is the docs page, which needs an update with how I've reworked the options. Previously everything was under a single "MultiChoiceSetting", while now is broken up, which gives more lines to give some basic description, and have that docs page provide more context and nice examples. Personally I welcome suggestions on improved description, but I'm happy if we were to ship what we have currently in the PR. |
|
updated the doc page, please let me know what's bad! |
… messages This error formatting framework displays a tree of implicit parameters that correspond to the resolution chain between an error's call site and the offending implicit. Several additional improvements for error formatting are provided as well, like colored diffs of found/required error types, which are based on a set of pure data types extracted from the compiler internals, available to plugin developers through the AnalyzerPlugin API.
SethTisue
left a comment
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.
(final review/merge by @lrytz?)
lrytz
left a comment
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.
LGTM too!
The message formatting / wording can still be improved, that would be helpful. Basically what's discussed in these comments: https://github.com/scala/scala/pull/7785/files#diff-0d00a887e46a40735249285fb63ea04a8aa3de82943535fdfdbf86106cdcb88d
|
wooooo 🥳 🎉 |
|
WOOOOOOOOOOO! |
|
So does this close tek/splain#4? |
|
fuck yeah! |
|
There is some (trigger warning: somewhat grouchy) negative feedback at |
|
well, it isn't enabled by default, so not sure what else could be said 🙂 And the issue 38 talks about |
|
At this moment (Sept 2021), who is the maintainer/reviewer of this feature? There are a few hotfixes in splain 0.5.9 that wasn't included. Unfortunately the first patch to scala compiler takes a lot of copy and paste. IMHO, we can't afford to do this repeatedly for hotfixes. After consulting with @tek. I may have to rebase them on this repo |
any of us, all of us. PRs welcome |
|
@SethTisue thanks a lot. I've talked to @tek and discovered that many config options are also omitted: So I'll have to introduce them first. The following 2 PR should be ideally submitted in succession:
val keyAll = "all"
val keyImplicits = "implicits"
val keyFoundReq = "foundreq"
val keyInfix = "infix"
val keyBounds = "bounds"
val keyColor = "color"
val keyBreakInfix = "breakinfix"
val keyCompact = "compact"
val keyTree = "tree"
val keyBoundsImplicits = "boundsimplicits"
val keyTruncRefined = "truncrefined"
val keyRewrite = "rewrite"
val keyKeepModules = "keepmodules"
val analyzer =
new { val global = SplainPluginCompat.this.global } with Analyzer {
def featureImplicits = boolean(keyImplicits)
def featureFoundReq = boolean(keyFoundReq)
def featureInfix = boolean(keyInfix)
def featureBounds = boolean(keyBounds)
def featureColor = boolean(keyColor)
def featureBreakInfix = int(keyBreakInfix).filterNot(_ == 0)
def featureCompact = boolean(keyCompact)
def featureTree = boolean(keyTree)
def featureBoundsImplicits = boolean(keyBoundsImplicits)
def featureTruncRefined = int(keyTruncRefined).filterNot(_ == 0)
def featureRewrite = opt(keyRewrite, "")
def featureKeepModules = int(keyKeepModules)
}(feel free to suggest alternative names)
Wonder if I can catch the 2.13.7 release deadline? |
This integrates https://github.com/tek/splain into the compiler
-Vimplicitsmakes the compiler print implicit resolution chains when no implicit value can be found-Vtype-diffsturns type error messages (found: X, required: Y) into colored diffs between the two typesI copied most of splain's code into the directory
src/compiler/scala/tools/nsc/typechecker/splainand changed its integration to be less intrusive. There are now compiler options like-Ysplainto control its behaviour. I kept the analyzer plugin method that allows consumers to override or amend output formatting, e.g. for providing more detailed messages about specific typeclasses with access to the typechecker and involved types.(previous PR at #5958).