| Age | Commit message (Expand) | Author | Lines |
| 2015-07-28 | Auto merge of #27234 - oli-obk:move_get_name_get_ident_to_impl, r=eddyb | bors | -2/+1 |
| 2015-07-28 | remove `get_ident` and `get_name`, make `as_str` sound | Oliver Schneider | -2/+1 |
| 2015-07-28 | build fragmented map earlier to make its dependencies clearer. | Felix S. Klock II | -4/+3 |
| 2015-07-28 | rustc and rustc::borrowck: pass fragment info down into trans. | Felix S. Klock II | -1/+5 |
| 2015-07-11 | Suggest using `ref` inline in an error | P1start | -2/+13 |
| 2015-07-03 | Auto merge of #26378 - arielb1:unused-mut, r=pnkfelix | bors | -17/+18 |
| 2015-07-01 | Clean-up assignment checking in borrowck | Ariel Ben-Yehuda | -17/+18 |
| 2015-06-30 | Remove Typer and ClosureTyper | Jared Roesch | -1/+0 |
| 2015-06-30 | Remove Typer + ClosureTyper impls for ParameterEnv | Jared Roesch | -1/+1 |
| 2015-06-26 | rustc: switch most remaining middle::ty functions to methods. | Eduard Burtescu | -18/+14 |
| 2015-06-24 | Use correct type for "use of moved value" error with closures. | Nick Hamann | -1/+1 |
| 2015-06-19 | rustc: remove Repr and UserString. | Eduard Burtescu | -7/+6 |
| 2015-06-19 | rustc: replace Repr/UserString impls with Debug/Display ones. | Eduard Burtescu | -32/+32 |
| 2015-06-19 | rustc: use the TLS type context in Repr and UserString. | Eduard Burtescu | -28/+28 |
| 2015-06-19 | rustc: leave only one free top-level function in ppaux, and private. | Eduard Burtescu | -2/+3 |
| 2015-06-19 | rustc: reduce ppaux's public footprint to 5 functions. | Eduard Burtescu | -20/+14 |
| 2015-06-10 | syntax: move ast_map to librustc. | Eduard Burtescu | -2/+2 |
| 2015-05-26 | Convert 15 diagnostics to have error codes (E0380-E0394). | Nick Hamann | -38/+33 |
| 2015-04-27 | Auto merge of #23606 - quantheory:associated_const, r=nikomatsakis | bors | -0/+14 |
| 2015-04-23 | Functional changes for associated constants. Cross-crate usage of associated ... | Sean Patrick Santos | -0/+14 |
| 2015-04-18 | Rather than storing the relations between free-regions in a global | Niko Matsakis | -7/+43 |
| 2015-04-15 | Dataflow changes and associated borrowck fix. | Felix S. Klock II | -1/+2 |
| 2015-04-10 | Improve error message where a closure escapes fn while trying to borrow | Niko Matsakis | -9/+53 |
| 2015-04-08 | Modify the ExprUseVisitor to walk each part of an AutoRef, and in | Niko Matsakis | -0/+2 |
| 2015-04-01 | Fallout out rustc | Niko Matsakis | -3/+3 |
| 2015-03-31 | Rollup merge of #23859 - pnkfelix:fsk-lesser-box, r=nikomatsakis | Manish Goregaokar | -0/+6 |
| 2015-03-30 | Address Issue 14270 by making `cmt::freely_aliasable` result more fine-grained. | Felix S. Klock II | -0/+6 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -8/+8 |
| 2015-03-09 | remove uses of as_slice where deref coercions can be used | Richo Healey | -2/+2 |
| 2015-03-05 | Rollup merge of #22764 - ivanradanov:fileline_help, r=huonw | Manish Goregaokar | -3/+7 |
| 2015-03-03 | Change span_help calls to fileline_help where appropriate | Ivan Radanov Ivanov | -3/+7 |
| 2015-03-02 | Use `const`s instead of `static`s where appropriate | Florian Zeitz | -1/+1 |
| 2015-02-25 | Rollup merge of #22736 - nikomatsakis:issue-22382, r=eddyb | Manish Goregaokar | -3/+3 |
| 2015-02-24 | Rollup merge of #22580 - pnkfelix:guard-pat-cfg2, r=pnkfelix | Manish Goregaokar | -7/+20 |
| 2015-02-23 | Apply borrowck to fns that appear in const declarations. | Niko Matsakis | -3/+3 |
| 2015-02-23 | Rollup merge of #22559 - kmcallister:borrowck-readme, r=nikomatsakis | Manish Goregaokar | -3/+3 |
| 2015-02-22 | Improve borrowck error when a second move is due to a loop. | James Miller | -7/+20 |
| 2015-02-20 | Remove remaining uses of `[]`. This time I tried to use deref coercions where... | Niko Matsakis | -17/+17 |
| 2015-02-18 | Fix references to doc.rs throughout the code | Keegan McAllister | -3/+3 |
| 2015-02-18 | Replace all uses of `&foo[]` with `&foo[..]` en masse. | Niko Matsakis | -1/+1 |
| 2015-02-15 | Auto merge of #22126 - steveklabnik:gh21281, r=nikomatsakis | bors | -3/+1 |
| 2015-02-13 | Instead of putting them in the book, make them READMEs. | Steve Klabnik | -2/+0 |
| 2015-02-12 | librustc: Forbid partial reinitialization of uninitialized structures or | Kevin Butler | -0/+12 |
| 2015-02-10 | Move rustc docs to the book | Steve Klabnik | -1/+1 |
| 2015-02-07 | Restrictions on moves out-from and into fixed-length arrays. | Felix S. Klock II | -4/+37 |
| 2015-02-07 | Auto merge of #21505 - GuillaumeGomez:interned_string, r=alexcrichton | bors | -2/+2 |
| 2015-02-06 | Update to last version, remove "[]" as much as possible | GuillaumeGomez | -2/+2 |
| 2015-02-06 | librustc_borrowck has been updated | GuillaumeGomez | -2/+2 |
| 2015-02-06 | Rollup merge of #21925 - sfackler:allow-missing-copy, r=alexcrichton | Manish Goregaokar | -1/+0 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -2/+2 |