rust/crates/rust-analyzer/src/cli
Florian Diebold d174b919dc Enable attribute macro expansion in analysis-stats
Before:
```
> $ rust-analyzer -q analysis-stats --with-proc-macro --load-output-dirs .
Database loaded:     19.08s, 277minstr
  crates: 34, mods: 688, decls: 13202, fns: 10412
Item Collection:     16.21s, 76ginstr
  exprs: 290580, ??ty: 2508 (0%), ?ty: 1814 (0%), !ty: 947
Inference:           27.46s, 108ginstr
Total:               43.67s, 184ginstr
```
After:
```
> $ ./target/release/rust-analyzer -q analysis-stats --with-proc-macro --load-output-dirs .
Database loaded:     1.09s, 277minstr
  crates: 34, mods: 688, decls: 14790, fns: 11006
Item Collection:     18.20s, 78ginstr
  exprs: 297826, ??ty: 493 (0%), ?ty: 558 (0%), !ty: 342
Inference:           28.34s, 111ginstr
Total:               46.54s, 190ginstr
```
2021-06-05 11:29:24 +02:00
..
analysis_stats.rs Display unknown types in analysis-stats 2021-05-27 19:30:28 +03:00
diagnostics.rs Add a way to resolve certain assists 2021-05-03 17:14:49 +03:00
load_cargo.rs Enable attribute macro expansion in analysis-stats 2021-06-05 11:29:24 +02:00
progress_report.rs Flush stdout when clearing the progress bar 2020-12-24 15:38:45 +02:00
ssr.rs feat: avoid checking the whole project during initial loading 2021-04-12 15:29:31 +03:00