| Age | Commit message (Expand) | Author | Lines |
| 2014-11-26 | Rote changes due to the fact that ast paths no longer carry this extraneous b... | Niko Matsakis | -4/+6 |
| 2014-11-23 | Remove type parameters from ExprField and ExprTupField | Adolfo OchagavĂa | -6/+4 |
| 2014-11-20 | auto merge of #19113 : nikomatsakis/rust/unboxed-boxed-closure-unification, r... | bors | -8/+3 |
| 2014-11-19 | Merge the ExprFnBlock and ExprUnboxedClosure into one ExprClosure with an opt... | Niko Matsakis | -8/+3 |
| 2014-11-19 | Refactor QPath to take an ast::TraitRef | Niko Matsakis | -6/+16 |
| 2014-11-18 | Convert TyPolyTraitRef to accept arbitary bounds, so that things like | Niko Matsakis | -4/+6 |
| 2014-11-16 | Complete the removal of ty_nil, ast::LitNil, ast::TyBot and ast::TyUniq | Jakub Bukaj | -8/+11 |
| 2014-11-09 | auto merge of #18743 : nikomatsakis/rust/hrtb-refactor-2, r=pcwalton | bors | -6/+18 |
| 2014-11-08 | auto merge of #18634 : alexcrichton/rust/cfg-attr-crate-level, r=sfackler | bors | -4/+33 |
| 2014-11-07 | Update parser with `for` syntax | Niko Matsakis | -6/+18 |
| 2014-11-07 | rustc: Process #[cfg]/#[cfg_attr] on crates | Alex Crichton | -4/+33 |
| 2014-11-07 | auto merge of #17830 : pczarn/rust/interp_tt, r=pnkfelix | bors | -8/+12 |
| 2014-11-07 | Add `ast::SequenceRepetition` | Piotr Czarnecki | -5/+6 |
| 2014-11-06 | Remove the unboxed closure `|:|` notation from types and trait references com... | Niko Matsakis | -23/+0 |
| 2014-11-06 | Support parenthesized paths `Foo(A,B) -> C` that expand to `Foo<(A,B),C>`. Th... | Niko Matsakis | -3/+47 |
| 2014-11-05 | Remove `Matcher`s | Piotr Czarnecki | -2/+0 |
| 2014-11-05 | Use `TokenTree`s in lhs of macros | Piotr Czarnecki | -4/+9 |
| 2014-11-03 | Restructure AST so that the associated type definition carries | Niko Matsakis | -7/+4 |
| 2014-10-30 | Use common variants for open and close delimiters | Brendan Zabarauskas | -12/+8 |
| 2014-10-29 | Rename fail! to panic! | Steve Klabnik | -2/+2 |
| 2014-10-28 | Use PascalCase for token variants | Brendan Zabarauskas | -4/+4 |
| 2014-10-26 | Reduce the size of the TokenTree | Brendan Zabarauskas | -11/+14 |
| 2014-10-26 | Use standard capitalisation for TokenTree variants | Brendan Zabarauskas | -8/+8 |
| 2014-10-26 | Rename TokenTree variants for clarity | Brendan Zabarauskas | -18/+18 |
| 2014-10-26 | Add Span and separate open/close delims to TTDelim | Brendan Zabarauskas | -1/+11 |
| 2014-10-24 | Add a lint for not using field pattern shorthands | P1start | -4/+6 |
| 2014-10-19 | Remove a large amount of deprecated functionality | Alex Crichton | -8/+8 |
| 2014-10-16 | libsyntax: Remove all uses of {:?}. | Luqman Aden | -1/+1 |
| 2014-10-13 | auto merge of #17733 : jgallagher/rust/while-let, r=alexcrichton | bors | -0/+6 |
| 2014-10-11 | Remove `virtual` structs from the language | Jakub Wieczorek | -3/+1 |
| 2014-10-10 | Teach libsyntax about `while let` | John Gallagher | -0/+6 |
| 2014-10-09 | rustc: Add `const` globals to the language | Alex Crichton | -0/+3 |
| 2014-10-02 | syntax: ast: remove TyBox and UnBox. | Eduard Burtescu | -1/+0 |
| 2014-09-30 | Produce a better error for irrefutable `if let` patterns | Kevin Ballard | -2/+3 |
| 2014-09-30 | Teach libsyntax about `if let` | Kevin Ballard | -0/+6 |
| 2014-09-27 | Translate inline assembly errors back to source locations | Keegan McAllister | -2/+4 |
| 2014-09-22 | librustc: Parse and resolve higher-rank lifetimes in traits. | Patrick Walton | -3/+12 |
| 2014-09-19 | rollup merge of #17318 : nick29581/slice | Alex Crichton | -0/+6 |
| 2014-09-18 | librustc: Implement the syntax in the RFC for unboxed closure sugar. | Patrick Walton | -7/+17 |
| 2014-09-19 | Implement slicing syntax. | Nick Cameron | -0/+6 |
| 2014-09-17 | librustc: Implement associated types behind a feature gate. | Patrick Walton | -21/+114 |
| 2014-09-16 | Fallout from renaming | Aaron Turon | -11/+11 |
| 2014-09-14 | syntax: implement in-place folding of P<T> and Vec<T>. | Eduard Burtescu | -2/+9 |
| 2014-09-14 | syntax: tests: fix fallout from using ptr::P. | Eduard Burtescu | -1/+1 |
| 2014-09-14 | syntax: ast_map: use borrowed references into the AST. | Eduard Burtescu | -10/+12 |
| 2014-09-14 | syntax: fold: use move semantics for efficient folding. | Eduard Burtescu | -721/+677 |
| 2014-09-10 | Implement tuple and tuple struct indexing | P1start | -0/+13 |
| 2014-08-29 | Fix formatting, update copyright dates | Pythoner6 | -3/+3 |
| 2014-08-29 | Add support for labeled while loops. | Pythoner6 | -5/+7 |
| 2014-08-27 | Implement generalized object and type parameter bounds (Fixes #16462) | Niko Matsakis | -18/+24 |