aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-09-27 16:07:56 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-10-10 13:25:35 +0200
commitf5ad8492d076051c8805370c05610d8294ccb241 (patch)
treec8d2aa477d5927bfb14c1e8f6c0417a6d60cab24 /src/dotty/tools/dotc/reporting/diagnostic/messages.scala
parent24bcdfdcdaa04e3cf2aa3c7289415f8a98d3d376 (diff)
downloaddotty-f5ad8492d076051c8805370c05610d8294ccb241.tar.gz
dotty-f5ad8492d076051c8805370c05610d8294ccb241.tar.bz2
dotty-f5ad8492d076051c8805370c05610d8294ccb241.zip
Fix reporting of ErrorTypes in highlighted segments
Diffstat (limited to 'src/dotty/tools/dotc/reporting/diagnostic/messages.scala')
-rw-r--r--src/dotty/tools/dotc/reporting/diagnostic/messages.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/reporting/diagnostic/messages.scala b/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
index 01cf00cf7..76b2fd3e9 100644
--- a/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
+++ b/src/dotty/tools/dotc/reporting/diagnostic/messages.scala
@@ -202,13 +202,13 @@ object messages {
}
}
- case class MissingIdent(tree: untpd.Ident, treeKind: String, name: Name)(implicit ctx: Context)
+ case class MissingIdent(tree: untpd.Ident, treeKind: String, name: String)(implicit ctx: Context)
extends Message("E005") {
val kind = "Missing Identifier"
val msg = em"not found: $treeKind$name"
val explanation = {
- hl"""|An identifier for `${name.show}` is missing. This means that something
+ hl"""|An identifier for `$treeKind$name` is missing. This means that something
|has either been misspelt or you're forgetting an import""".stripMargin
}
}