| Age | Commit message (Expand) | Author | Lines |
| 2013-08-15 | Switch to new <V:Visitor> visitor (rather than @Visitor). | Felix S. Klock II | -136/+200 |
| 2013-08-11 | libsyntax: Update from `@Object` to `@mut Object` as required | Niko Matsakis | -48/+48 |
| 2013-08-04 | rm obsolete `for` support from the compiler | Daniel Micay | -1/+0 |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -40/+40 |
| 2013-08-02 | librustc: Disallow "unsafe" for external functions | Patrick Walton | -1/+1 |
| 2013-08-02 | librustc: Introduce a new visitor type based on traits and port syntax to it. | Patrick Walton | -580/+556 |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -39/+39 |
| 2013-08-01 | make `in` and `foreach` get treated as keywords | Daniel Micay | -2/+2 |
| 2013-07-30 | syntax: implement foreach .. in .. { .. } via desugaring. | Graydon Hoare | -0/+5 |
| 2013-07-29 | New naming convention for ast::{node_id, local_crate, crate_node_id, blk_chec... | Michael Woerister | -20/+20 |
| 2013-07-22 | De-spanned<T> and renamed ast::field (now ast::Field) | Michael Woerister | -1/+1 |
| 2013-07-22 | Ast spanned<T> refactoring, renaming: crate, local, blk, crate_num, crate_cfg. | Michael Woerister | -18/+18 |
| 2013-07-17 | librustc: Remove `copy` expressions from the language. | Patrick Walton | -1/+0 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -129/+148 |
| 2013-07-17 | librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them. | Patrick Walton | -12/+6 |
| 2013-07-17 | Made ast::blk not use spanned<T> anymore. | Michael Woerister | -3/+3 |
| 2013-07-07 | De-share ast::Ty | James Miller | -27/+27 |
| 2013-07-07 | De-manage OptVec<TyParamBounds> | James Miller | -2/+2 |
| 2013-07-07 | De-share trait_ref | James Miller | -2/+2 |
| 2013-07-07 | De-managed ast::Path | James Miller | -8/+8 |
| 2013-07-07 | Stop allocating view_items with @ | James Miller | -6/+6 |
| 2013-07-05 | Remove visit_struct_method | Seo Sanghyeon | -12/+0 |
| 2013-06-27 | Remove many shared pointers | Philipp Brüschweiler | -14/+14 |
| 2013-06-26 | Infer default static/Owned bounds for unbounded heap fns/traits (#7264) | Ben Blum | -2/+6 |
| 2013-06-25 | auto merge of #7365 : cmr/rust/syntax_cleanup, r=Aatch | bors | -2/+0 |
| 2013-06-25 | remove the redundant `each` method from OptVec | Daniel Micay | -2/+2 |
| 2013-06-25 | great renaming propagation: syntax | Corey Richardson | -2/+0 |
| 2013-06-23 | Support foreign 'static mut' variables as well | Alex Crichton | -1/+1 |
| 2013-06-23 | Add 'static mut' items to the language | Alex Crichton | -1/+1 |
| 2013-06-23 | Parse and typecheck (not kindcheck) bounds on trait paths. | Ben Blum | -3/+7 |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -30/+30 |
| 2013-06-16 | Add copies to type params with Copy bound | Niko Matsakis | -99/+113 |
| 2013-06-14 | add IteratorUtil to the prelude | Daniel Micay | -1/+0 |
| 2013-06-12 | Visitor refactoring: Step 1, couple (Env, vt<Env>) together in a tuple. | Felix S. Klock II | -286/+272 |
| 2013-06-11 | option: remove redundant old_iter impls | Daniel Micay | -7/+8 |
| 2013-06-04 | librustc: Disallow multiple patterns from appearing in a "let" declaration. | Patrick Walton | -5/+1 |
| 2013-06-01 | syntax: move callee_id into the expr_ variants | Erick Tryzelaar | -5/+5 |
| 2013-05-22 | libextra: Rename the actual metadata names of libcore to libstd and libstd to... | Patrick Walton | -0/+2 |
| 2013-05-14 | syntax: Remove #[allow(vecs_implicitly_copyable)] | Alex Crichton | -6/+6 |
| 2013-05-12 | librustc: Make `self` and `static` into keywords | Patrick Walton | -0/+1 |
| 2013-05-10 | Remove the '<->' operator from the language | Alex Crichton | -4/+0 |
| 2013-05-05 | Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze | Niko Matsakis | -49/+3 |
| 2013-05-02 | Remove 'Local Variable' comments | Brendan Zabarauskas | -8/+0 |
| 2013-05-01 | rustc: remove the rest of drop | Erick Tryzelaar | -41/+3 |
| 2013-04-30 | new borrow checker (mass squash) | Niko Matsakis | -0/+6 |
| 2013-04-27 | only use #[no_core] in libcore | Daniel Micay | -2/+0 |
| 2013-04-19 | syntax: de-mode and prepare for de-modeing rustc | Alex Crichton | -52/+52 |
| 2013-04-10 | path -> Path | John Clements | -1/+1 |
| 2013-04-05 | Refactor so that references to traits are not represented using a type with a | Niko Matsakis | -5/+9 |
| 2013-03-29 | Add AbiSet and integrate it into the AST. | Niko Matsakis | -10/+20 |