diff options
Diffstat (limited to 'crates/ra_ide_db/src/change.rs')
-rw-r--r-- | crates/ra_ide_db/src/change.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/crates/ra_ide_db/src/change.rs b/crates/ra_ide_db/src/change.rs index 7a4e04ca9..8b4fd7ab8 100644 --- a/crates/ra_ide_db/src/change.rs +++ b/crates/ra_ide_db/src/change.rs | |||
@@ -3,11 +3,11 @@ | |||
3 | 3 | ||
4 | use std::{fmt, sync::Arc, time}; | 4 | use std::{fmt, sync::Arc, time}; |
5 | 5 | ||
6 | use profile::{memory_usage, Bytes}; | 6 | use base_db::{ |
7 | use ra_db::{ | ||
8 | salsa::{Database, Durability, SweepStrategy}, | 7 | salsa::{Database, Durability, SweepStrategy}, |
9 | CrateGraph, FileId, SourceDatabase, SourceDatabaseExt, SourceRoot, SourceRootId, | 8 | CrateGraph, FileId, SourceDatabase, SourceDatabaseExt, SourceRoot, SourceRootId, |
10 | }; | 9 | }; |
10 | use profile::{memory_usage, Bytes}; | ||
11 | use rustc_hash::FxHashSet; | 11 | use rustc_hash::FxHashSet; |
12 | 12 | ||
13 | use crate::{symbol_index::SymbolsDatabase, RootDatabase}; | 13 | use crate::{symbol_index::SymbolsDatabase, RootDatabase}; |
@@ -146,7 +146,7 @@ impl RootDatabase { | |||
146 | 146 | ||
147 | let sweep = SweepStrategy::default().discard_values().sweep_all_revisions(); | 147 | let sweep = SweepStrategy::default().discard_values().sweep_all_revisions(); |
148 | 148 | ||
149 | ra_db::ParseQuery.in_db(self).sweep(sweep); | 149 | base_db::ParseQuery.in_db(self).sweep(sweep); |
150 | hir::db::ParseMacroQuery.in_db(self).sweep(sweep); | 150 | hir::db::ParseMacroQuery.in_db(self).sweep(sweep); |
151 | 151 | ||
152 | // Macros do take significant space, but less then the syntax trees | 152 | // Macros do take significant space, but less then the syntax trees |
@@ -201,14 +201,14 @@ impl RootDatabase { | |||
201 | } | 201 | } |
202 | sweep_each_query![ | 202 | sweep_each_query![ |
203 | // SourceDatabase | 203 | // SourceDatabase |
204 | ra_db::ParseQuery | 204 | base_db::ParseQuery |
205 | ra_db::CrateGraphQuery | 205 | base_db::CrateGraphQuery |
206 | 206 | ||
207 | // SourceDatabaseExt | 207 | // SourceDatabaseExt |
208 | ra_db::FileTextQuery | 208 | base_db::FileTextQuery |
209 | ra_db::FileSourceRootQuery | 209 | base_db::FileSourceRootQuery |
210 | ra_db::SourceRootQuery | 210 | base_db::SourceRootQuery |
211 | ra_db::SourceRootCratesQuery | 211 | base_db::SourceRootCratesQuery |
212 | 212 | ||
213 | // AstDatabase | 213 | // AstDatabase |
214 | hir::db::AstIdMapQuery | 214 | hir::db::AstIdMapQuery |