@@ -12,7 +12,6 @@ use rustc::ty::subst::{SubstsRef, UnpackedKind};
12
12
use rustc:: ty:: { self , RegionKind , RegionVid , Ty , TyCtxt } ;
13
13
use rustc:: ty:: print:: RegionHighlightMode ;
14
14
use rustc_errors:: DiagnosticBuilder ;
15
- use syntax:: ast:: Name ;
16
15
use syntax:: symbol:: keywords;
17
16
use syntax_pos:: Span ;
18
17
use syntax_pos:: symbol:: InternedString ;
@@ -60,8 +59,8 @@ impl RegionName {
60
59
}
61
60
62
61
#[ allow( dead_code) ]
63
- crate fn name ( & self ) -> & InternedString {
64
- & self . name
62
+ crate fn name ( & self ) -> InternedString {
63
+ self . name
65
64
}
66
65
67
66
crate fn highlight_region_name (
@@ -206,7 +205,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
206
205
match error_region {
207
206
ty:: ReEarlyBound ( ebr) => {
208
207
if ebr. has_name ( ) {
209
- let span = self . get_named_span ( tcx, error_region, & ebr. name ) ;
208
+ let span = self . get_named_span ( tcx, error_region, ebr. name ) ;
210
209
Some ( RegionName {
211
210
name : ebr. name ,
212
211
source : RegionNameSource :: NamedEarlyBoundRegion ( span)
@@ -223,7 +222,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
223
222
224
223
ty:: ReFree ( free_region) => match free_region. bound_region {
225
224
ty:: BoundRegion :: BrNamed ( _, name) => {
226
- let span = self . get_named_span ( tcx, error_region, & name) ;
225
+ let span = self . get_named_span ( tcx, error_region, name) ;
227
226
Some ( RegionName {
228
227
name,
229
228
source : RegionNameSource :: NamedFreeRegion ( span) ,
@@ -306,7 +305,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
306
305
& self ,
307
306
tcx : TyCtxt < ' _ , ' _ , ' tcx > ,
308
307
error_region : & RegionKind ,
309
- name : & InternedString ,
308
+ name : InternedString ,
310
309
) -> Span {
311
310
let scope = error_region. free_region_binding_scope ( tcx) ;
312
311
let node = tcx. hir ( ) . as_local_hir_id ( scope) . unwrap_or ( hir:: DUMMY_HIR_ID ) ;
@@ -791,6 +790,6 @@ impl<'tcx> RegionInferenceContext<'tcx> {
791
790
let c = * counter;
792
791
* counter += 1 ;
793
792
794
- Name :: intern ( & format ! ( "'{:?}" , c) ) . as_interned_str ( )
793
+ InternedString :: intern ( & format ! ( "'{:?}" , c) )
795
794
}
796
795
}
0 commit comments