| Age | Commit message (Expand) | Author | Lines |
| 2015-10-25 | syntax/rustc_front: Simplify VariantData::fields | Vadim Petrochenkov | -1/+1 |
| 2015-10-13 | Merge VariantData and VariantData_ | Vadim Petrochenkov | -4/+5 |
| 2015-10-13 | Merge struct fields and struct kind | Vadim Petrochenkov | -2/+2 |
| 2015-10-13 | Dict -> Struct, StructDef -> VariantData, def -> data | Vadim Petrochenkov | -5/+5 |
| 2015-10-13 | Provide span for visit_struct_def + remove some dead code | Vadim Petrochenkov | -1/+1 |
| 2015-10-13 | Remove now redundant NodeId from Variant | Vadim Petrochenkov | -3/+3 |
| 2015-10-13 | Decouple structure kinds from NodeIds | Vadim Petrochenkov | -1/+3 |
| 2015-10-01 | Make calling def_id on a DefSelfTy an error; the previous defids that | Niko Matsakis | -0/+1 |
| 2015-10-01 | move direct accesses of `node` to go through `as_local_node_id`, unless | Niko Matsakis | -24/+35 |
| 2015-10-01 | move job of creating local-def-ids to ast-map (with a few stragglers) | Niko Matsakis | -2/+2 |
| 2015-09-22 | Use Names in the remaining HIR structures with exception of... | Vadim Petrochenkov | -4/+4 |
| 2015-09-22 | Use Names in hir::{Field, ExprMethodCall, ExprField} | Vadim Petrochenkov | -2/+2 |
| 2015-09-22 | Use Names in HIR Items | Vadim Petrochenkov | -4/+4 |
| 2015-09-22 | Use Names in HIR visitors and folders | Vadim Petrochenkov | -1/+1 |
| 2015-09-17 | Correctly walk import lists in AST visitors | Vadim Petrochenkov | -0/+5 |
| 2015-09-16 | Use ast attributes every where (remove HIR attributes). | Nick Cameron | -3/+3 |
| 2015-09-03 | Add an intital HIR and lowering step | Nick Cameron | -66/+66 |
| 2015-08-24 | fallout from moving def-id | Niko Matsakis | -5/+5 |
| 2015-08-12 | Fix #23808: dead_code lint: visit types in paths | Tim Neumann | -0/+10 |
| 2015-08-06 | use VariantDef instead of struct_fields | Ariel Ben-Yehuda | -31/+12 |
| 2015-08-06 | introduce an ADTDef struct for struct/enum definitions | Ariel Ben-Yehuda | -4/+4 |
| 2015-07-04 | rustc: remove MethodOrigin and use the container to distinguish inherent meth... | Eduard Burtescu | -11/+4 |
| 2015-07-04 | rustc: simplify ty::MethodOrigin and avoid trait item indices. | Eduard Burtescu | -23/+1 |
| 2015-07-04 | rustc: remove unused MethodStaticClosure variant of MethodOrigin. | Eduard Burtescu | -1/+0 |
| 2015-06-27 | Begin refactor type checking state | Jared Roesch | -1/+1 |
| 2015-06-26 | rustc: switch most remaining middle::ty functions to methods. | Eduard Burtescu | -13/+10 |
| 2015-06-22 | Do not consider fields matched by wildcard patterns to be used | Seo Sanghyeon | -0/+3 |
| 2015-06-17 | Auto merge of #25961 - sanxiyn:dead-variant-2, r=huonw | bors | -1/+27 |
| 2015-06-12 | Cleanup: rename middle::ty::sty and its variants. | Eli Friedman | -2/+2 |
| 2015-06-11 | Conver reborrows to .iter() calls where appropriate | Joshua Landau | -2/+2 |
| 2015-06-10 | syntax: move ast_map to librustc. | Eduard Burtescu | -1/+2 |
| 2015-06-02 | Extend dead code lint to detect more unused enum variants | Seo Sanghyeon | -1/+27 |
| 2015-04-23 | Fix dead code check for associated const impls. | Sean Patrick Santos | -22/+32 |
| 2015-04-23 | Structural changes for associated constants | Sean Patrick Santos | -9/+4 |
| 2015-04-14 | Negative case of `len()` -> `is_empty()` | Tamir Duberstein | -1/+1 |
| 2015-04-14 | Expose visibility for fns in syntax::visit | Nick Cameron | -1/+1 |
| 2015-04-03 | In librustc*, convert many uses of ast::Ident to ast::Name, fixing much of #6... | Jonathan S | -10/+15 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -1/+1 |
| 2015-03-23 | Fallout in stdlib, rustdoc, rustc, etc. For most maps, converted uses of | Niko Matsakis | -2/+2 |
| 2015-03-14 | Revert "Extend dead code lint to detect more unused enum variants" | Manish Goregaokar | -27/+1 |
| 2015-03-13 | Rollup merge of #21468 - sanxiyn:dead-variant, r= | Manish Goregaokar | -1/+27 |
| 2015-03-11 | syntax: move MethMac to MacImplItem and combine {Provided,Required}Method int... | Eduard Burtescu | -6/+7 |
| 2015-03-11 | syntax: gather common fields of impl & trait items into their respective types. | Eduard Burtescu | -31/+26 |
| 2015-03-11 | syntax: move indirection around {Trait,Impl}Item, from within. | Eduard Burtescu | -2/+2 |
| 2015-02-24 | rustc: combine partial_def_map and last_private_map into def_map. | Eduard Burtescu | -5/+5 |
| 2015-02-24 | syntax: use a single Path for Trait::Item in QPath. | Eduard Burtescu | -5/+0 |
| 2015-02-24 | syntax: don't use TraitRef in QPath. | Eduard Burtescu | -0/+5 |
| 2015-02-18 | Replace all uses of `&foo[]` with `&foo[..]` en masse. | Niko Matsakis | -1/+1 |
| 2015-02-11 | rollup merge of #22048: LeoTestard/impl-patterns-used | Alex Crichton | -1/+1 |
| 2015-02-10 | Make the live code analysis visit method declarations. | Leo Testard | -1/+1 |