@@ -81,7 +81,7 @@ pub struct LoweringContext<'a> {
81
81
}
82
82
83
83
pub trait Resolver {
84
- // Resolve a global hir path generated by the lowerer when expanding `for`, `if let`, etc.
84
+ // Resolve a hir path generated by the lowerer when expanding `for`, `if let`, etc.
85
85
fn resolve_hir_path ( & mut self , path : & mut hir:: Path , is_value : bool ) ;
86
86
87
87
// Obtain the resolution for a node id
@@ -337,7 +337,6 @@ impl<'a> LoweringContext<'a> {
337
337
338
338
let proj_start = p. segments . len ( ) - resolution. depth ;
339
339
let path = P ( hir:: Path {
340
- global : p. global ,
341
340
def : resolution. base_def ,
342
341
segments : p. segments [ ..proj_start] . iter ( ) . enumerate ( ) . map ( |( i, segment) | {
343
342
let param_mode = match ( qself_position, param_mode) {
@@ -404,12 +403,17 @@ impl<'a> LoweringContext<'a> {
404
403
id : NodeId ,
405
404
p : & Path ,
406
405
name : Option < Name > ,
407
- param_mode : ParamMode )
406
+ param_mode : ParamMode ,
407
+ defaults_to_global : bool )
408
408
-> hir:: Path {
409
+ let mut segments = p. segments . iter ( ) ;
410
+ if defaults_to_global && p. is_global ( ) {
411
+ segments. next ( ) ;
412
+ }
413
+
409
414
hir:: Path {
410
- global : p. global ,
411
415
def : self . expect_full_def ( id) ,
412
- segments : p . segments . iter ( ) . map ( |segment| {
416
+ segments : segments. map ( |segment| {
413
417
self . lower_path_segment ( segment, param_mode)
414
418
} ) . chain ( name. map ( |name| {
415
419
hir:: PathSegment {
@@ -424,9 +428,10 @@ impl<'a> LoweringContext<'a> {
424
428
fn lower_path ( & mut self ,
425
429
id : NodeId ,
426
430
p : & Path ,
427
- param_mode : ParamMode )
431
+ param_mode : ParamMode ,
432
+ defaults_to_global : bool )
428
433
-> hir:: Path {
429
- self . lower_path_extra ( id, p, None , param_mode)
434
+ self . lower_path_extra ( id, p, None , param_mode, defaults_to_global )
430
435
}
431
436
432
437
fn lower_path_segment ( & mut self ,
@@ -602,8 +607,8 @@ impl<'a> LoweringContext<'a> {
602
607
// Check if the where clause type is a plain type parameter.
603
608
match bound_pred. bounded_ty . node {
604
609
TyKind :: Path ( None , ref path)
605
- if !path . global && path. segments . len ( ) == 1 &&
606
- bound_pred. bound_lifetimes . is_empty ( ) => {
610
+ if path. segments . len ( ) == 1 &&
611
+ bound_pred. bound_lifetimes . is_empty ( ) => {
607
612
if let Some ( Def :: TyParam ( def_id) ) =
608
613
self . resolver . get_resolution ( bound_pred. bounded_ty . id )
609
614
. map ( |d| d. base_def ) {
@@ -677,7 +682,7 @@ impl<'a> LoweringContext<'a> {
677
682
span} ) => {
678
683
hir:: WherePredicate :: EqPredicate ( hir:: WhereEqPredicate {
679
684
id : id,
680
- path : self . lower_path ( id, path, ParamMode :: Explicit ) ,
685
+ path : self . lower_path ( id, path, ParamMode :: Explicit , false ) ,
681
686
ty : self . lower_ty ( ty) ,
682
687
span : span,
683
688
} )
@@ -707,7 +712,7 @@ impl<'a> LoweringContext<'a> {
707
712
708
713
fn lower_trait_ref ( & mut self , p : & TraitRef ) -> hir:: TraitRef {
709
714
hir:: TraitRef {
710
- path : self . lower_path ( p. ref_id , & p. path , ParamMode :: Explicit ) ,
715
+ path : self . lower_path ( p. ref_id , & p. path , ParamMode :: Explicit , false ) ,
711
716
ref_id : p. ref_id ,
712
717
}
713
718
}
@@ -800,7 +805,7 @@ impl<'a> LoweringContext<'a> {
800
805
} ;
801
806
802
807
let mut path = self . lower_path_extra ( import. id , path, suffix,
803
- ParamMode :: Explicit ) ;
808
+ ParamMode :: Explicit , true ) ;
804
809
path. span = span;
805
810
self . items . insert ( import. id , hir:: Item {
806
811
id : import. id ,
@@ -814,7 +819,7 @@ impl<'a> LoweringContext<'a> {
814
819
path
815
820
}
816
821
} ;
817
- let path = P ( self . lower_path ( id, path, ParamMode :: Explicit ) ) ;
822
+ let path = P ( self . lower_path ( id, path, ParamMode :: Explicit , true ) ) ;
818
823
let kind = match view_path. node {
819
824
ViewPathSimple ( ident, _) => {
820
825
* name = ident. name ;
@@ -1135,7 +1140,6 @@ impl<'a> LoweringContext<'a> {
1135
1140
Some ( def) => {
1136
1141
hir:: PatKind :: Path ( hir:: QPath :: Resolved ( None , P ( hir:: Path {
1137
1142
span : pth1. span ,
1138
- global : false ,
1139
1143
def : def,
1140
1144
segments : hir_vec ! [
1141
1145
hir:: PathSegment :: from_name( pth1. node. name)
@@ -1878,7 +1882,7 @@ impl<'a> LoweringContext<'a> {
1878
1882
Visibility :: Crate ( _) => hir:: Visibility :: Crate ,
1879
1883
Visibility :: Restricted { ref path, id } => {
1880
1884
hir:: Visibility :: Restricted {
1881
- path : P ( self . lower_path ( id, path, ParamMode :: Explicit ) ) ,
1885
+ path : P ( self . lower_path ( id, path, ParamMode :: Explicit , true ) ) ,
1882
1886
id : id
1883
1887
}
1884
1888
}
@@ -1971,7 +1975,6 @@ impl<'a> LoweringContext<'a> {
1971
1975
1972
1976
let expr_path = hir:: ExprPath ( hir:: QPath :: Resolved ( None , P ( hir:: Path {
1973
1977
span : span,
1974
- global : false ,
1975
1978
def : def,
1976
1979
segments : hir_vec ! [ hir:: PathSegment :: from_name( id) ] ,
1977
1980
} ) ) ) ;
@@ -2139,17 +2142,12 @@ impl<'a> LoweringContext<'a> {
2139
2142
/// `fld.cx.use_std`, and `::core::b::c::d` otherwise.
2140
2143
/// The path is also resolved according to `is_value`.
2141
2144
fn std_path ( & mut self , span : Span , components : & [ & str ] , is_value : bool ) -> hir:: Path {
2142
- let idents = self . crate_root . iter ( ) . chain ( components) ;
2143
-
2144
- let segments: Vec < _ > = idents. map ( |name| {
2145
- hir:: PathSegment :: from_name ( Symbol :: intern ( name) )
2146
- } ) . collect ( ) ;
2147
-
2148
2145
let mut path = hir:: Path {
2149
2146
span : span,
2150
- global : true ,
2151
2147
def : Def :: Err ,
2152
- segments : segments. into ( ) ,
2148
+ segments : iter:: once ( keywords:: CrateRoot . name ( ) ) . chain ( {
2149
+ self . crate_root . into_iter ( ) . chain ( components. iter ( ) . cloned ( ) ) . map ( Symbol :: intern)
2150
+ } ) . map ( hir:: PathSegment :: from_name) . collect ( ) ,
2153
2151
} ;
2154
2152
2155
2153
self . resolver . resolve_hir_path ( & mut path, is_value) ;
0 commit comments