diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-07-07 11:25:17 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-07 11:25:17 +0100 |
commit | 687fb031d2b40e5bf8b0748fd855a4d7c39e979a (patch) | |
tree | 7fed2ea080e1ebc9278d29fd5baa46e2b97c7f87 /crates/ra_ide_db/src/source_change.rs | |
parent | 0f5d62a3f3b33edadea50ea93c725ac36460c0d7 (diff) | |
parent | 3360118040a84d4f387db1c1d340fcaeeede2976 (diff) |
Merge #5245
5245: Refactor AssistBuilder to manage a SourceChange r=matklad a=theduke
`AssistBuilder` now managaes a full `SourceChange` instead of a
`Vec<SourceFileEdit>`.
This prepares AssistBuilder to handle creation of new files.
Co-authored-by: Christoph Herzog <[email protected]>
Diffstat (limited to 'crates/ra_ide_db/src/source_change.rs')
-rw-r--r-- | crates/ra_ide_db/src/source_change.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_db/src/source_change.rs b/crates/ra_ide_db/src/source_change.rs index 0bbd3c3e5..abb83f421 100644 --- a/crates/ra_ide_db/src/source_change.rs +++ b/crates/ra_ide_db/src/source_change.rs | |||
@@ -6,7 +6,7 @@ | |||
6 | use ra_db::FileId; | 6 | use ra_db::FileId; |
7 | use ra_text_edit::TextEdit; | 7 | use ra_text_edit::TextEdit; |
8 | 8 | ||
9 | #[derive(Debug, Clone)] | 9 | #[derive(Default, Debug, Clone)] |
10 | pub struct SourceChange { | 10 | pub struct SourceChange { |
11 | pub source_file_edits: Vec<SourceFileEdit>, | 11 | pub source_file_edits: Vec<SourceFileEdit>, |
12 | pub file_system_edits: Vec<FileSystemEdit>, | 12 | pub file_system_edits: Vec<FileSystemEdit>, |