We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 74e9798 + f7be635 commit 450860aCopy full SHA for 450860a
src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs
@@ -485,8 +485,8 @@ impl GlobalState {
485
}
486
// delay initial cache priming until proc macros are loaded, or we will load up a bunch of garbage into salsa
487
let proc_macros_loaded = self.config.prefill_caches()
488
- && !self.config.expand_proc_macros()
489
- || self.fetch_proc_macros_queue.last_op_result().copied().unwrap_or(false);
+ && (!self.config.expand_proc_macros()
+ || self.fetch_proc_macros_queue.last_op_result().copied().unwrap_or(false));
490
if proc_macros_loaded {
491
self.prime_caches_queue.request_op("became quiescent".to_owned(), ());
492
0 commit comments