| Age | Commit message (Expand) | Author | Lines |
| 2013-09-24 | visit::Visitor refactor: replace (&mut BorrowckVisitor, @BorrowckCtxt) with &... | Felix S. Klock II | -36/+33 |
| 2013-09-10 | gather_loans/mod.rs Visitor refactoring (#7081): unify GatherLoan{Ctxt,Visitor}. | Felix S. Klock II | -51/+42 |
| 2013-09-10 | check_loans.rs Visitor refactoring (#7081): unify CheckLoan{Ctxt,Visitor}. | Felix S. Klock II | -37/+30 |
| 2013-09-06 | ident->name in NamedField, elsewhere | John Clements | -1/+1 |
| 2013-09-05 | Fix #7740: gather_loans should not recur into the items of the block. | Felix S. Klock II | -3/+6 |
| 2013-09-03 | Modernized a few more types in syntax::ast | Marvin Löbel | -84/+84 |
| 2013-09-01 | Modernized a few type names in rustc and syntax | Marvin Löbel | -37/+37 |
| 2013-08-27 | librustc: Fix merge fallout | Patrick Walton | -2/+1 |
| 2013-08-27 | librustc: Fix merge fallout. | Patrick Walton | -1/+1 |
| 2013-08-27 | librustc: Convert check loans to use the new visitor | Patrick Walton | -2/+41 |
| 2013-08-27 | librustc: Ensure that type parameters are in the right positions in paths. | Patrick Walton | -1/+3 |
| 2013-08-27 | librustc: Remove `&const` and `*const` from the language. | Patrick Walton | -64/+97 |
| 2013-08-27 | auto merge of #8797 : nikomatsakis/rust/issue-8625-assign-to-andmut-in-borrow... | bors | -32/+71 |
| 2013-08-27 | Remove remnants of implicit self | Niko Matsakis | -9/+1 |
| 2013-08-27 | Extend aliasability check to uncover `& &mut &mut` and the like | Niko Matsakis | -9/+47 |
| 2013-08-21 | Prohibit assignment to `&mut` pointers that are found in frozen or borrowed l... | Niko Matsakis | -3/+12 |
| 2013-08-20 | Add PointerKind to LpDeref | Niko Matsakis | -12/+12 |
| 2013-08-15 | Port check_loans.rs from oldvisit to <V:Visitor> trait API. | Felix S. Klock II | -34/+49 |
| 2013-08-15 | Switch main borrowck to <V:Visitor> trait API. | Felix S. Klock II | -12/+22 |
| 2013-08-15 | Switch borrowck::gather_loans to <V:Visitor> visit API. | Felix S. Klock II | -45/+65 |
| 2013-08-11 | borrowck: Integrate AutoBorrowObj into borrowck / mem_categorization | Niko Matsakis | -8/+16 |
| 2013-08-07 | rustc: Fix for-range loops that can use iterators | blake2-ppc | -4/+4 |
| 2013-08-07 | core: option.map_consume -> option.map_move | Erick Tryzelaar | -4/+6 |
| 2013-08-05 | Updated std::Option, std::Either and std::Result | Marvin Löbel | -1/+1 |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -23/+23 |
| 2013-08-03 | replace all remaining `for` with `foreach` or `do` | Daniel Micay | -65/+82 |
| 2013-08-02 | librustc: Introduce a new visitor type based on traits and port syntax to it. | Patrick Walton | -62/+66 |
| 2013-08-02 | replace `range` with an external iterator | Daniel Micay | -3/+2 |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -21/+21 |
| 2013-07-29 | New naming convention for ast::{node_id, local_crate, crate_node_id, blk_chec... | Michael Woerister | -59/+59 |
| 2013-07-27 | Remove unnecessary #[path = "***/mod.rs"] lines. | OGINO Masanori | -1/+0 |
| 2013-07-24 | Disallow non-comma-delimited arguments to fmt! and bytes! | Birunthan Mohanathas | -2/+2 |
| 2013-07-24 | Change 'print(fmt!(...))' to printf!/printfln! in src/lib* | Birunthan Mohanathas | -10/+10 |
| 2013-07-22 | Ast spanned<T> refactoring, renaming: crate, local, blk, crate_num, crate_cfg. | Michael Woerister | -16/+16 |
| 2013-07-18 | librustc: Remove `&` inside `@` from borrowck/check_loans. | Patrick Walton | -17/+18 |
| 2013-07-18 | auto merge of #7849 : nikomatsakis/rust/issue-7444-capture-moved-value, r=bblum | bors | -10/+8 |
| 2013-07-17 | librustc: Remove the `Copy` bound from the language. | Patrick Walton | -1/+1 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -0/+33 |
| 2013-07-17 | Issue #7444 - Borrowck permits moved values to be captured | Niko Matsakis | -10/+8 |
| 2013-07-17 | Made ast::blk not use spanned<T> anymore. | Michael Woerister | -13/+13 |
| 2013-07-08 | Correct merge failures | Niko Matsakis | -1/+1 |
| 2013-07-08 | Modify borrow checker to visit irrefutable patterns that appear in | Niko Matsakis | -94/+162 |
| 2013-07-07 | remove some method resolve workarounds | Daniel Micay | -2/+2 |
| 2013-07-01 | Better error messages in report_use_of_moved_value; close #7286 | Ben Blum | -7/+24 |
| 2013-06-29 | Great renaming: propagate throughout the rest of the codebase | Corey Richardson | -16/+9 |
| 2013-06-29 | auto merge of #7363 : bblum/rust/soundness, r=nikomatsakis | bors | -1/+1 |
| 2013-06-29 | auto merge of #7244 : bblum/rust/once, r=nikomatsakis | bors | -2/+21 |
| 2013-06-29 | 'Borrow' stack closures rather than copying them (e.g., "|x|f(x)"), in prep f... | Ben Blum | -1/+1 |
| 2013-06-28 | librustc: Change "Owned" to "Send" everywhere | Patrick Walton | -4/+4 |
| 2013-06-28 | librustc: Rename Const to Freeze | Patrick Walton | -3/+3 |