Skip to content

Conversation

@tek
Copy link
Contributor

@tek tek commented Feb 22, 2019

This integrates https://github.com/tek/splain into the compiler

  • -Vimplicits makes the compiler print implicit resolution chains when no implicit value can be found
  • -Vtype-diffs turns type error messages (found: X, required: Y) into colored diffs between the two types

I copied most of splain's code into the directory src/compiler/scala/tools/nsc/typechecker/splain and changed its integration to be less intrusive. There are now compiler options like -Ysplain to 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).

@scala-jenkins scala-jenkins added this to the 2.13.1 milestone Feb 22, 2019
@som-snytt
Copy link
Contributor

som-snytt commented Feb 23, 2019

You might consider grouping the compiler flags, -Ysplain:no-color,trunc-refined etc.

@tek
Copy link
Contributor Author

tek commented Feb 23, 2019

@som-snytt could you elaborate how that would work? The only tool I'm seeing that allows grouping like this is MultiChoiceSetting, but it doesn't seem very suitable for this specific case

@som-snytt
Copy link
Contributor

som-snytt commented Feb 24, 2019

That is, like -Xlint, except any flag would also enable -Ysplain; only the int-valued settings can't be grouped this way (although one could imagine supporting -Ysplain:myint=3 syntax).

The other possibility for avoiding a huge -Y help page would be to only show prefixes under -Y and then -Ysplain:help would show options with that prefix.

@som-snytt
Copy link
Contributor

Note that you could also provide a man page for: man splain.

@tek
Copy link
Contributor Author

tek commented Feb 24, 2019

ok, got it!
I hoped that specifying only -Ysplain would make setByUser true, but it's gonna have to be -Ysplain:enable.

@tek
Copy link
Contributor Author

tek commented Mar 1, 2019

any other suggestions?

@SethTisue SethTisue requested a review from som-snytt June 18, 2019 11:31
@SethTisue SethTisue added the release-notes worth highlighting in next release notes label Jun 18, 2019
newSource1.scala:13: error: implicit error;
!I e: II
ImplicitChain.g invalid because
!I impPar3: I1
Copy link
Contributor

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?

Copy link
Contributor Author

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?

Copy link
Contributor

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

Copy link
Contributor Author

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.

Copy link
Contributor

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.

Copy link
Member

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

@szeiger szeiger modified the milestones: 2.13.1, 2.13.2 Aug 30, 2019
@lrytz lrytz modified the milestones: 2.13.2, 2.13.3 Feb 3, 2020
@kubukoz
Copy link

kubukoz commented Feb 25, 2020

Hi, what's the state of this PR? It's been some time since the last update :)

@tek
Copy link
Contributor Author

tek commented Feb 25, 2020

I am waiting for activity!

@som-snytt
Copy link
Contributor

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.

@SethTisue
Copy link
Member

@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?

@julienrf
Copy link
Contributor

julienrf commented Mar 1, 2020

FWIW, I haven’t had a look at the PR implementation but I think the feature itself is extremely valuable.

@lrytz
Copy link
Member

lrytz commented Mar 2, 2020

@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?

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?

  • for infix type printing, we have @showAsInfix - how does it relate?
  • type diffs would be really good to have by default, is there a reason against it? maybe not to break IDEs?
  • can the implementation of type printing be combined with what already exists in the compiler?
  • is there a drawback in adding compact implicit chains by default? compiler perfromance?

@SethTisue
Copy link
Member

My only reservation here is that the improvements live behind new compiler flags

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.

@kubukoz
Copy link

kubukoz commented Mar 2, 2020

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 :)

@lrytz
Copy link
Member

lrytz commented Mar 2, 2020

@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, showType is re-implementing functionality that exists (to some degree) in the compiler.

@tek
Copy link
Contributor Author

tek commented Mar 2, 2020

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.

@lrytz
Copy link
Member

lrytz commented Mar 3, 2020

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".

@tek
Copy link
Contributor Author

tek commented Mar 3, 2020

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.

@tek
Copy link
Contributor Author

tek commented Mar 3, 2020

So my proposal would be 2.13.4 with -Vimplicits, 2.13.5 as default

@tek
Copy link
Contributor Author

tek commented Apr 1, 2021

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.
The obvious solution is to copy the missing code over to splain, but I could also refactor it slightly so the annotation message is shared with the default printer.

Caveat: I noticed that the parameter message's assembly is a bit more complex.

@tek
Copy link
Contributor Author

