| Age | Commit message (Expand) | Author | Lines |
| 2014-09-19 | rollup merge of #17314 : eddyb/span-no-gc | Alex Crichton | -2/+2 |
| 2014-09-18 | librustc: Implement the syntax in the RFC for unboxed closure sugar. | Patrick Walton | -1/+8 |
| 2014-09-19 | Implement slicing syntax. | Nick Cameron | -0/+1 |
| 2014-09-18 | Fix fallout in tests from removing the use of Gc in ExpnInfo. | Eduard Burtescu | -2/+2 |
| 2014-09-17 | librustc: Implement associated types behind a feature gate. | Patrick Walton | -0/+34 |
| 2014-09-14 | syntax: ast_map: use borrowed references into the AST. | Eduard Burtescu | -7/+2 |
| 2014-09-14 | syntax: ast: replace Gc<T> (previously @T) with P<T>. | Eduard Burtescu | -77/+76 |
| 2014-09-14 | syntax: add a custom owned smart pointer in ptr::P. | Eduard Burtescu | -10/+0 |
| 2014-09-10 | Implement tuple and tuple struct indexing | P1start | -0/+1 |
| 2014-08-29 | Add support for labeled while loops. | Pythoner6 | -1/+2 |
| 2014-08-30 | Unify non-snake-case lints and non-uppercase statics lints | P1start | -1/+1 |
| 2014-08-27 | Implement generalized object and type parameter bounds (Fixes #16462) | Niko Matsakis | -11/+8 |
| 2014-08-26 | DST coercions and DST structs | Nick Cameron | -11/+0 |
| 2014-08-19 | Fix double evaluation of read+write operands | Piotr Czarnecki | -2/+2 |
| 2014-08-15 | auto merge of #16424 : pcwalton/rust/where-clauses, r=nikomatsakis | bors | -1/+16 |
| 2014-08-14 | librustc: Implement simple `where` clauses. | Patrick Walton | -1/+16 |
| 2014-08-14 | auto merge of #16468 : pcwalton/rust/as-renaming-import, r=alexcrichton | bors | -2/+2 |
| 2014-08-14 | libsyntax: Accept `use foo as bar;` in lieu of `use bar as foo;` | Patrick Walton | -2/+2 |
| 2014-08-14 | librustc: Stop assuming that implementations and traits only contain | Patrick Walton | -6/+17 |
| 2014-08-14 | librustc: Tie up loose ends in unboxed closures. | Patrick Walton | -1/+9 |
| 2014-08-14 | auto merge of #15929 : pcwalton/rust/by-ref-closures, r=alexcrichton | bors | -2/+8 |
| 2014-08-13 | librustc: Parse, but do not fully turn on, the `ref` keyword for | Patrick Walton | -2/+8 |
| 2014-08-13 | quote_expr macro: embed Ident using special encoding that preserves hygiene. | Felix S. Klock II | -0/+6 |
| 2014-08-08 | auto merge of #16285 : alexcrichton/rust/rename-share, r=huonw | bors | -1/+1 |
| 2014-08-07 | Rename `Share` to `Sync` | Alex Crichton | -1/+1 |
| 2014-08-07 | Temporary bootstrapping hack: introduce syntax for r egion bounds like `'b:'a`, | Niko Matsakis | -3/+9 |
| 2014-08-06 | AST refactoring: merge PatWild and PatWildMulti into one variant with a flag. | Felix S. Klock II | -2/+12 |
| 2014-08-05 | Fixes missing overflow lint for i64 #14269 | Falco Hirschenberger | -3/+35 |
| 2014-07-31 | auto merge of #15999 : Kimundi/rust/fix_folder, r=nikomatsakis | bors | -12/+12 |
| 2014-07-29 | syntax: promote a comment on PatEnum into a docstring | Erick Tryzelaar | -2/+4 |
| 2014-07-29 | Add a few more derivings to AST types | Marvin Löbel | -10/+10 |
| 2014-07-29 | Refactored syntax::fold. | Marvin Löbel | -2/+2 |
| 2014-07-24 | libsyntax: Remove `~self` and `mut ~self` from the language. | Patrick Walton | -2/+0 |
| 2014-07-21 | repair macro docs | John Clements | -1/+1 |
| 2014-07-20 | Implement new mod import sugar | Jakub Wieczorek | -5/+13 |
| 2014-07-18 | librustc: Implement unboxed closures with mutable receivers | Patrick Walton | -2/+11 |
| 2014-07-16 | librustc: Implement the fully-expanded, UFCS form of explicit self. | Patrick Walton | -2/+4 |
| 2014-07-15 | libsyntax::ast: Derive Show impls | Ben Gamari | -70/+70 |
| 2014-07-13 | auto merge of #15646 : jbclements/rust/method-macros, r=cmr | bors | -8/+11 |
| 2014-07-13 | refactor Method definition to make space for macros | John Clements | -8/+11 |
| 2014-07-13 | auto merge of #15584 : alexcrichton/rust/warn-annoyances, r=cmr | bors | -2/+9 |
| 2014-07-12 | Use a nicer Show impl for Name | Corey Richardson | -2/+9 |
| 2014-07-12 | auto merge of #15601 : jbclements/rust/disable-default-macro-behavior, r=alex... | bors | -0/+2 |
| 2014-07-11 | use side table to store exported macros | John Clements | -0/+2 |
| 2014-07-09 | syntax: De-doc comment to fix nightlies | Alex Crichton | -50/+50 |
| 2014-07-09 | ast: make Name its own type | Corey Richardson | -5/+21 |
| 2014-07-09 | syntax: don't parse numeric literals in the lexer | Corey Richardson | -2/+30 |
| 2014-07-09 | ast: add an `as_str` method to Ident | Corey Richardson | -0/+7 |
| 2014-07-09 | syntax: use a better Show impl for Ident | Corey Richardson | -1/+7 |
| 2014-07-09 | syntax: doc comments all the things | Corey Richardson | -178/+188 |