@@ -1206,6 +1206,23 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
1206
1206
s. push_highlighted ( mutbl. prefix_str ( ) ) ;
1207
1207
}
1208
1208
1209
+ fn maybe_highlight < T : Eq + ToString > (
1210
+ t1 : T ,
1211
+ t2 : T ,
1212
+ ( buf1, buf2) : & mut ( DiagnosticStyledString , DiagnosticStyledString ) ,
1213
+ tcx : TyCtxt < ' _ > ,
1214
+ ) {
1215
+ let highlight = t1 != t2;
1216
+ let ( t1, t2) = if highlight || tcx. sess . opts . verbose {
1217
+ ( t1. to_string ( ) , t2. to_string ( ) )
1218
+ } else {
1219
+ // The two types are the same, elide and don't highlight.
1220
+ ( "_" . into ( ) , "_" . into ( ) )
1221
+ } ;
1222
+ buf1. push ( t1, highlight) ;
1223
+ buf2. push ( t2, highlight) ;
1224
+ }
1225
+
1209
1226
fn cmp_ty_refs < ' tcx > (
1210
1227
r1 : ty:: Region < ' tcx > ,
1211
1228
mut1 : hir:: Mutability ,
@@ -1302,7 +1319,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
1302
1319
if lifetimes. 0 != lifetimes. 1 {
1303
1320
values. 0 . push_highlighted ( l1) ;
1304
1321
values. 1 . push_highlighted ( l2) ;
1305
- } else if lifetimes. 0 . is_bound ( ) {
1322
+ } else if lifetimes. 0 . is_bound ( ) || self . tcx . sess . opts . verbose {
1306
1323
values. 0 . push_normal ( l1) ;
1307
1324
values. 1 . push_normal ( l2) ;
1308
1325
} else {
@@ -1323,7 +1340,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
1323
1340
let num_display_types = consts_offset - regions_len;
1324
1341
for ( i, ( ta1, ta2) ) in type_arguments. take ( num_display_types) . enumerate ( ) {
1325
1342
let i = i + regions_len;
1326
- if ta1 == ta2 && !self . tcx . sess . verbose_internals ( ) {
1343
+ if ta1 == ta2 && !self . tcx . sess . opts . verbose {
1327
1344
values. 0 . push_normal ( "_" ) ;
1328
1345
values. 1 . push_normal ( "_" ) ;
1329
1346
} else {
@@ -1337,13 +1354,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
1337
1354
let const_arguments = sub1. consts ( ) . zip ( sub2. consts ( ) ) ;
1338
1355
for ( i, ( ca1, ca2) ) in const_arguments. enumerate ( ) {
1339
1356
let i = i + consts_offset;
1340
- if ca1 == ca2 && !self . tcx . sess . verbose_internals ( ) {
1341
- values. 0 . push_normal ( "_" ) ;
1342
- values. 1 . push_normal ( "_" ) ;
1343
- } else {
1344
- values. 0 . push_highlighted ( ca1. to_string ( ) ) ;
1345
- values. 1 . push_highlighted ( ca2. to_string ( ) ) ;
1346
- }
1357
+ maybe_highlight ( ca1, ca2, & mut values, self . tcx ) ;
1347
1358
self . push_comma ( & mut values. 0 , & mut values. 1 , len, i) ;
1348
1359
}
1349
1360
@@ -1507,16 +1518,9 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
1507
1518
( ty:: FnPtr ( sig1) , ty:: FnPtr ( sig2) ) => self . cmp_fn_sig ( sig1, sig2) ,
1508
1519
1509
1520
_ => {
1510
- if t1 == t2 && !self . tcx . sess . verbose_internals ( ) {
1511
- // The two types are the same, elide and don't highlight.
1512
- ( DiagnosticStyledString :: normal ( "_" ) , DiagnosticStyledString :: normal ( "_" ) )
1513
- } else {
1514
- // We couldn't find anything in common, highlight everything.
1515
- (
1516
- DiagnosticStyledString :: highlighted ( t1. to_string ( ) ) ,
1517
- DiagnosticStyledString :: highlighted ( t2. to_string ( ) ) ,
1518
- )
1519
- }
1521
+ let mut strs = ( DiagnosticStyledString :: new ( ) , DiagnosticStyledString :: new ( ) ) ;
1522
+ maybe_highlight ( t1, t2, & mut strs, self . tcx ) ;
1523
+ strs
1520
1524
}
1521
1525
}
1522
1526
}
0 commit comments