| Age | Commit message (Expand) | Author | Lines |
| 2015-07-06 | After inferring regions, scan for any bounds that are due to a lifetime | Niko Matsakis | -0/+47 |
| 2015-07-06 | Add a boolean flag to ExistentialBounds tracking whether the | Niko Matsakis | -11/+67 |
| 2015-06-19 | Auto merge of #24527 - nikomatsakis:issue-24085, r=nikomatsakis | bors | -11/+34 |
| 2015-06-19 | Expand the "givens" set to cover transitive relations. The givens array | Niko Matsakis | -11/+34 |
| 2015-06-19 | rustc: remove Repr and UserString. | Eduard Burtescu | -193/+177 |
| 2015-06-19 | rustc: replace Repr/UserString impls with Debug/Display ones. | Eduard Burtescu | -190/+32 |
| 2015-06-19 | Clean up unused argument/variable warnings. | Eduard Burtescu | -3/+0 |
| 2015-06-19 | rustc: use the TLS type context in Repr and UserString. | Eduard Burtescu | -203/+203 |
| 2015-06-19 | rustc: leave only one free top-level function in ppaux, and private. | Eduard Burtescu | -4/+124 |
| 2015-06-19 | rustc: use Repr and UserString instead of ppaux::ty_to_string. | Eduard Burtescu | -3/+1 |
| 2015-06-19 | rustc: reduce ppaux's public footprint to 5 functions. | Eduard Burtescu | -8/+12 |
| 2015-06-12 | Split TyArray into TyArray and TySlice. | Eli Friedman | -0/+1 |
| 2015-06-12 | Cleanup: rename middle::ty::sty and its variants. | Eli Friedman | -64/+64 |
| 2015-06-11 | Conver reborrows to .iter() calls where appropriate | Joshua Landau | -3/+3 |
| 2015-06-10 | Removed many pointless calls to *iter() and iter_mut() | Joshua Landau | -1/+1 |
| 2015-06-10 | Auto merge of #26141 - eddyb:ast_map, r=nikomatsakis | bors | -1/+1 |
| 2015-06-10 | Auto merge of #26055 - arielb1:smart-fold, r=nikomatsakis | bors | -4/+7 |
| 2015-06-10 | syntax: move ast_map to librustc. | Eduard Burtescu | -1/+1 |
| 2015-06-08 | Replace usage of String::from_str with String:from | Simon Sapin | -1/+1 |
| 2015-06-08 | Skip useless recursion in freshening and late-bound-region substitutio | Ariel Ben-Yehuda | -4/+7 |
| 2015-05-27 | Use `const fn` to abstract away the contents of UnsafeCell & friends. | Eduard Burtescu | -2/+2 |
| 2015-05-21 | syntax: parse `const fn` for free functions and inherent methods. | Eduard Burtescu | -7/+12 |
| 2015-05-12 | Create a FreshFloatTy separate from FreshIntTy | Ariel Ben-Yehuda | -2/+3 |
| 2015-05-04 | Fix spelling errors in documentation. | Joseph Crail | -1/+1 |
| 2015-04-30 | Stop using Rc in TraitRef and TraitDef | Ariel Ben-Yehuda | -13/+11 |
| 2015-04-27 | Auto merge of #23606 - quantheory:associated_const, r=nikomatsakis | bors | -4/+4 |
| 2015-04-23 | Structural changes for associated constants | Sean Patrick Santos | -4/+4 |
| 2015-04-18 | Rather than storing the relations between free-regions in a global | Niko Matsakis | -49/+73 |
| 2015-04-17 | Port to use the new Unify code, which has no UnifyValue trait | Niko Matsakis | -343/+52 |
| 2015-04-17 | Port to using the newer graph, which offers iterators instead of the | Niko Matsakis | -17/+13 |
| 2015-04-17 | Use the newer snapshot_vec, which has a simplified delegate | Niko Matsakis | -8/+6 |
| 2015-04-14 | Negative case of `len()` -> `is_empty()` | Tamir Duberstein | -2/+2 |
| 2015-04-14 | Positive case of `len()` -> `is_empty()` | Tamir Duberstein | -3/+3 |
| 2015-04-04 | Added test for #24036, using spans to display note/help for this message now | Sean Bowe | -2/+3 |
| 2015-04-04 | Fixed bug calling .note() instead of .help(). Added small note when two | Sean Bowe | -1/+1 |
| 2015-04-01 | rollup merge of #23860: nikomatsakis/copy-requires-clone | Alex Crichton | -8/+8 |
| 2015-04-02 | Rollup merge of #23895 - nikomatsakis:fn-trait-inheritance-add-impls, r=pnkfelix | Manish Goregaokar | -1201/+646 |
| 2015-04-01 | Fallout out rustc | Niko Matsakis | -8/+8 |
| 2015-04-01 | Update comments | Niko Matsakis | -30/+30 |
| 2015-04-01 | Remove the `Option<>` since when computing LUB since I believe that the | Niko Matsakis | -15/+18 |
| 2015-04-01 | Implement the new region hierarchy rules, in which regions from distinct | Niko Matsakis | -108/+55 |
| 2015-03-31 | Port over type inference to using the new type relation stuff | Niko Matsakis | -933/+450 |
| 2015-03-31 | Remove unused import | Niko Matsakis | -1/+1 |
| 2015-03-31 | Extract more `ty` and `infer` dependencies from the unification engine | Niko Matsakis | -61/+65 |
| 2015-03-31 | Make union-find helper fns private, change to u32. | Niko Matsakis | -18/+26 |
| 2015-03-31 | Refactor unification interface by moving the methods off of inferctxt and ont... | Niko Matsakis | -140/+99 |
| 2015-03-31 | Combine `try` and `commit_if_ok` and make some details of inference | Niko Matsakis | -61/+45 |
| 2015-03-31 | Rename the cryptic cres and ures types. | Niko Matsakis | -161/+134 |
| 2015-03-28 | Rollup merge of #23803 - richo:unused-braces, r=Manishearth | Manish Goregaokar | -18/+18 |
| 2015-03-28 | cleanup: Remove unused braces in use statements | Richo Healey | -18/+18 |