diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-06-11 16:29:42 +0100 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-06-11 16:29:42 +0100 |
commit | 80aa9d5f9f55341d2a51176e385d8aa6d2d2cec8 (patch) | |
tree | b6fee9faf5f82ba6ee063667605e39ac3bcbe37c /crates/ra_ide_api/src/references.rs | |
parent | e505fe9d7b96f3454711e923c70d763c5cee5f47 (diff) | |
parent | ff6f6b3a5223ddab81c7357a3c59bdb09936a552 (diff) |
Merge #1395
1395: move docs under code model r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_ide_api/src/references.rs')
-rw-r--r-- | crates/ra_ide_api/src/references.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_ide_api/src/references.rs b/crates/ra_ide_api/src/references.rs index a75042b76..12cdc6a6d 100644 --- a/crates/ra_ide_api/src/references.rs +++ b/crates/ra_ide_api/src/references.rs | |||
@@ -148,9 +148,9 @@ fn rename_mod( | |||
148 | let mut file_system_edits = Vec::new(); | 148 | let mut file_system_edits = Vec::new(); |
149 | if let Some(module) = source_binder::module_from_declaration(db, position.file_id, &ast_module) | 149 | if let Some(module) = source_binder::module_from_declaration(db, position.file_id, &ast_module) |
150 | { | 150 | { |
151 | let (file_id, module_source) = module.definition_source(db); | 151 | let src = module.definition_source(db); |
152 | let file_id = file_id.as_original_file(); | 152 | let file_id = src.file_id.as_original_file(); |
153 | match module_source { | 153 | match src.ast { |
154 | ModuleSource::SourceFile(..) => { | 154 | ModuleSource::SourceFile(..) => { |
155 | let mod_path: RelativePathBuf = db.file_relative_path(file_id); | 155 | let mod_path: RelativePathBuf = db.file_relative_path(file_id); |
156 | // mod is defined in path/to/dir/mod.rs | 156 | // mod is defined in path/to/dir/mod.rs |