mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 06:41:48 +00:00
fix: Add binding definition for for-expr iterator desugared binding
This commit is contained in:
parent
fcfc6afe05
commit
83d7724629
3 changed files with 42 additions and 35 deletions
|
@ -165,9 +165,11 @@ impl flags::AnalysisStats {
|
|||
}
|
||||
}
|
||||
eprintln!(
|
||||
", mods: {}, decls: {num_decls}, bodies: {}",
|
||||
", mods: {}, decls: {num_decls}, bodies: {}, adts: {}, consts: {}",
|
||||
visited_modules.len(),
|
||||
bodies.len()
|
||||
bodies.len(),
|
||||
adts.len(),
|
||||
consts.len(),
|
||||
);
|
||||
eprintln!("{:<20} {}", "Item Collection:", analysis_sw.elapsed());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue