| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2014-07-13 | refactor Method definition to make space for macros | John Clements | -11/+21 |
| 2014-07-11 | make walk/visit_mac opt-in only | John Clements | -2/+11 |
| 2014-07-09 | syntax: doc comments all the things | Corey Richardson | -16/+16 |
| 2014-07-08 | carry self ident forward through re-parsing | John Clements | -2/+2 |
| 2014-07-03 | Simplify PatIdent to contain an Ident rather than a Path | John Clements | -2/+2 |
| 2014-06-13 | libsyntax: Allow `+` to separate trait bounds from objects. | Patrick Walton | -1/+1 |
| 2014-06-11 | rustc: Move the AST from @T to Gc<T> | Alex Crichton | -14/+14 |
| 2014-06-11 | syntax: Move the AST from @T to Gc<T> | Alex Crichton | -138/+140 |
| 2014-06-10 | Fix more misspelled comments and strings. | Joseph Crail | -1/+1 |
| 2014-06-09 | librustc: Implement sugar for the `FnMut` trait | Patrick Walton | -0/+13 |
| 2014-06-07 | Add visit_attribute to Visitor, use it for unused_attribute | Steven Fackler | -16/+46 |
| 2014-05-29 | auto merge of #14483 : ahmedcharles/rust/patbox, r=alexcrichton | bors | -1/+1 |
| 2014-05-28 | Add AST node for pattern macros | Keegan McAllister | -0/+1 |
| 2014-05-27 | Rename PatUniq to PatBox. Fixes part of #13910. | Ahmed Charles | -1/+1 |
| 2014-05-15 | syntax::visit: pub `walk_explicit_self` so impls can call it as defaults do. | Felix S. Klock II | -3/+13 |
| 2014-05-14 | Removed unnecessary arguments for walk_* functions | Michael Darakananda | -8/+4 |
| 2014-05-03 | Temporary patch to accept arbitrary lifetimes (behind feature gate) in bound ... | Niko Matsakis | -1/+2 |
| 2014-04-26 | syntax: ViewItemUse no longer contains multiple view paths. | Kang Seonghoon | -15/+13 |
| 2014-04-23 | Support unsized types with the `type` keyword | Nick Cameron | -1/+1 |
| 2014-04-20 | Allow inheritance between structs. | Nick Cameron | -0/+4 |
| 2014-04-11 | syntax: remove ast::Sigil. | Eduard Burtescu | -2/+13 |
| 2014-04-10 | Renamed ast::Purity to ast::FnStyle and ast::ImpureFn to ast::NormalFn and up... | Kasey Carrothers | -3/+3 |
| 2014-04-04 | syntax: remove obsolete mutability from ExprVec and ExprRepeat. | Eduard Burtescu | -2/+2 |
| 2014-04-03 | syntax: Remove AbiSet, use one Abi | Alex Crichton | -2/+2 |
| 2014-03-22 | Migrate all users of opt_vec to owned_slice, delete opt_vec. | Huon Wilson | -4/+3 |