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 @@ -164,7 +164,7 @@ impl ModuleOrigin {
164
164
ModuleOrigin :: Root ( None ) => unreachable ! ( ) ,
165
165
ModuleOrigin :: Inline ( m) => InFile :: new ( m. file_id , Either :: Right ( m. to_node ( db) ) ) ,
166
166
// FIXME: right now it's never constructed, so it's fine to omit
167
- ModuleOrigin :: Block ( b ) => unimplemented ! ( ) ,
167
+ ModuleOrigin :: Block ( _b ) => unimplemented ! ( ) ,
168
168
}
169
169
}
170
170
}
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ impl TestDB {
74
74
for & krate in self . relevant_crates ( file_id) . iter ( ) {
75
75
let crate_def_map = self . crate_def_map ( krate) ;
76
76
for ( local_id, data) in crate_def_map. modules . iter ( ) {
77
- if data. definition == Some ( file_id) {
77
+ if data. origin . file_id ( ) == Some ( file_id) {
78
78
return ModuleId { krate, local_id } ;
79
79
}
80
80
}
You can’t perform that action at this time.
0 commit comments