| Age | Commit message (Expand) | Author | Lines |
| 2014-01-06 | Disowned the Visitor. | Eduard Burtescu | -1/+1 |
| 2014-01-03 | librustc: Remove `@mut` support from the parser | Patrick Walton | -1/+0 |
| 2014-01-03 | librustc: Remove `@mut` support from the typechecker and borrow checker | Patrick Walton | -3/+1 |
| 2014-01-03 | librustc: De-`@mut` the AST map | Patrick Walton | -19/+26 |
| 2013-12-26 | librustc: De-`@mut` the def map. | Patrick Walton | -5/+11 |
| 2013-12-26 | librustc: De-`@mut` the method map | Patrick Walton | -2/+2 |
| 2013-12-26 | librustc: De-`@mut` the write guard map | Patrick Walton | -2/+2 |
| 2013-12-26 | librustc: De-`@mut` the vtable map | Patrick Walton | -2/+2 |
| 2013-12-26 | librustc: De-`@mut` the capture map | Patrick Walton | -2/+2 |
| 2013-12-26 | librustc: De-`@mut` the borrow check's root map | Patrick Walton | -2/+3 |
| 2013-12-26 | librustc: De-`@mut` `extern_const_variants` in the type context | Patrick Walton | -5/+12 |
| 2013-12-26 | librustc: De-`@mut` the `extern_const_statics` table in the type context | Patrick Walton | -5/+12 |
| 2013-12-01 | Box Block, fn_decl, variant and Ty in the AST, as they were inflating critica... | Eduard Burtescu | -1/+1 |
| 2013-11-28 | Register new snapshots | Alex Crichton | -2/+2 |
| 2013-11-26 | librustc: Remove non-procedure uses of `do` from librustc, librustdoc, | Patrick Walton | -3/+1 |
| 2013-10-18 | Optimize include_bin! for large inputs | Alex Crichton | -0/+2 |
| 2013-10-09 | option: rewrite the API to use composition | Daniel Micay | -2/+2 |
| 2013-10-08 | add new enum ast::StrStyle as field to ast::lit_str | Benjamin Herr | -1/+1 |
| 2013-10-04 | Cache more results of const_eval | Alex Crichton | -111/+116 |
| 2013-10-01 | remove the `float` type | Daniel Micay | -2/+2 |
| 2013-09-18 | std: Remove {float,f64,f32}::from_str in favor of from_str | blake2-ppc | -3/+2 |
| 2013-09-11 | Properly encode/decode structural variants. | SiegeLord | -1/+1 |
| 2013-09-04 | stop treating char as an integer type | Daniel Micay | -0/+1 |
| 2013-09-03 | Modernized a few more types in syntax::ast | Marvin Löbel | -103/+103 |
| 2013-08-19 | auto merge of #8539 : pnkfelix/rust/fsk-visitor-vpar-defaults-step2, r=graydo... | bors | -6/+13 |
| 2013-08-15 | Port const_eval from oldvisit to <V:Visitor> trait API. | Felix S. Klock II | -6/+13 |
| 2013-08-13 | librustc: Allow vector repeat exprs in statics. | Luqman Aden | -0/+2 |
| 2013-08-10 | std: Rename Iterator.transform -> .map | Erick Tryzelaar | -2/+2 |
| 2013-08-07 | core: option.map_consume -> option.map_move | Erick Tryzelaar | -2/+2 |
| 2013-08-05 | Updated std::Option, std::Either and std::Result | Marvin Löbel | -2/+2 |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -1/+1 |
| 2013-08-02 | librustc: Introduce a new visitor type based on traits and port syntax to it. | Patrick Walton | -4/+4 |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -1/+1 |
| 2013-07-29 | New naming convention for ast::{node_id, local_crate, crate_node_id, blk_chec... | Michael Woerister | -1/+1 |
| 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 | -1/+1 |
| 2013-07-17 | librustc: Remove some extra "copy" keywords that came in before this change m... | Patrick Walton | -1/+5 |
| 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 | -22/+28 |
| 2013-07-16 | Permit C-style enums in vector repeat length expressions (N.B. values only, n... | Josh Matthews | -5/+53 |
| 2013-07-08 | Update trans to use type to decide when to move, not the moves table (simpler | Niko Matsakis | -1/+0 |
| 2013-06-30 | Remove vec::{map, mapi, zip_map} and the methods, except for .map, since this | Huon Wilson | -5/+4 |
| 2013-06-29 | Great renaming: propagate throughout the rest of the codebase | Corey Richardson | -4/+3 |
| 2013-06-27 | Remove many shared pointers | Philipp Brüschweiler | -10/+10 |
| 2013-06-25 | Merge remote-tracking branch 'mozilla/master' into incoming | Brian Anderson | -3/+3 |
| 2013-06-23 | Add 'static mut' items to the language | Alex Crichton | -3/+3 |
| 2013-06-22 | Cleaned up middle a bit. | Steven Stewart-Gallus | -58/+13 |
| 2013-06-14 | add IteratorUtil to the prelude | Daniel Micay | -1/+0 |
| 2013-06-13 | Use @str instead of @~str in libsyntax and librustc. Fixes #5048. | Huon Wilson | -6/+6 |
| 2013-06-12 | Visitor refactoring: Step 1, couple (Env, vt<Env>) together in a tuple. | Felix S. Klock II | -1/+1 |