@@ -119,9 +119,9 @@ pub(crate) fn rename(
119
119
} ;
120
120
121
121
let mut source_change = SourceChange :: default ( ) ;
122
- source_change. extend ( usages. iter ( ) . map ( | ( & file_id , refs ) | {
123
- ( file_id, source_edit_from_references ( refs, def, new_name) )
124
- } ) ) ;
122
+ source_change. extend ( usages. references . get_mut ( & position . file_id ) . iter ( ) . map (
123
+ |refs| ( position . file_id , source_edit_from_references ( refs, def, new_name) ) ,
124
+ ) ) ;
125
125
126
126
Ok ( source_change)
127
127
} )
@@ -444,12 +444,8 @@ mod tests {
444
444
445
445
use super :: { RangeInfo , RenameError } ;
446
446
447
- fn check ( new_name : & str , ra_fixture_before : & str , ra_fixture_after : & str ) {
448
- check_with_rename_config ( new_name, ra_fixture_before, ra_fixture_after) ;
449
- }
450
-
451
447
#[ track_caller]
452
- fn check_with_rename_config ( new_name : & str , ra_fixture_before : & str , ra_fixture_after : & str ) {
448
+ fn check ( new_name : & str , ra_fixture_before : & str , ra_fixture_after : & str ) {
453
449
let ra_fixture_after = & trim_indent ( ra_fixture_after) ;
454
450
let ( analysis, position) = fixture:: position ( ra_fixture_before) ;
455
451
if !ra_fixture_after. starts_with ( "error: " ) {
@@ -466,7 +462,7 @@ mod tests {
466
462
let ( & file_id, edit) = match source_change. source_file_edits . len ( ) {
467
463
0 => return ,
468
464
1 => source_change. source_file_edits . iter ( ) . next ( ) . unwrap ( ) ,
469
- _ => ( & position . file_id , & source_change . source_file_edits [ & position . file_id ] ) ,
465
+ _ => panic ! ( ) ,
470
466
} ;
471
467
for indel in edit. 0 . iter ( ) {
472
468
text_edit_builder. replace ( indel. delete , indel. insert . clone ( ) ) ;
@@ -2689,7 +2685,7 @@ use qux as frob;
2689
2685
2690
2686
#[ test]
2691
2687
fn disallow_renaming_for_non_local_definition ( ) {
2692
- check_with_rename_config (
2688
+ check (
2693
2689
"Baz" ,
2694
2690
r#"
2695
2691
//- /lib.rs crate:lib new_source_root:library
@@ -2704,7 +2700,7 @@ fn main() { let _: S$0; }
2704
2700
2705
2701
#[ test]
2706
2702
fn disallow_renaming_for_builtin_macros ( ) {
2707
- check_with_rename_config (
2703
+ check (
2708
2704
"Baz" ,
2709
2705
r#"
2710
2706
//- minicore: derive, hash
@@ -2762,14 +2758,19 @@ fn test() {
2762
2758
check (
2763
2759
"Baz" ,
2764
2760
r#"
2761
+ //- /main.rs crate:main
2762
+ mod module;
2765
2763
mod foo { pub struct Foo; }
2766
2764
mod bar { use super::Foo; }
2767
2765
2768
2766
use foo::Foo$0;
2769
2767
2770
2768
fn main() { let _: Foo; }
2769
+ //- /module.rs
2770
+ use crate::foo::Foo;
2771
2771
"# ,
2772
2772
r#"
2773
+ mod module;
2773
2774
mod foo { pub struct Foo; }
2774
2775
mod bar { use super::Baz; }
2775
2776
@@ -2779,4 +2780,22 @@ fn main() { let _: Baz; }
2779
2780
"# ,
2780
2781
)
2781
2782
}
2783
+
2784
+ #[ test]
2785
+ fn rename_path_inside_use_tree_foreign ( ) {
2786
+ check (
2787
+ "Baz" ,
2788
+ r#"
2789
+ //- /lib.rs crate:lib new_source_root:library
2790
+ pub struct S;
2791
+ //- /main.rs crate:main deps:lib new_source_root:local
2792
+ use lib::S$0;
2793
+ fn main() { let _: S; }
2794
+ "# ,
2795
+ r#"
2796
+ use lib::S as Baz;
2797
+ fn main() { let _: Baz; }
2798
+ "# ,
2799
+ ) ;
2800
+ }
2782
2801
}
0 commit comments