diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-12-22 10:04:24 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-22 10:04:24 +0000 |
commit | b98ee075ee8baa6dc4284f04df4c7012baccda28 (patch) | |
tree | 66904d52167d8bdb45f598499538a17ef1f906e4 /crates/ide/src/diagnostics | |
parent | 61711d975777b176ca2a93ec1ceb2bed661fc6d7 (diff) | |
parent | 23ed33a3a6b92064ae711bac305ac163f1fda4f5 (diff) |
Merge #6746
6746: Feature/add assist extract module to file r=matklad a=sasurau4
Fix #6522
## Screenshot
<img src="https://user-images.githubusercontent.com/13580199/102748269-33a44300-43a5-11eb-9e37-f5fcb8e62f73.gif" width=600 />
## TODO
- [x] Remove all TODO comment
- [x] Pass the doc test
Co-authored-by: Daiki Ihara <[email protected]>
Diffstat (limited to 'crates/ide/src/diagnostics')
-rw-r--r-- | crates/ide/src/diagnostics/fixes.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ide/src/diagnostics/fixes.rs b/crates/ide/src/diagnostics/fixes.rs index e8b896623..d79f5c170 100644 --- a/crates/ide/src/diagnostics/fixes.rs +++ b/crates/ide/src/diagnostics/fixes.rs | |||
@@ -40,6 +40,7 @@ impl DiagnosticWithFix for UnresolvedModule { | |||
40 | anchor: self.file.original_file(sema.db), | 40 | anchor: self.file.original_file(sema.db), |
41 | path: self.candidate.clone(), | 41 | path: self.candidate.clone(), |
42 | }, | 42 | }, |
43 | initial_contents: "".to_string(), | ||
43 | } | 44 | } |
44 | .into(), | 45 | .into(), |
45 | unresolved_module.syntax().text_range(), | 46 | unresolved_module.syntax().text_range(), |