diff options
author | Aleksey Kladov <[email protected]> | 2019-11-24 15:05:12 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-11-24 15:05:12 +0000 |
commit | f5e0a31eaf9ddd7788e6261d49f4d18e8463a719 (patch) | |
tree | fcaa2b8feb899c16a49fcf87c709327653a3ec2a /crates/ra_hir/src | |
parent | 855a629b1436e7d3f2a9ae47d242d69d1fd7327e (diff) |
Cleanup nameres
Diffstat (limited to 'crates/ra_hir/src')
-rw-r--r-- | crates/ra_hir/src/code_model.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_hir/src/code_model.rs b/crates/ra_hir/src/code_model.rs index b3e2ff1c2..9f06b147c 100644 --- a/crates/ra_hir/src/code_model.rs +++ b/crates/ra_hir/src/code_model.rs | |||
@@ -62,7 +62,7 @@ impl Crate { | |||
62 | } | 62 | } |
63 | 63 | ||
64 | pub fn root_module(self, db: &impl DefDatabase) -> Option<Module> { | 64 | pub fn root_module(self, db: &impl DefDatabase) -> Option<Module> { |
65 | let module_id = db.crate_def_map(self.crate_id).root(); | 65 | let module_id = db.crate_def_map(self.crate_id).root; |
66 | Some(Module::new(self, module_id)) | 66 | Some(Module::new(self, module_id)) |
67 | } | 67 | } |
68 | 68 | ||
@@ -195,7 +195,7 @@ impl Module { | |||
195 | /// in the module tree of any target in `Cargo.toml`. | 195 | /// in the module tree of any target in `Cargo.toml`. |
196 | pub fn crate_root(self, db: &impl DefDatabase) -> Module { | 196 | pub fn crate_root(self, db: &impl DefDatabase) -> Module { |
197 | let def_map = db.crate_def_map(self.id.krate); | 197 | let def_map = db.crate_def_map(self.id.krate); |
198 | self.with_module_id(def_map.root()) | 198 | self.with_module_id(def_map.root) |
199 | } | 199 | } |
200 | 200 | ||
201 | /// Finds a child module with the specified name. | 201 | /// Finds a child module with the specified name. |