File tree 3 files changed +6
-6
lines changed
src/tools/rust-analyzer/crates
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -710,8 +710,8 @@ impl ExpansionInfo {
710
710
self . expanded . clone ( )
711
711
}
712
712
713
- pub fn call_node ( & self ) -> InFile < Option < SyntaxNode > > {
714
- self . arg . with_value ( self . arg . value . as_ref ( ) . and_then ( SyntaxNode :: parent ) )
713
+ pub fn arg ( & self ) -> InFile < Option < & SyntaxNode > > {
714
+ self . arg . as_ref ( ) . map ( |it| it . as_ref ( ) )
715
715
}
716
716
717
717
pub fn call_file ( & self ) -> HirFileId {
Original file line number Diff line number Diff line change @@ -772,7 +772,7 @@ impl<'db> SemanticsImpl<'db> {
772
772
let exp_info = macro_file. expansion_info ( self . db . upcast ( ) ) ;
773
773
774
774
let InMacroFile { file_id, value } = exp_info. expanded ( ) ;
775
- if let InFile { file_id, value : Some ( value) } = exp_info. call_node ( ) {
775
+ if let InFile { file_id, value : Some ( value) } = exp_info. arg ( ) {
776
776
self . cache ( value. ancestors ( ) . last ( ) . unwrap ( ) , file_id) ;
777
777
}
778
778
self . cache ( value, file_id. into ( ) ) ;
@@ -786,7 +786,7 @@ impl<'db> SemanticsImpl<'db> {
786
786
// FIXME: uncached parse
787
787
// Create the source analyzer for the macro call scope
788
788
let Some ( sa) = expansion_info
789
- . call_node ( )
789
+ . arg ( )
790
790
. value
791
791
. and_then ( |it| self . analyze_no_infer ( & it. ancestors ( ) . last ( ) . unwrap ( ) ) )
792
792
else {
@@ -1145,7 +1145,7 @@ impl<'db> SemanticsImpl<'db> {
1145
1145
. expansion_info_cache
1146
1146
. entry ( macro_file)
1147
1147
. or_insert_with ( || macro_file. expansion_info ( self . db . upcast ( ) ) ) ;
1148
- expansion_info. call_node ( ) . transpose ( )
1148
+ expansion_info. arg ( ) . map ( |node| node? . parent ( ) ) . transpose ( )
1149
1149
} )
1150
1150
}
1151
1151
}
Original file line number Diff line number Diff line change @@ -434,7 +434,7 @@ impl SourceToDefCtx<'_, '_> {
434
434
. entry ( macro_file)
435
435
. or_insert_with ( || macro_file. expansion_info ( this. db . upcast ( ) ) ) ;
436
436
437
- expansion_info. call_node ( ) . map ( |node| node?. parent ( ) ) . transpose ( )
437
+ expansion_info. arg ( ) . map ( |node| node?. parent ( ) ) . transpose ( )
438
438
}
439
439
} ;
440
440
let mut node = node. cloned ( ) ;
You can’t perform that action at this time.
0 commit comments