| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-07-25 | Rename JsonDumper to Dumper | Mark Rousskov | -96/+0 | |
| The Dumper no longer has anything to do specifically with JSON, it merely represents processing into an `Analysis` output. | ||||
| 2019-07-25 | Simplify save-analysis JSON dumper interface | Mark Rousskov | -53/+6 | |
| 2019-04-21 | save-analysis: Use serde instead of libserialize to dump JSON data | Igor Matuszewski | -4/+2 | |
| 2019-02-07 | librustc_save_analysis => 2018 | Taiki Endo | -1/+3 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2018-11-07 | Rollup merge of #55734 - teresy:shorthand-fields, r=davidtwco | kennytm | -1/+1 | |
| refactor: use shorthand fields refactor: use shorthand for single fields everywhere (excluding tests). | ||||
| 2018-11-06 | refactor: use shorthand fields | teresy | -1/+1 | |
| 2018-10-31 | save analysis: don't dump macro refs | Nick Cameron | -1/+1 | |
| 2018-09-28 | Minimize final diff | Igor Matuszewski | -4/+2 | |
| 2018-09-28 | Emit used rustc invocation in the save-analysis file | Igor Matuszewski | -2/+8 | |
| 2018-08-07 | Avoid unnecessary pattern matching against Option and Result | ljedrz | -1/+1 | |
| 2018-07-12 | Deny bare trait objects in src/librustc_save_analysis | ljedrz | -2/+2 | |
| 2018-02-10 | Emit data::Impl in save-analysis | Martin Algesten | -1/+5 | |
| 2017-11-19 | allow filtering analysis by reachability | Andy Russell | -8/+16 | |
| 2017-11-08 | save-analysis: run rustfmt | Nick Cameron | -6/+7 | |
| 2017-08-12 | Fix some typos | Bastien Orivel | -1/+1 | |
| 2017-08-02 | Update rls-data dep | Nick Cameron | -3/+7 | |
| 2017-07-24 | Point RLS submodule at a branch with required changes | Nick Cameron | -2/+8 | |
| And cargo update | ||||
| 2017-07-22 | Use config::pub_only rather than a spearate api mode | Nick Cameron | -13/+26 | |
| 2017-06-16 | Remove intermediate forms and some other refactoring | Nick Cameron | -380/+21 | |
| 2017-06-12 | Small refactoring + docs | Nick Cameron | -10/+1 | |
| 2017-06-12 | Use the new signature stuff | Nick Cameron | -32/+11 | |
| And fix a couple of bugs | ||||
| 2017-06-12 | Update rls-data | Nick Cameron | -3/+0 | |
| 2017-05-11 | Ensure we walk the root module of the crate | Nick Cameron | -1/+1 | |
| 2017-03-23 | save-analysis: allow clients to get data directly without writing to a file | Nick Cameron | -10/+40 | |
| 2017-03-15 | Move the API json dumper to use rls-data too | Nick Cameron | -1/+1 | |
| 2017-03-15 | Add rls-span to do some conversions into rls-data. | Nick Cameron | -6/+6 | |
| And fix some warnings and borrow errors | ||||
| 2017-03-15 | Use out-of-tree rustc serialize | Nick Cameron | -18/+9 | |
| And remove a few data structures in favour of rls-data ones | ||||
| 2017-03-15 | Change json dumper (and a few other bits and pieces) to use rls-data rather ↵ | Nick Cameron | -324/+204 | |
| than its own data structures | ||||
| 2017-03-10 | Export attributes in save-analysis data | Jonas Bushart | -0/+12 | |
| Some annotations like the "test" annotations might be of interest for other projects, especially rls. Export all attributes in a new attributes item. | ||||
| 2017-02-13 | save-analysis: emit info about impls and super-traits in JSON | Nick Cameron | -3/+46 | |
| 2016-12-22 | signature info for other items (mods, fns, methods, etc.) | Nick Cameron | -9/+9 | |
| 2016-12-22 | further lowering of signature data | Nick Cameron | -4/+44 | |
| 2016-12-22 | field signatures | Nick Cameron | -1/+1 | |
| 2016-12-22 | save-analysis: add `Signature` info to structs | Nick Cameron | -1/+12 | |
| 2016-11-25 | save-analysis: redirect a module decl to the start of the defining file | Nick Cameron | -17/+39 | |
| 2016-10-29 | save-analysis: change imports to carry a ref id rather than their own node id | Nick Cameron | -4/+4 | |
| 2016-09-20 | rustc_metadata: go only through rustc_serialize in astencode. | Eduard Burtescu | -1/+1 | |
| 2016-09-07 | save-analysis: only emit type in the value for variables | Nick Cameron | -1/+1 | |
| 2016-09-07 | save-analysis: add a `kind` tag to JSON dumps | Nick Cameron | -0/+3 | |
| 2016-09-07 | save-analysis: add docs data | Nick Cameron | -0/+12 | |
| 2016-06-16 | save-analysis: add a decl_id for methods | Nick Cameron | -0/+12 | |
| This is non-null if the method is in a (non-inherent) impl and in that case will be the id for the method declaration in the implemented trait. | ||||
| 2016-06-11 | save-analysis: some refinements to JSON data | Nick Cameron | -6/+29 | |
| Split variable and function kinds to give more information. Give children for methods, structs, enums, and traits. | ||||
| 2016-05-13 | save-analysis: make DefIds prettier | Nick Cameron | -25/+42 | |
| 2016-05-11 | save-analysis: give better text info in value fields | Nick Cameron | -7/+5 | |
| 2016-05-11 | save-analysis: attempt number 2 at a JSON version | Nick Cameron | -41/+370 | |
| 2016-05-03 | save-analysis: use a decoupled representation for dumped data | Adolfo Ochagavía | -577/+8 | |
| Closes #33348 | ||||
| 2016-04-28 | Review changes and satisfy make tidy | Nick Cameron | -25/+25 | |
| 2016-04-26 | save-analysis-json: lower def ids | Nick Cameron | -62/+63 | |
| 2016-04-26 | save-analysis-json: thread through -z option | Nick Cameron | -2/+21 | |
| In fact, we make JSOn the default and add an option for save-analysis-csv for the legacy behaviour. We also rename some bits and pieces `dxr` -> `save-analysis` | ||||
