| Age | Commit message (Expand) | Author | Lines |
| 2013-07-07 | De-managed ast::Path | James Miller | -13/+13 |
| 2013-07-07 | Stop allocating view_items with @ | James Miller | -7/+6 |
| 2013-07-04 | Remove vec::{filter, filtered, filter_map, filter_mapped}, replaced by iterat... | Huon Wilson | -3/+1 |
| 2013-06-30 | Remove vec::{map, mapi, zip_map} and the methods, except for .map, since this | Huon Wilson | -7/+6 |
| 2013-06-26 | Infer default static/Owned bounds for unbounded heap fns/traits (#7264) | Ben Blum | -3/+8 |
| 2013-06-25 | great renaming propagation: syntax | Corey Richardson | -4/+1 |
| 2013-06-23 | Support foreign 'static mut' variables as well | Alex Crichton | -2/+2 |
| 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 | -1/+3 |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -1/+1 |
| 2013-06-16 | remove unused imports | Huon Wilson | -1/+1 |
| 2013-06-13 | Use @str instead of @~str in libsyntax and librustc. Fixes #5048. | Huon Wilson | -2/+2 |
| 2013-06-06 | implement fold traversing macros | John Clements | -3/+38 |
| 2013-06-06 | add test cases for fold traversing macros | John Clements | -0/+72 |
| 2013-06-04 | librustc: Disallow multiple patterns from appearing in a "let" declaration. | Patrick Walton | -23/+46 |
| 2013-06-01 | syntax: move callee_id into the expr_ variants | Erick Tryzelaar | -9/+29 |
| 2013-05-29 | librustc: Stop reexporting the standard modules from prelude. | Patrick Walton | -0/+2 |
| 2013-05-29 | libsyntax: Stop parsing mutable fields | Patrick Walton | -1/+0 |
| 2013-05-22 | libextra: Rename the actual metadata names of libcore to libstd and libstd to... | Patrick Walton | -0/+2 |
| 2013-05-18 | minor automated whitespace fixes | Daniel Micay | -1/+0 |
| 2013-05-16 | Add BuiltinBounds to closure type: parse and handle subtyping, | Niko Matsakis | -0/+1 |
| 2013-05-14 | rustc: rename ast::self_ty and related fields to explicit_self | Erick Tryzelaar | -1/+1 |
| 2013-05-14 | syntax: Remove #[allow(vecs_implicitly_copyable)] | Alex Crichton | -12/+12 |
| 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 | -3/+0 |
| 2013-05-08 | libcore: Fix more merge fallout. | Patrick Walton | -0/+1 |
| 2013-05-02 | Remove 'Local Variable' comments | Brendan Zabarauskas | -10/+0 |
| 2013-05-01 | allow parsing attributes on struct fields | Erick Tryzelaar | -1/+6 |
| 2013-05-01 | rustc: remove the rest of drop | Erick Tryzelaar | -26/+0 |
| 2013-04-29 | librustc: Forbid type implementations on typedefs. | Patrick Walton | -1/+5 |
| 2013-04-29 | librustc: Remove the concept of modes from the compiler. | Patrick Walton | -1/+0 |
| 2013-04-27 | only use #[no_core] in libcore | Daniel Micay | -4/+0 |
| 2013-04-10 | path -> Path | John Clements | -5/+5 |
| 2013-04-05 | Refactor so that references to traits are not represented using a type with a | Niko Matsakis | -1/+1 |
| 2013-03-29 | Add AbiSet and integrate it into the AST. | Niko Matsakis | -3/+4 |
| 2013-03-28 | auto merge of #5593 : luqmana/rust/inline-asm, r=catamorphism | bors | -7/+6 |
| 2013-03-28 | librustc: Remove common fields and nested enums from the language | Patrick Walton | -14/+0 |
| 2013-03-27 | auto merge of #5578 : erickt/rust/incoming, r=jbclements,erickt | bors | -2/+1 |
| 2013-03-27 | libsyntax: Allow selecting intel style asm. | Luqman Aden | -4/+1 |
| 2013-03-27 | libsyntax: use a struct for inline asm in ast. | Luqman Aden | -7/+9 |
| 2013-03-27 | Fix pretty-printer test failure by carrying the bound lifetime names through | Niko Matsakis | -0/+1 |
| 2013-03-27 | syntax: fix pretty printing __log stmts | Erick Tryzelaar | -2/+1 |
| 2013-03-26 | librustc: Modify all code to use new lifetime binder syntax | Patrick Walton | -1/+2 |
| 2013-03-26 | option: rm functions that duplicate methods | Daniel Micay | -4/+3 |
| 2013-03-18 | Now actually allow using constants in those constant expressions for [T * n]. | Luqman Aden | -2/+2 |
| 2013-03-15 | Actually pass inline asm operands around. | Luqman Aden | -1/+8 |
| 2013-03-13 | librustc: Don't accept `as Trait` anymore; fix all occurrences of it. | Patrick Walton | -24/+24 |
| 2013-03-12 | Parse inline assembly. | Luqman Aden | -0/+1 |
| 2013-03-11 | libsyntax: Remove newtype enums from libsyntax. rs=deenum | Patrick Walton | -13/+8 |
| 2013-03-11 | Implement vector destructuring from tail | Seo Sanghyeon | -3/+4 |