| Age | Commit message (Expand) | Author | Lines |
| 2015-06-10 | Removed many pointless calls to *iter() and iter_mut() | Joshua Landau | -1/+1 |
| 2015-05-21 | Make various fixes: | Niko Matsakis | -2/+1 |
| 2015-05-21 | syntax: parse `const fn` for free functions and inherent methods. | Eduard Burtescu | -1/+4 |
| 2015-05-15 | syntax: Add unquoting ast::{Generics,WhereClause} | Erick Tryzelaar | -0/+3 |
| 2015-04-27 | Auto merge of #23606 - quantheory:associated_const, r=nikomatsakis | bors | -0/+11 |
| 2015-04-25 | Interpolate AST nodes in quasiquote. | Geoffry Song | -0/+7 |
| 2015-04-24 | Change name of unit test sub-module to "tests". | Johannes Oertel | -1/+1 |
| 2015-04-23 | Get associated consts working in match patterns. | Sean Patrick Santos | -0/+4 |
| 2015-04-23 | Structural changes for associated constants | Sean Patrick Santos | -0/+7 |
| 2015-04-21 | syntax: remove #![feature(box_syntax, box_patterns)] | Erick Tryzelaar | -3/+3 |
| 2015-04-11 | Propagate macro backtraces more often, improve formatting diagnostics | Ryan Prichard | -3/+5 |
| 2015-03-26 | Switch drop-flag to `u8` to allow special tags to instrument state. | Felix S. Klock II | -1/+1 |
| 2015-03-11 | syntax: move MethMac to MacImplItem and combine {Provided,Required}Method int... | Eduard Burtescu | -19/+10 |
| 2015-03-11 | syntax: rename TypeMethod to MethodSig and use it in MethDecl. | Eduard Burtescu | -20/+13 |
| 2015-03-11 | syntax: gather common fields of impl & trait items into their respective types. | Eduard Burtescu | -118/+47 |
| 2015-03-11 | syntax: move indirection around {Trait,Impl}Item, from within. | Eduard Burtescu | -26/+23 |
| 2015-03-04 | std: Deprecate std::old_io::fs | Alex Crichton | -2/+2 |
| 2015-02-24 | Implement `<T>::method` UFCS expression syntax. | Eduard Burtescu | -11/+17 |
| 2015-02-24 | syntax: use a single Path for Trait::Item in QPath. | Eduard Burtescu | -19/+8 |
| 2015-02-24 | syntax: don't use TraitRef in QPath. | Eduard Burtescu | -4/+4 |
| 2015-02-24 | syntax: don't store a secondary NodeId for TyPath. | Eduard Burtescu | -4/+1 |
| 2015-02-22 | Rename DefTrait to DefaultImpl | Flavio Percoco | -2/+2 |
| 2015-02-22 | Add support for default trait impls in libsyntax | Flavio Percoco | -1/+4 |
| 2015-02-10 | rollup merge of #22116: kmcallister/cfg_attr | Alex Crichton | -14/+18 |
| 2015-02-09 | syntax::fold: Allow removing attributes | Keegan McAllister | -14/+18 |
| 2015-02-09 | Accept quantification of lifetimes outside the self type in where clauses. | Nick Cameron | -2/+5 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -5/+5 |
| 2015-02-03 | Remove the explicit closure kind syntax from the parser and AST; | Niko Matsakis | -2/+1 |
| 2015-02-02 | `for x in xs.iter_mut()` -> `for x in &mut xs` | Jorge Aparicio | -2/+2 |
| 2015-01-28 | Move return type an associated type of the `Fn*` traits. Mostly this involves... | Niko Matsakis | -2/+3 |
| 2015-01-26 | Fallout of io => old_io | Alex Crichton | -2/+2 |
| 2015-01-21 | rollup merge of #20179: eddyb/blind-items | Alex Crichton | -41/+15 |
| 2015-01-21 | rollup merge of #21340: pshc/libsyntax-no-more-ints | Alex Crichton | -4/+4 |
| 2015-01-21 | syntax: fix fallout of merging ast::ViewItem into ast::Item. | Eduard Burtescu | -41/+15 |
| 2015-01-18 | Make output type in ast::FnDecl optional | Seo Sanghyeon | -8/+2 |
| 2015-01-17 | libsyntax: rename functions from uint to usize | Paul Collier | -4/+4 |
| 2015-01-17 | libsyntax: uint types to usize | Paul Collier | -2/+2 |
| 2015-01-15 | auto merge of #21052 : nick29581/rust/methods-ext, r=sfackler | bors | -42/+45 |
| 2015-01-15 | syntax: add fully qualified UFCS expressions. | Eduard Burtescu | -1/+5 |
| 2015-01-15 | Syntax extensions on trait and impl items. | Nick Cameron | -42/+45 |
| 2015-01-05 | rollup merge of #20482: kmcallister/macro-reform | Alex Crichton | -5/+9 |
| 2015-01-05 | rollup merge of #20554: huonw/mut-pattern | Alex Crichton | -1/+1 |
| 2015-01-05 | Reserve the keyword 'macro' | Keegan McAllister | -4/+4 |
| 2015-01-05 | remove TyClosure | Jorge Aparicio | -11/+0 |
| 2015-01-05 | Reformat metadata for exported macros | Keegan McAllister | -1/+5 |
| 2015-01-05 | Change `&` pat to only work with &T, and `&mut` with &mut T. | Huon Wilson | -1/+1 |
| 2015-01-04 | Add syntax for negative implementations of traits | Flavio Percoco | -2/+3 |
| 2015-01-02 | rollup merge of #20341: nikomatsakis/impl-trait-for-trait-2 | Alex Crichton | -1/+1 |
| 2015-01-02 | Fix fallout from change, adding explicit `Sized` annotations where necessary. | Niko Matsakis | -1/+1 |
| 2015-01-02 | Make type in ast::Local optional | Seo Sanghyeon | -1/+1 |