mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 04:44:57 +00:00
fix: Fix progress reporting getting stuck
This commit is contained in:
parent
2b02df27c5
commit
0bdbf497b6
6 changed files with 66 additions and 32 deletions
|
@ -52,7 +52,7 @@ pub enum Message {
|
|||
/// The total files to be loaded.
|
||||
n_total: usize,
|
||||
/// The files that have been loaded successfully.
|
||||
n_done: usize,
|
||||
n_done: Option<usize>,
|
||||
/// The dir being loaded, `None` if its for a file.
|
||||
dir: Option<AbsPathBuf>,
|
||||
/// The [`Config`] version.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue