Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions compiler/src/dotty/tools/dotc/report.scala
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,23 @@ object report:
"compiler version" -> dotty.tools.dotc.config.Properties.versionString,
"settings" -> settings.map(showSetting).mkString(" "),
))
val fileAReportMsg =
if ctx.phase.isInstanceOf[plugins.PluginPhase]
then
s"""| An unhandled exception was thrown in the compiler plugin named "${ctx.phase.megaPhase}".
| Please file a crash report in the compiler plugin backlog.
| For non-enriched exceptions, compile with -Xno-enrich-error-messages.
|""".stripMargin
else
s"""| An unhandled exception was thrown in the compiler.
| Please file a crash report here:
| https://github.com/scala/scala3/issues/new/choose
| For non-enriched exceptions, compile with -Xno-enrich-error-messages.
|""".stripMargin
s"""
| $errorMessage
|
| An unhandled exception was thrown in the compiler.
| Please file a crash report here:
| https://github.com/scala/scala3/issues/new/choose
| For non-enriched exceptions, compile with -Xno-enrich-error-messages.
|$fileAReportMsg
|
|$info1
|""".stripMargin
Expand Down
Loading