aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_batch/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-09-06 14:25:24 +0100
committerAleksey Kladov <[email protected]>2019-09-06 15:21:29 +0100
commit28df377759ee5625b0dad4c797be306c8d2624e3 (patch)
treea5fb9afa541a4e6ab5818530b3fd19d5e461ef9e /crates/ra_batch/src/lib.rs
parent007737a0e7dd2866e02a6398d8ee4aa7d5051d8c (diff)
add option to disable notify
Diffstat (limited to 'crates/ra_batch/src/lib.rs')
-rw-r--r--crates/ra_batch/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_batch/src/lib.rs b/crates/ra_batch/src/lib.rs
index 4e5bad044..07a7e0c86 100644
--- a/crates/ra_batch/src/lib.rs
+++ b/crates/ra_batch/src/lib.rs
@@ -6,7 +6,7 @@ use crossbeam_channel::{unbounded, Receiver};
6use ra_db::{CrateGraph, FileId, SourceRootId}; 6use ra_db::{CrateGraph, FileId, SourceRootId};
7use ra_ide_api::{AnalysisChange, AnalysisHost, FeatureFlags}; 7use ra_ide_api::{AnalysisChange, AnalysisHost, FeatureFlags};
8use ra_project_model::{PackageRoot, ProjectWorkspace}; 8use ra_project_model::{PackageRoot, ProjectWorkspace};
9use ra_vfs::{RootEntry, Vfs, VfsChange, VfsTask}; 9use ra_vfs::{RootEntry, Vfs, VfsChange, VfsTask, Watch};
10use ra_vfs_glob::RustPackageFilterBuilder; 10use ra_vfs_glob::RustPackageFilterBuilder;
11 11
12type Result<T> = std::result::Result<T, Box<dyn Error + Send + Sync>>; 12type Result<T> = std::result::Result<T, Box<dyn Error + Send + Sync>>;
@@ -37,6 +37,7 @@ pub fn load_cargo(root: &Path) -> Result<(AnalysisHost, FxHashMap<SourceRootId,
37 }) 37 })
38 .collect(), 38 .collect(),
39 sender, 39 sender,
40 Watch(false),
40 ); 41 );
41 let crate_graph = ws.to_crate_graph(&mut |path: &Path| { 42 let crate_graph = ws.to_crate_graph(&mut |path: &Path| {
42 let vfs_file = vfs.load(path); 43 let vfs_file = vfs.load(path);