aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_cli
Commit message (Collapse)AuthorAgeFilesLines
* Merge #1862bors[bot]2019-09-171-2/+2
|\ | | | | | | | | | | | | | | 1862: Assoc item resolution refactoring (again) r=flodiebold a=flodiebold This is #1849, with the associated type selection code removed for now. Handling cycles there will need some more thought. Co-authored-by: Florian Diebold <[email protected]>
| * Remove TraitItem and ImplItem in favor of AssocItemFlorian Diebold2019-09-171-2/+2
| |
* | show error log by defaultAleksey Kladov2019-09-171-1/+1
|/
* add quiet mode to analysis-statsAleksey Kladov2019-09-123-82/+116
|
* analysis stats uses positional arg againAleksey Kladov2019-09-121-2/+8
|
* refactor(args): Apply commentsGeobert Quach2019-09-102-107/+79
|
* refactor(args): Switch to pico-args in ra_toolsGeobert Quach2019-09-101-2/+1
|
* refactor(args): Switch to pico-argsGeobert Quach2019-09-103-78/+206
|
* make source_root API more abstractAleksey Kladov2019-09-061-2/+3
|
* Make type walking infrastructure a bit nicerFlorian Diebold2019-09-031-1/+1
| | | | | If/when we switch to using Chalk's Ty, we'll need to replace this by its `Fold` trait, but I didn't want to import the whole thing just yet.
* Correctly build BodySourceMap for macro-expanded expressionsAleksey Kladov2019-09-031-2/+5
|
* Add an expr_source method analogous to the source methods in the code modelFlorian Diebold2019-09-021-27/+26
| | | | ... and use that instead of exposing the source map.
* Report type mismatches in analysis-statsFlorian Diebold2019-09-021-1/+37
| | | | Only the number usually; each one individually when running with -v.
* disable clap's featuresAleksey Kladov2019-08-221-1/+1
|
* Remove cpuprofile dependenciesAleksey Kladov2019-08-171-1/+1
|
* implement durabilityAleksey Kladov2019-08-151-7/+31
|
* Update crates/ra_cli/src/analysis_stats.rsLaurențiu Nicola2019-08-051-1/+1
| | | Co-Authored-By: Aleksey Kladov <[email protected]>
* Display the parsing time in ra_cli analysis-statsLaurențiu Nicola2019-08-051-1/+5
|
* Make Analysis api cancellableKirill Bulatov2019-07-251-1/+1
|
* flexi_logger 0.14kjeremy2019-07-221-1/+1
|
* rename range -> text_rangeAleksey Kladov2019-07-201-1/+1
|
* move debug_dump to fmt::DebugAleksey Kladov2019-07-201-1/+1
|
* migrate ra_cli to the new rowanAleksey Kladov2019-07-191-3/+3
|
* make Parse fields privateAleksey Kladov2019-07-121-1/+1
| | | | this is in preparation for the new rowan API
* account for dependencies when showing memory usageAleksey Kladov2019-07-121-0/+4
|
* Remove unused dependenciesShotaro Yamada2019-07-081-1/+0
|
* Some clippy fixes for 1.36Jeremy Kolb2019-07-041-1/+1
|
* allow rustfmt to reorder importsAleksey Kladov2019-07-043-8/+8
| | | | | | This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway
* print memory usage for queriesAleksey Kladov2019-06-303-3/+13
|
* Move memory usage statistics to ra_profAleksey Kladov2019-06-301-1/+1
|
* move ra_prof dep where it belongsAleksey Kladov2019-06-261-1/+4
|
* Bump cargo_metadata, ena, flexi_loggerkjeremy2019-06-201-1/+1
|
* add analysis-bench to benchmark incremental analysisAleksey Kladov2019-06-163-9/+149
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Can be used like this: ``` $ cargo run --release -p ra_cli -- \ analysis-bench ../chalk/ \ --complete ../chalk/chalk-engine/src/logic.rs:94:0 loading: 225.970093ms from scratch: 8.492373325s no change: 445.265µs trivial change: 95.631242ms ``` Or like this: ``` $ cargo run --release -p ra_cli -- \ analysis-bench ../chalk/ \ --highlight ../chalk/chalk-engine/src/logic.rs loading: 209.873484ms from scratch: 9.504916942s no change: 7.731119ms trivial change: 124.984039ms ``` "from scratch" includes initial analysis of the relevant bits of the project "no change" just asks the same question for the second time. It measures overhead on assembling the answer outside of salsa. "trivial change" doesn't do an actual salsa change, it just advances the revision. This test how fast is salsa at validating things.
* reuse AnalysisHost in batch analysisAleksey Kladov2019-06-151-13/+13
|
* CleanupMuhammad Mominul Huque2019-06-151-1/+1
|
* Get rid of failure: ra_batch ra_cliMuhammad Mominul Huque2019-06-152-3/+2
|
* fix compilationAleksey Kladov2019-06-111-4/+4
|
* rename tools -> ra_toolsAleksey Kladov2019-06-101-1/+0
| | | | | This should help with caching on CI I hope (see .travis.yml before_cache)
* Fix clippy::single_matchAlan Du2019-06-041-6/+4
|
* fix typos in mbe testsAleksey Kladov2019-05-281-3/+3
|
* make it build againPascal Hertleif2019-05-271-1/+1
|
* More clever highlighting, incl draft for structsPascal Hertleif2019-05-271-3/+6
|
* Colorize Rust code as HTMLAleksey Kladov2019-05-251-1/+7
|
* output the progress for realAleksey Kladov2019-05-201-1/+4
|
* show current function in analysis-stats progress barAleksey Kladov2019-05-142-3/+8
|
* drop obsolete render test subcommandAleksey Kladov2019-05-121-30/+1
|
* allow to specify path in analysis-statsAleksey Kladov2019-05-122-4/+6
|
* Allow targeting a specific function with analysis-statsFlorian Diebold2019-05-072-4/+12
| | | | This can be useful for debugging.
* Merge #1068bors[bot]2019-04-032-4/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | 1068: profiling crate first draft r=matklad a=pasa I've made this first draft for #961 Could you look at it? Is this something what you are looking for? It has lack of tests. I can't figure out how to test stderr output in rust right now. Do you have some clues? Additionally I'm thinking about to implement procedural macros to annotate methods with this profiler. Will it be helpful? Co-authored-by: Sergey Parilin <[email protected]>
| * Merge remote-tracking branch 'upstream/master' into issue961_profilingSergey Parilin2019-04-022-2/+1
| |\