File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
src/dotty/tools/dotc/reporting/diagnostic Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -194,12 +194,14 @@ object messages {
194
194
195
195
case class MissingIdent (tree : untpd.Ident , treeKind : String , name : String )(implicit ctx : Context )
196
196
extends Message (6 ) {
197
- val kind = " Missing Identifier"
197
+ val kind = " Unbound Identifier"
198
198
val msg = em " not found: $treeKind$name"
199
199
200
200
val explanation = {
201
- hl """ |An identifier for ` $treeKind$name` is missing. This means that something
202
- |has either been misspelt or you're forgetting an import """
201
+ hl """ |The identifier for ` $treeKind$name` is not bound, that is,
202
+ |no declaration for this identifier can be found.
203
+ |That can happen for instance if $name or its declaration has either been
204
+ |misspelt, or if you're forgetting an import """
203
205
}
204
206
}
205
207
You can’t perform that action at this time.
0 commit comments