| Age | Commit message (Expand) | Author | Lines |
| 2014-12-08 | librustc: Make `Copy` opt-in. | Niko Matsakis | -0/+2 |
| 2014-11-29 | Replace some verbose match statements with their `if let` equivalent. | jfager | -5/+2 |
| 2014-11-26 | rollup merge of #19329: steveklabnik/doc_style_cleanup2 | Alex Crichton | -5/+3 |
| 2014-11-26 | /*! -> //! | Steve Klabnik | -5/+3 |
| 2014-11-26 | Rote changes due to the fact that ast paths no longer carry this extraneous b... | Niko Matsakis | -7/+5 |
| 2014-11-23 | Remove type parameters from ExprField and ExprTupField | Adolfo OchagavĂa | -8/+2 |
| 2014-11-20 | auto merge of #19113 : nikomatsakis/rust/unboxed-boxed-closure-unification, r... | bors | -8/+1 |
| 2014-11-19 | Fixes to the roll-up | Jakub Bukaj | -1/+1 |
| 2014-11-19 | rollup merge of #19073: jakub-/issue-19069 | Jakub Bukaj | -7/+19 |
| 2014-11-19 | Merge the ExprFnBlock and ExprUnboxedClosure into one ExprClosure with an opt... | Niko Matsakis | -8/+1 |
| 2014-11-19 | Refactor QPath to take an ast::TraitRef | Niko Matsakis | -2/+2 |
| 2014-11-18 | Feature gate non-ASCII lifetime identifiers | Jakub Bukaj | -7/+19 |
| 2014-11-18 | Convert TyPolyTraitRef to accept arbitary bounds, so that things like | Niko Matsakis | -42/+70 |
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -0/+2 |
| 2014-11-16 | Complete the removal of ty_nil, ast::LitNil, ast::TyBot and ast::TyUniq | Jakub Bukaj | -7/+13 |
| 2014-11-07 | Update parser with `for` syntax | Niko Matsakis | -6/+23 |
| 2014-11-06 | Remove the unboxed closure `|:|` notation from types and trait references com... | Niko Matsakis | -13/+0 |
| 2014-11-06 | Support parenthesized paths `Foo(A,B) -> C` that expand to `Foo<(A,B),C>`. Th... | Niko Matsakis | -5/+17 |
| 2014-11-03 | Restructure AST so that the associated type definition carries | Niko Matsakis | -1/+2 |
| 2014-10-29 | Rename fail! to panic! | Steve Klabnik | -1/+1 |
| 2014-10-24 | Add a lint for not using field pattern shorthands | P1start | -1/+1 |
| 2014-10-13 | auto merge of #17733 : jgallagher/rust/while-let, r=alexcrichton | bors | -0/+5 |
| 2014-10-11 | Remove `virtual` structs from the language | Jakub Wieczorek | -4/+0 |
| 2014-10-10 | Teach libsyntax about `while let` | John Gallagher | -0/+5 |
| 2014-10-09 | rustc: Add `const` globals to the language | Alex Crichton | -1/+2 |
| 2014-10-02 | syntax: ast: remove TyBox and UnBox. | Eduard Burtescu | -1/+1 |
| 2014-09-30 | Teach libsyntax about `if let` | Kevin Ballard | -1/+7 |
| 2014-09-22 | librustc: Parse and resolve higher-rank lifetimes in traits. | Patrick Walton | -1/+4 |
| 2014-09-19 | Implement slicing syntax. | Nick Cameron | -0/+5 |
| 2014-09-17 | librustc: Implement associated types behind a feature gate. | Patrick Walton | -5/+22 |
| 2014-09-14 | syntax: fix fallout from using ptr::P. | Eduard Burtescu | -14/+5 |
| 2014-09-12 | Track the visited AST's lifetime throughout Visitor. | Eduard Burtescu | -134/+117 |
| 2014-09-12 | Remove largely unused context from Visitor. | Eduard Burtescu | -325/+281 |
| 2014-09-10 | Implement tuple and tuple struct indexing | P1start | -0/+6 |
| 2014-08-29 | Fix formatting, update copyright dates | Pythoner6 | -1/+1 |
| 2014-08-29 | Add support for labeled while loops. | Pythoner6 | -1/+1 |
| 2014-08-27 | Implement generalized object and type parameter bounds (Fixes #16462) | Niko Matsakis | -22/+16 |
| 2014-08-26 | DST coercions and DST structs | Nick Cameron | -3/+0 |
| 2014-08-19 | Fix double evaluation of read+write operands | Piotr Czarnecki | -3/+3 |
| 2014-08-14 | librustc: Implement simple `where` clauses. | Patrick Walton | -7/+7 |
| 2014-08-14 | librustc: Stop assuming that implementations and traits only contain | Patrick Walton | -10/+23 |
| 2014-08-14 | librustc: Tie up loose ends in unboxed closures. | Patrick Walton | -1/+1 |
| 2014-08-13 | librustc: Parse, but do not fully turn on, the `ref` keyword for | Patrick Walton | -2/+2 |
| 2014-08-07 | Temporary bootstrapping hack: introduce syntax for r egion bounds like `'b:'a`, | Niko Matsakis | -2/+2 |
| 2014-08-06 | AST refactoring: merge PatWild and PatWildMulti into one variant with a flag. | Felix S. Klock II | -1/+1 |
| 2014-07-24 | libsyntax: Remove `~self` and `mut ~self` from the language. | Patrick Walton | -1/+1 |
| 2014-07-20 | Implement new mod import sugar | Jakub Wieczorek | -1/+6 |
| 2014-07-18 | librustc: Implement unboxed closures with mutable receivers | Patrick Walton | -2/+10 |
| 2014-07-17 | librustc: Remove cross-borrowing of `Box<T>` to `&T` from the language, | Patrick Walton | -3/+3 |
| 2014-07-16 | librustc: Implement the fully-expanded, UFCS form of explicit self. | Patrick Walton | -0/+1 |