File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ pub trait DefDatabase: InternDatabase + AstDatabase {
50
50
#[ salsa:: transparent]
51
51
fn crate_def_map ( & self , krate : CrateId ) -> Arc < CrateDefMap > ;
52
52
53
- #[ salsa:: invoke( CrateDefMap :: compute_crate_def_map ) ]
53
+ #[ salsa:: invoke( CrateDefMap :: compute_crate_def_map_query ) ]
54
54
fn compute_crate_def_map ( & self , krate : CrateId ) -> Arc < CrateDefMap > ;
55
55
56
56
#[ salsa:: invoke( StructData :: struct_data_query) ]
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ pub struct ModuleData {
172
172
}
173
173
174
174
impl CrateDefMap {
175
- pub ( crate ) fn compute_crate_def_map (
175
+ pub ( crate ) fn compute_crate_def_map_query (
176
176
// Note that this doesn't have `+ AstDatabase`!
177
177
// This gurantess that `CrateDefMap` is stable across reparses.
178
178
db : & impl DefDatabase ,
You can’t perform that action at this time.
0 commit comments