summary refs log tree commit diff
path: root/src/librustc_save_analysis/external_data.rs
AgeCommit message (Collapse)AuthorLines
2016-09-20rustc_metadata: go only through rustc_serialize in astencode.Eduard Burtescu-3/+6
2016-09-19save-analysis: better 'parent' infoNick Cameron-7/+7
In particular, this fixes some bugs displaying doc URLs for method calls.
2016-09-07save-analysis: add docs dataNick Cameron-1/+23
2016-09-01save-analysis: add parent info to api dumpsNick Cameron-1/+13
The parent id is used for constructing rustdoc URLs by clients
2016-09-01Thread visibility info through save-analysis and filter save-analysis-api on it.Nick Cameron-4/+24
2016-06-23Move errors from libsyntax to its own crateJonathan Turner-1/+2
2016-06-16save-analysis: add a decl_id for methodsNick Cameron-0/+2
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-11save-analysis: some refinements to JSON dataNick Cameron-4/+14
Split variable and function kinds to give more information. Give children for methods, structs, enums, and traits.
2016-05-11save-analysis: attempt number 2 at a JSON versionNick Cameron-7/+21
2016-05-11rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper.Eduard Burtescu-25/+25
2016-05-06Use crate/index pair for def idsNick Cameron-123/+101
2016-05-03save-analysis: use a decoupled representation for dumped dataAdolfo OchagavĂ­a-0/+640
Closes #33348