| Age | Commit message (Expand) | Author | Lines |
| 2014-02-14 | Removed the obsolete ast::CallSugar (previously used by `do`). | Eduard Burtescu | -2/+2 |
| 2014-02-14 | Refactored ast_map and friends, mainly to have Paths without storing them. | Eduard Burtescu | -1/+1 |
| 2014-02-13 | Replace `crate` usage with `krate` | Flavio Percoco | -2/+2 |
| 2014-02-07 | Removed @self and @Trait. | Eduard Burtescu | -1/+1 |
| 2014-01-30 | Implement default type parameters in generics. | Eduard Burtescu | -1/+5 |
| 2014-01-29 | Removing support for the do syntax from libsyntax and librustc. | Scott Lawrence | -2/+1 |
| 2014-01-27 | Demote self to an (almost) regular argument and remove the env param. | Eduard Burtescu | -4/+3 |
| 2014-01-15 | Issue #3511 - Rationalize temporary lifetimes. | Niko Matsakis | -0/+11 |
| 2014-01-14 | auto merge of #11485 : eddyb/rust/sweep-old-rust, r=nikomatsakis | bors | -1/+1 |
| 2014-01-13 | librustc: Remove `@` pointer patterns from the language | Patrick Walton | -1/+0 |
| 2014-01-12 | Removed remnants of `@mut` and `~mut` from comments and the type system. | Eduard Burtescu | -1/+1 |
| 2014-01-10 | item_impl holds an Option<> to the trait ref, not a list of trait refs. There... | Nick Cameron | -5/+6 |
| 2014-01-09 | auto merge of #11055 : pcwalton/rust/placement-box, r=pcwalton | bors | -0/+4 |
| 2014-01-09 | librustc: Implement placement `box` for GC and unique pointers. | Patrick Walton | -0/+4 |
| 2014-01-09 | libsyntax: Renamed types, traits and enum variants to CamelCase. | Eduard Burtescu | -84/+80 |
| 2014-01-06 | Disowned the Visitor. | Eduard Burtescu | -97/+97 |
| 2014-01-03 | librustc: Remove `@mut` support from the parser | Patrick Walton | -2/+2 |
| 2014-01-01 | Remove `extern mod foo (name="bar")` syntax, closes #9543 | Florian Hahn | -1/+1 |
| 2013-12-17 | auto merge of #11005 : sanxiyn/rust/mut, r=alexcrichton | bors | -4/+6 |
| 2013-12-17 | Remove obsolete mutability from ast::Ty | Seo Sanghyeon | -4/+6 |
| 2013-12-16 | AST Visitor now walks enum discriminant expression | Kiet Tran | -0/+4 |
| 2013-12-12 | Remove fk_anon | Seo Sanghyeon | -6/+4 |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -3/+3 |
| 2013-12-09 | Check the privacy of implemented traits | Alex Crichton | -18/+25 |
| 2013-12-06 | Check crate root for docs in missing_doc lint. | Corey Richardson | -0/+1 |
| 2013-12-01 | auto merge of #10750 : Blei/rust/no-at-struct-field, r=alexcrichton | bors | -2/+2 |
| 2013-12-01 | ast: Remove one `@` and fix the fallout | Philipp Brüschweiler | -2/+2 |
| 2013-12-01 | Box Block, fn_decl, variant and Ty in the AST, as they were inflating critica... | Eduard Burtescu | -37/+37 |
| 2013-11-28 | Register new snapshots | Alex Crichton | -3/+3 |
| 2013-11-26 | Take &Pat in visit_pat | Seo Sanghyeon | -1/+1 |
| 2013-11-22 | syntax: add a visit_ident method to the Visitor. | Huon Wilson | -3/+45 |
| 2013-11-21 | Remove ty_mac | Seo Sanghyeon | -1/+1 |
| 2013-11-18 | Use '..' as slice wildcard in vectors | Brian Anderson | -1/+1 |
| 2013-11-13 | make missing_doc lint respect the visibility rules | David Creswick | -12/+20 |
| 2013-11-08 | Create a new pass to resolve named lifetimes; rscope is not only | Niko Matsakis | -15/+88 |
| 2013-10-29 | librustc: Implement the `proc` type as sugar for `~once fn` and `proc` | Patrick Walton | -0/+8 |
| 2013-10-28 | syntax: remove dead @mut Visitor impl (only used in tests). | Huon Wilson | -63/+0 |
| 2013-10-21 | Add a feature flag for ASM | Léo Testard | -3/+7 |
| 2013-09-14 | Get rid of unused SimpleVisitor stuff. | Lindsey Kuper | -142/+1 |
| 2013-09-09 | auto merge of #9005 : alexcrichton/rust/rusty-log, r=brson | bors | -4/+1 |
| 2013-09-08 | syntax: implement labelled breaks for `for`. | Huon Wilson | -2/+1 |
| 2013-09-05 | Remove the __log function for __log_level | Alex Crichton | -4/+1 |
| 2013-09-03 | Modernized a few more types in syntax::ast | Marvin Löbel | -78/+78 |
| 2013-09-02 | Renamed syntax::ast::ident -> Ident | Marvin Löbel | -8/+8 |
| 2013-09-01 | Modernized a few type names in rustc and syntax | Marvin Löbel | -10/+10 |
| 2013-08-28 | auto merge of #8718 : bblum/rust/typeof, r=pcwalton | bors | -0/+3 |
| 2013-08-27 | librustc: Ensure that type parameters are in the right positions in paths. | Patrick Walton | -1/+1 |
| 2013-08-27 | librustc: Add support for type parameters in the middle of paths. | Patrick Walton | -2/+4 |
| 2013-08-23 | Parse and reserve typeof keyword. #3228 | Ben Blum | -0/+3 |
| 2013-08-15 | Switch to new <V:Visitor> visitor (rather than @Visitor). | Felix S. Klock II | -136/+200 |