tek commented Apr 1, 2021

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.

@tek
Copy link
Contributor Author

tek commented Apr 1, 2021

@dwijnand I think that addresses all of the examples of information loss you quoted, do you have any others?

Sorry, I missed your question here, @tek! No, what I meant was why it was creating its own hook rather than reusing the existing hooks and having splain be an AnalysisPlugin. And, yeah, I don't think we should provide that plugin addition - at least not until it provides necessary.

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. shapeless, that includes additional formatting, like the Record rules that were part of the splain plugin and have now been removed. If you consider that to be not worth the addition of a new hook, I'll remove it.

Sadly there is that potential, but I'd rather let it crash and fix the root causes that slowly sprinkle these all over.

Removed!

I'm not 100% sure, but I think unless we're convinced the messages are pointless or misleading, I dislike just removing them. I'm also thinking we should keep -Xlog-implicits as an alias ("abbreviation") of -Vimplicits, so that means (1) and (3) clash. I agree with you integrating it shouldn't block, so I'm thinking either just -Vdebug or -Vimplicits -Vdebug.

ok!

@dwijnand
Copy link
Member

dwijnand commented Apr 1, 2021

@dwijnand I think that addresses all of the examples of information loss you quoted, do you have any others?

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).

Necessity wouldn't be an argument for this feature – its intended purpose is to allow people to provide a AnalyzerPlugin for e.g. shapeless, that includes additional formatting, like the Record rules that were part of the splain plugin and have now been removed. If you consider that to be not worth the addition of a new hook, I'll remove it.

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.

@tek
Copy link
Contributor Author

tek commented Apr 1, 2021

we should just have that commit run in the PR

sorry, don't understand what that means. do you need me to do something there?

As it's simple (and already implemented) I'm fine with keeping it, you've convinced me smile

🙂

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.

ok cool. do you want me to squash again now?

@dwijnand
Copy link
Member

dwijnand commented Apr 6, 2021

we should just have that commit run in the PR

sorry, don't understand what that means. do you need me to do something there?

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.

ok cool. do you want me to squash again now?

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.)

@tek
Copy link
Contributor Author

tek commented Apr 6, 2021

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.

ahhh clever!

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.)

👍

@tek
Copy link
Contributor Author

tek commented Apr 6, 2021

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?

@dwijnand
Copy link
Member

dwijnand commented Apr 6, 2021

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.

@tek
Copy link
Contributor Author

tek commented Apr 6, 2021

updated the doc page, please let me know what's bad!

tek and others added 4 commits April 16, 2021 17:28
… 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.
Copy link
Member

@SethTisue SethTisue left a 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?)

Copy link
Member

@lrytz lrytz left a 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

@lrytz lrytz merged commit 52cdad9 into scala:2.13.x Apr 21, 2021
@tek
Copy link
Contributor Author

tek commented Apr 21, 2021

wooooo 🥳 🎉

@kubukoz
Copy link

kubukoz commented Apr 21, 2021

WOOOOOOOOOOO!

@bl-ue
Copy link

bl-ue commented May 22, 2021

So does this close tek/splain#4?

@tek tek deleted the splain-2.13 branch May 22, 2021 21:29
@tek
Copy link
Contributor Author

tek commented May 22, 2021

fuck yeah!

@SethTisue
Copy link
Member

SethTisue commented Sep 1, 2021

There is some (trigger warning: somewhat grouchy) negative feedback at typelevel/sbt-tpolecat#38 and typelevel/sbt-tpolecat#45. Not sure if there's anything actionable in the sense that the feature could be improved, or if it's only actionable by telling people "this isn't intended to be enabled by default".

@tek
Copy link
Contributor Author

tek commented Sep 1, 2021

well, it isn't enabled by default, so not sure what else could be said 🙂 And the issue 38 talks about -explain-types, which isn't related to splain

@tribbloid
Copy link

tribbloid commented Sep 29, 2021

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

@SethTisue
Copy link
Member

who is the maintainer/reviewer of this feature?

any of us, all of us. PRs welcome

@tribbloid
Copy link

@SethTisue thanks a lot. I've talked to @tek and discovered that many config options are also omitted:

tek/splain#58

So I'll have to introduce them first. The following 2 PR should be ideally submitted in succession:

  1. add the following configurations that are ingested though -P:splain:<param>[:<value>] options:
  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)

  1. backport the patch

Wonder if I can catch the 2.13.7 release deadline?

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.