2
2
3
3
use rustc_errors:: ErrorGuaranteed ;
4
4
use rustc_hir as hir;
5
- use rustc_hir:: def:: Res ;
5
+ use rustc_hir:: def:: { Namespace , Res } ;
6
6
use rustc_hir:: def_id:: DefId ;
7
7
use rustc_hir:: intravisit:: Visitor ;
8
8
use rustc_middle:: hir:: nested_filter;
9
9
use rustc_middle:: traits:: ObligationCauseCode ;
10
10
use rustc_middle:: ty:: error:: ExpectedFound ;
11
11
use rustc_middle:: ty:: print:: RegionHighlightMode ;
12
- use rustc_middle:: ty:: { self , Ty , TyCtxt , TypeVisitor } ;
12
+ use rustc_middle:: ty:: { self , TyCtxt , TypeVisitable } ;
13
13
use rustc_span:: Span ;
14
14
use tracing:: debug;
15
15
16
16
use crate :: error_reporting:: infer:: nice_region_error:: NiceRegionError ;
17
+ use crate :: error_reporting:: infer:: nice_region_error:: placeholder_error:: Highlighted ;
17
18
use crate :: errors:: { ConsiderBorrowingParamHelp , RelationshipHelp , TraitImplDiff } ;
18
19
use crate :: infer:: { RegionResolutionError , Subtype , ValuePairs } ;
19
20
@@ -32,19 +33,14 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
32
33
_,
33
34
) = error. clone ( )
34
35
&& let ( Subtype ( sup_trace) , Subtype ( sub_trace) ) = ( & sup_origin, & sub_origin)
35
- && let ObligationCauseCode :: CompareImplItem { trait_item_def_id, .. } =
36
+ && let & ObligationCauseCode :: CompareImplItem { trait_item_def_id, .. } =
36
37
sub_trace. cause . code ( )
37
38
&& sub_trace. values == sup_trace. values
38
39
&& let ValuePairs :: PolySigs ( ExpectedFound { expected, found } ) = sub_trace. values
39
40
{
40
41
// FIXME(compiler-errors): Don't like that this needs `Ty`s, but
41
42
// all of the region highlighting machinery only deals with those.
42
- let guar = self . emit_err (
43
- var_origin. span ( ) ,
44
- Ty :: new_fn_ptr ( self . cx . tcx , expected) ,
45
- Ty :: new_fn_ptr ( self . cx . tcx , found) ,
46
- * trait_item_def_id,
47
- ) ;
43
+ let guar = self . emit_err ( var_origin. span ( ) , expected, found, trait_item_def_id) ;
48
44
return Some ( guar) ;
49
45
}
50
46
None
@@ -53,11 +49,11 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
53
49
fn emit_err (
54
50
& self ,
55
51
sp : Span ,
56
- expected : Ty < ' tcx > ,
57
- found : Ty < ' tcx > ,
58
- trait_def_id : DefId ,
52
+ expected : ty :: PolyFnSig < ' tcx > ,
53
+ found : ty :: PolyFnSig < ' tcx > ,
54
+ trait_item_def_id : DefId ,
59
55
) -> ErrorGuaranteed {
60
- let trait_sp = self . tcx ( ) . def_span ( trait_def_id ) ;
56
+ let trait_sp = self . tcx ( ) . def_span ( trait_item_def_id ) ;
61
57
62
58
// Mark all unnamed regions in the type with a number.
63
59
// This diagnostic is called in response to lifetime errors, so be informative.
@@ -67,10 +63,10 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
67
63
}
68
64
69
65
impl < ' tcx > HighlightBuilder < ' tcx > {
70
- fn build ( ty : Ty < ' tcx > ) -> RegionHighlightMode < ' tcx > {
66
+ fn build ( sig : ty :: PolyFnSig < ' tcx > ) -> RegionHighlightMode < ' tcx > {
71
67
let mut builder =
72
68
HighlightBuilder { highlight : RegionHighlightMode :: default ( ) , counter : 1 } ;
73
- builder . visit_ty ( ty ) ;
69
+ sig . visit_with ( & mut builder ) ;
74
70
builder. highlight
75
71
}
76
72
}
@@ -85,16 +81,21 @@ impl<'a, 'tcx> NiceRegionError<'a, 'tcx> {
85
81
}
86
82
87
83
let expected_highlight = HighlightBuilder :: build ( expected) ;
88
- let expected = self
89
- . cx
90
- . extract_inference_diagnostics_data ( expected. into ( ) , Some ( expected_highlight) )
91
- . name ;
84
+ let tcx = self . cx . tcx ;
85
+ let expected = Highlighted {
86
+ highlight : expected_highlight,
87
+ ns : Namespace :: TypeNS ,
88
+ tcx,
89
+ value : expected,
90
+ }
91
+ . to_string ( ) ;
92
92
let found_highlight = HighlightBuilder :: build ( found) ;
93
93
let found =
94
- self . cx . extract_inference_diagnostics_data ( found. into ( ) , Some ( found_highlight) ) . name ;
94
+ Highlighted { highlight : found_highlight, ns : Namespace :: TypeNS , tcx, value : found }
95
+ . to_string ( ) ;
95
96
96
97
// Get the span of all the used type parameters in the method.
97
- let assoc_item = self . tcx ( ) . associated_item ( trait_def_id ) ;
98
+ let assoc_item = self . tcx ( ) . associated_item ( trait_item_def_id ) ;
98
99
let mut visitor = TypeParamSpanVisitor { tcx : self . tcx ( ) , types : vec ! [ ] } ;
99
100
match assoc_item. kind {
100
101
ty:: AssocKind :: Fn => {
0 commit comments