File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
compiler/src/dotty/tools/dotc/reporting/diagnostic Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ object messages {
196
196
pt : Type )
197
197
(implicit ctx : Context )
198
198
extends Message (AnonymousFunctionMissingParamTypeID ) {
199
- val kind : String = " Syntax "
199
+ val kind : String = " Type "
200
200
201
201
val msg : String = {
202
202
val ofFun =
@@ -2298,7 +2298,7 @@ object messages {
2298
2298
}
2299
2299
case class StableIdentPattern (tree : untpd.Tree , pt : Type )(implicit val ctx : Context )
2300
2300
extends Message (StableIdentPatternID ) {
2301
- override def kind : String = " Syntax "
2301
+ override def kind : String = " Type "
2302
2302
override def msg : String =
2303
2303
em """ Stable identifier required, but $tree found """
2304
2304
override def explanation : String = " "
@@ -2392,7 +2392,7 @@ object messages {
2392
2392
2393
2393
case class IllegalCyclicTypeReference (sym : Symbol , where : String , lastChecked : Type )(implicit val ctx : Context )
2394
2394
extends Message (IllegalCyclicTypeReferenceID ) {
2395
- val kind : String = " Type "
2395
+ val kind : String = " Cyclic "
2396
2396
val msg : String = i " illegal cyclic type reference: ${where} ${hl(lastChecked.show)} of $sym refers back to the type itself "
2397
2397
val explanation : String = " "
2398
2398
}
You can’t perform that action at this time.
0 commit comments