@@ -29,7 +29,7 @@ use rustc_span::{BytePos, Span, SyntaxContext};
29
29
use thin_vec:: ThinVec ;
30
30
31
31
use crate :: errors as errs;
32
- use crate :: imports:: { Import , ImportKind , ImportResolver } ;
32
+ use crate :: imports:: { Import , ImportKind } ;
33
33
use crate :: late:: { PatternSource , Rib } ;
34
34
use crate :: path_names_to_string;
35
35
use crate :: { AmbiguityError , AmbiguityErrorMisc , AmbiguityKind , BindingError , Finalize } ;
@@ -1888,15 +1888,13 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
1888
1888
( format ! ( "use of undeclared crate or module `{}`" , ident) , suggestion)
1889
1889
}
1890
1890
}
1891
- }
1892
1891
1893
- impl < ' a , ' b , ' tcx > ImportResolver < ' a , ' b , ' tcx > {
1894
1892
/// Adds suggestions for a path that cannot be resolved.
1895
1893
pub ( crate ) fn make_path_suggestion (
1896
1894
& mut self ,
1897
1895
span : Span ,
1898
1896
mut path : Vec < Segment > ,
1899
- parent_scope : & ParentScope < ' b > ,
1897
+ parent_scope : & ParentScope < ' a > ,
1900
1898
) -> Option < ( Vec < Segment > , Option < String > ) > {
1901
1899
debug ! ( "make_path_suggestion: span={:?} path={:?}" , span, path) ;
1902
1900
@@ -1931,11 +1929,11 @@ impl<'a, 'b, 'tcx> ImportResolver<'a, 'b, 'tcx> {
1931
1929
fn make_missing_self_suggestion (
1932
1930
& mut self ,
1933
1931
mut path : Vec < Segment > ,
1934
- parent_scope : & ParentScope < ' b > ,
1932
+ parent_scope : & ParentScope < ' a > ,
1935
1933
) -> Option < ( Vec < Segment > , Option < String > ) > {
1936
1934
// Replace first ident with `self` and check if that is valid.
1937
1935
path[ 0 ] . ident . name = kw:: SelfLower ;
1938
- let result = self . r . maybe_resolve_path ( & path, None , parent_scope) ;
1936
+ let result = self . maybe_resolve_path ( & path, None , parent_scope) ;
1939
1937
debug ! ( "make_missing_self_suggestion: path={:?} result={:?}" , path, result) ;
1940
1938
if let PathResult :: Module ( ..) = result { Some ( ( path, None ) ) } else { None }
1941
1939
}
@@ -1950,11 +1948,11 @@ impl<'a, 'b, 'tcx> ImportResolver<'a, 'b, 'tcx> {
1950
1948
fn make_missing_crate_suggestion (
1951
1949
& mut self ,
1952
1950
mut path : Vec < Segment > ,
1953
- parent_scope : & ParentScope < ' b > ,
1951
+ parent_scope : & ParentScope < ' a > ,
1954
1952
) -> Option < ( Vec < Segment > , Option < String > ) > {
1955
1953
// Replace first ident with `crate` and check if that is valid.
1956
1954
path[ 0 ] . ident . name = kw:: Crate ;
1957
- let result = self . r . maybe_resolve_path ( & path, None , parent_scope) ;
1955
+ let result = self . maybe_resolve_path ( & path, None , parent_scope) ;
1958
1956
debug ! ( "make_missing_crate_suggestion: path={:?} result={:?}" , path, result) ;
1959
1957
if let PathResult :: Module ( ..) = result {
1960
1958
Some ( (
@@ -1981,11 +1979,11 @@ impl<'a, 'b, 'tcx> ImportResolver<'a, 'b, 'tcx> {
1981
1979
fn make_missing_super_suggestion (
1982
1980
& mut self ,
1983
1981
mut path : Vec < Segment > ,
1984
- parent_scope : & ParentScope < ' b > ,
1982
+ parent_scope : & ParentScope < ' a > ,
1985
1983
) -> Option < ( Vec < Segment > , Option < String > ) > {
1986
1984
// Replace first ident with `crate` and check if that is valid.
1987
1985
path[ 0 ] . ident . name = kw:: Super ;
1988
- let result = self . r . maybe_resolve_path ( & path, None , parent_scope) ;
1986
+ let result = self . maybe_resolve_path ( & path, None , parent_scope) ;
1989
1987
debug ! ( "make_missing_super_suggestion: path={:?} result={:?}" , path, result) ;
1990
1988
if let PathResult :: Module ( ..) = result { Some ( ( path, None ) ) } else { None }
1991
1989
}
@@ -2003,7 +2001,7 @@ impl<'a, 'b, 'tcx> ImportResolver<'a, 'b, 'tcx> {
2003
2001
fn make_external_crate_suggestion (
2004
2002
& mut self ,
2005
2003
mut path : Vec < Segment > ,
2006
- parent_scope : & ParentScope < ' b > ,
2004
+ parent_scope : & ParentScope < ' a > ,
2007
2005
) -> Option < ( Vec < Segment > , Option < String > ) > {
2008
2006
if path[ 1 ] . ident . span . is_rust_2015 ( ) {
2009
2007
return None ;
@@ -2013,13 +2011,13 @@ impl<'a, 'b, 'tcx> ImportResolver<'a, 'b, 'tcx> {
2013
2011
// 1) some consistent ordering for emitted diagnostics, and
2014
2012
// 2) `std` suggestions before `core` suggestions.
2015
2013
let mut extern_crate_names =
2016
- self . r . extern_prelude . iter ( ) . map ( |( ident, _) | ident. name ) . collect :: < Vec < _ > > ( ) ;
2014
+ self . extern_prelude . iter ( ) . map ( |( ident, _) | ident. name ) . collect :: < Vec < _ > > ( ) ;
2017
2015
extern_crate_names. sort_by ( |a, b| b. as_str ( ) . partial_cmp ( a. as_str ( ) ) . unwrap ( ) ) ;
2018
2016
2019
2017
for name in extern_crate_names. into_iter ( ) {
2020
2018
// Replace first ident with a crate name and check if that is valid.
2021
2019
path[ 0 ] . ident . name = name;
2022
- let result = self . r . maybe_resolve_path ( & path, None , parent_scope) ;
2020
+ let result = self . maybe_resolve_path ( & path, None , parent_scope) ;
2023
2021
debug ! (
2024
2022
"make_external_crate_suggestion: name={:?} path={:?} result={:?}" ,
2025
2023
name, path, result
@@ -2046,8 +2044,8 @@ impl<'a, 'b, 'tcx> ImportResolver<'a, 'b, 'tcx> {
2046
2044
/// ```
2047
2045
pub ( crate ) fn check_for_module_export_macro (
2048
2046
& mut self ,
2049
- import : & ' b Import < ' b > ,
2050
- module : ModuleOrUniformRoot < ' b > ,
2047
+ import : & ' a Import < ' a > ,
2048
+ module : ModuleOrUniformRoot < ' a > ,
2051
2049
ident : Ident ,
2052
2050
) -> Option < ( Option < Suggestion > , Option < String > ) > {
2053
2051
let ModuleOrUniformRoot :: Module ( mut crate_module) = module else {
@@ -2064,8 +2062,8 @@ impl<'a, 'b, 'tcx> ImportResolver<'a, 'b, 'tcx> {
2064
2062
return None ;
2065
2063
}
2066
2064
2067
- let resolutions = self . r . resolutions ( crate_module) . borrow ( ) ;
2068
- let resolution = resolutions. get ( & self . r . new_key ( ident, MacroNS ) ) ?;
2065
+ let resolutions = self . resolutions ( crate_module) . borrow ( ) ;
2066
+ let resolution = resolutions. get ( & self . new_key ( ident, MacroNS ) ) ?;
2069
2067
let binding = resolution. borrow ( ) . binding ( ) ?;
2070
2068
if let Res :: Def ( DefKind :: Macro ( MacroKind :: Bang ) , _) = binding. res ( ) {
2071
2069
let module_name = crate_module. kind . name ( ) . unwrap ( ) ;
@@ -2086,7 +2084,7 @@ impl<'a, 'b, 'tcx> ImportResolver<'a, 'b, 'tcx> {
2086
2084
// ie. `use a::b::{c, d, e};`
2087
2085
// ^^^
2088
2086
let ( found_closing_brace, binding_span) = find_span_of_binding_until_next_binding (
2089
- self . r . tcx . sess ,
2087
+ self . tcx . sess ,
2090
2088
import. span ,
2091
2089
import. use_span ,
2092
2090
) ;
@@ -2105,7 +2103,7 @@ impl<'a, 'b, 'tcx> ImportResolver<'a, 'b, 'tcx> {
2105
2103
// ie. `use a::b::{c, d};`
2106
2104
// ^^^
2107
2105
if let Some ( previous_span) =
2108
- extend_span_to_previous_binding ( self . r . tcx . sess , binding_span)
2106
+ extend_span_to_previous_binding ( self . tcx . sess , binding_span)
2109
2107
{
2110
2108
debug ! ( "check_for_module_export_macro: previous_span={:?}" , previous_span) ;
2111
2109
removal_span = removal_span. with_lo ( previous_span. lo ( ) ) ;
@@ -2123,7 +2121,7 @@ impl<'a, 'b, 'tcx> ImportResolver<'a, 'b, 'tcx> {
2123
2121
// or `use a::{b, c, d}};`
2124
2122
// ^^^^^^^^^^^
2125
2123
let ( has_nested, after_crate_name) = find_span_immediately_after_crate_name (
2126
- self . r . tcx . sess ,
2124
+ self . tcx . sess ,
2127
2125
module_name,
2128
2126
import. use_span ,
2129
2127
) ;
@@ -2132,7 +2130,7 @@ impl<'a, 'b, 'tcx> ImportResolver<'a, 'b, 'tcx> {
2132
2130
has_nested, after_crate_name
2133
2131
) ;
2134
2132
2135
- let source_map = self . r . tcx . sess . source_map ( ) ;
2133
+ let source_map = self . tcx . sess . source_map ( ) ;
2136
2134
2137
2135
// Make sure this is actually crate-relative.
2138
2136
let is_definitely_crate = import
0 commit comments