diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-04-12 13:32:55 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-12 13:32:55 +0100 |
commit | a526d0a4b78b29fec4c2e8d5608ceaeec128f794 (patch) | |
tree | 05141f6e9aa7d20c4ce2a8b59324a3d82d43f895 /crates/rust-analyzer/src/main_loop.rs | |
parent | 7be06139b632ee615fc18af04dd67947e2c794b2 (diff) | |
parent | 186c5c47cbfde4ae9d81dc67450c958cb6aece2c (diff) |
Merge #8476
8476: feat: avoid checking the whole project during initial loading r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/rust-analyzer/src/main_loop.rs')
-rw-r--r-- | crates/rust-analyzer/src/main_loop.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs index 47c6c6d77..b3d4c6ec5 100644 --- a/crates/rust-analyzer/src/main_loop.rs +++ b/crates/rust-analyzer/src/main_loop.rs | |||
@@ -236,7 +236,8 @@ impl GlobalState { | |||
236 | let workspaces_updated = !Arc::ptr_eq(&old, &self.workspaces); | 236 | let workspaces_updated = !Arc::ptr_eq(&old, &self.workspaces); |
237 | 237 | ||
238 | if self.config.run_build_scripts() && workspaces_updated { | 238 | if self.config.run_build_scripts() && workspaces_updated { |
239 | let mut collector = BuildDataCollector::default(); | 239 | let mut collector = |
240 | BuildDataCollector::new(self.config.wrap_rustc()); | ||
240 | for ws in self.workspaces.iter() { | 241 | for ws in self.workspaces.iter() { |
241 | ws.collect_build_data_configs(&mut collector); | 242 | ws.collect_build_data_configs(&mut collector); |
242 | } | 243 | } |