| Age | Commit message (Expand) | Author | Lines |
| 2017-01-26 | rustc: rename TyCtxt's `map` field to `hir`. | Eduard-Mihai Burtescu | -12/+12 |
| 2016-12-28 | rustc: move function arguments into hir::Body. | Eduard-Mihai Burtescu | -3/+5 |
| 2016-12-28 | rustc: separate TraitItem from their parent Item, just like ImplItem. | Eduard-Mihai Burtescu | -2/+5 |
| 2016-12-20 | Rollup merge of #38418 - michaelwoerister:def_path_cleanup, r=eddyb | Alex Crichton | -4/+4 |
| 2016-12-19 | Don't try get local DefId of imported macro in rustdoc. | Michael Woerister | -4/+4 |
| 2016-12-18 | Remove `MacroDef`'s fields `imported_from` and `allow_internal_unstable`, | Jeffrey Seyfried | -2/+3 |
| 2016-11-28 | rustc: embed path resolutions into the HIR instead of keeping DefMap. | Eduard-Mihai Burtescu | -5/+17 |
| 2016-11-28 | rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR. | Eduard-Mihai Burtescu | -46/+13 |
| 2016-11-24 | rustdoc: we can now assume DocContext always has a TyCtxt. | Eduard-Mihai Burtescu | -19/+11 |
| 2016-11-24 | rustdoc: use libsyntax ast::Attribute instead of "cleaning" them. | Eduard-Mihai Burtescu | -7/+6 |
| 2016-11-17 | when creating an AssociatedItem, read data from impl, not impl item | Niko Matsakis | -2/+2 |
| 2016-11-16 | fallout from separating impl-items from impls | Niko Matsakis | -1/+4 |
| 2016-11-14 | rustdoc: Fix some local inlining issues | Oliver Middleton | -34/+54 |
| 2016-11-10 | Support `#[macro_reexport]`ing custom derives. | Jeffrey Seyfried | -1/+7 |
| 2016-11-10 | Fix fallout in `librustdoc`. | Jeffrey Seyfried | -2/+25 |
| 2016-11-08 | Replace FnvHasher use with FxHasher. | Nicholas Nethercote | -3/+3 |
| 2016-10-02 | Cleanup `return` statements. | Corey Farwell | -1/+1 |
| 2016-09-20 | rustc_metadata: go only through rustc_serialize in astencode. | Eduard Burtescu | -1/+2 |
| 2016-09-03 | Support unions in rustdoc | Vadim Petrochenkov | -2/+22 |
| 2016-09-03 | Add unions to HIR | Vadim Petrochenkov | -0/+2 |
| 2016-08-30 | Auto merge of #36066 - jseyfried:rollup, r=Manishearth | bors | -4/+3 |
| 2016-08-28 | Rollup merge of #35917 - jseyfried:remove_attr_ext_traits, r=nrc | Jeffrey Seyfried | -1/+0 |
| 2016-08-28 | Rollup merge of #35850 - SergioBenitez:master, r=nrc | Jeffrey Seyfried | -3/+3 |
| 2016-08-27 | Use deterministic `FnvHash{Map,Set}` in rustdoc | Jonas Schievink | -3/+3 |
| 2016-08-25 | Refactor away `AttrMetaMethods`. | Jeffrey Seyfried | -1/+0 |
| 2016-08-25 | Refactor away `AttrNestedMetaItemMethods`. | Jeffrey Seyfried | -1/+1 |
| 2016-08-25 | Implement RFC#1559: allow all literals in attributes. | Sergio Benitez | -3/+3 |
| 2016-08-21 | Fix fallout in `rustdoc`. | Jeffrey Seyfried | -1/+1 |
| 2016-06-28 | Rollup merge of #34479 - ollie27:rustdoc_renamed_reexport_list, r=GuillaumeGomez | Guillaume Gomez | -2/+2 |
| 2016-06-26 | rustdoc: Fix inlined renamed reexports in import lists | Oliver Middleton | -2/+2 |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -1/+1 |
| 2016-06-14 | Auto merge of #34232 - ollie27:rustdoc_inline, r=alexcrichton | bors | -1/+3 |
| 2016-06-11 | rustdoc: Don't inline #[doc(hidden)] pub use | Oliver Middleton | -1/+3 |
| 2016-06-10 | Introduce TyCtxt::expect_def/expect_resolution helpers and use them where pos... | Vadim Petrochenkov | -3/+3 |
| 2016-05-11 | rustc: Avoid free functions taking &TyCtxt and &InferCtxt. | Eduard Burtescu | -3/+2 |
| 2016-04-25 | Linkify extern crates on rustdoc pages | mitaa | -0/+3 |
| 2016-04-18 | Perform doc-reachability check for inlined impls | mitaa | -7/+33 |
| 2016-04-13 | Retire rustdocs `ANALYSISKEY` | mitaa | -8/+2 |
| 2016-04-07 | Make `hir::Visibility` non-copyable and add `ty::Visibility` | Jeffrey Seyfried | -12/+12 |
| 2016-04-06 | rustc: move rustc_front to rustc::hir. | Eduard Burtescu | -2/+2 |
| 2016-03-22 | Consider `doc(no_inline)` in crate-local inlining | mitaa | -2/+5 |
| 2016-03-10 | Consider `doc(hidden)` for crate-local inlining | mitaa | -6/+36 |
| 2016-03-09 | Check for `doc(inline)` instead of `.*(inline)` | mitaa | -2/+2 |
| 2016-03-04 | Simplify `if let`/`match` expressions | mitaa | -5/+1 |
| 2015-12-18 | Abstract away differences between Vec and ptr::P in HIR | Vadim Petrochenkov | -4/+4 |
| 2015-12-12 | Support `#[deprecated]` in rustdoc | Vadim Petrochenkov | -0/+18 |
| 2015-12-12 | Implement `#[deprecated]` attribute (RFC 1270) | Vadim Petrochenkov | -1/+1 |
| 2015-11-26 | rustdoc: only show macro arm's lhs | Jonas Schievink | -0/+4 |
| 2015-11-19 | Changes to data produced by privacy pass | Vadim Petrochenkov | -1/+1 |
| 2015-11-18 | Port a bunch of code new-visitor; all of these ports were | Niko Matsakis | -4/+6 |