| Age | Commit message (Expand) | Author | Lines |
| 2016-05-20 | Rollup merge of #33676 - rkruppe:e0509-exact-words, r=sanxiyn | Guillaume Gomez | -1/+1 |
| 2016-05-19 | Rollup merge of #33353 - timothy-mcroy:E0502, r=sanxiyn | Manish Goregaokar | -1/+27 |
| 2016-05-19 | Reword the short diagnostic for E0509 | Robin Kruppe | -1/+1 |
| 2016-05-18 | Auto merge of #33688 - jonathandturner:fix_old_school, r=nikomatsakis | bors | -11/+7 |
| 2016-05-18 | Auto merge of #33710 - Manishearth:rollup, r=Manishearth | bors | -0/+1 |
| 2016-05-17 | Add descriptive error explanation for E0502 | Timothy McRoy | -1/+27 |
| 2016-05-17 | Improve a few errors and fix #33366 | Jonathan Turner | -11/+7 |
| 2016-05-16 | Add missing code fence to `diagnostics.rs` | Andrew Paseltiner | -0/+1 |
| 2016-05-16 | Remove hir::Ident | Vadim Petrochenkov | -1/+1 |
| 2016-05-15 | Auto merge of #33619 - jonathandturner:improve_structured_errors, r=nikomatsakis | bors | -92/+135 |
| 2016-05-15 | Add space after equals | Jonathan Turner | -1/+1 |
| 2016-05-15 | Rollup merge of #33533 - GuillaumeGomez:add_E0500, r=steveklabnik | Manish Goregaokar | -1/+47 |
| 2016-05-15 | Rollup merge of #33475 - billyevans:master, r=guillaumegomez | Manish Goregaokar | -1/+79 |
| 2016-05-12 | Update errors to use new error format | Jonathan Turner | -91/+104 |
| 2016-05-12 | Set of fixes to improve borrowcks that weren't updated | Jonathan Turner | -16/+46 |
| 2016-05-12 | Auto merge of #33282 - alexcrichton:rustbuild-crate-tests, r=brson | bors | -0/+1 |
| 2016-05-12 | rustbuild: Add support for crate tests + doctests | Alex Crichton | -0/+1 |
| 2016-05-11 | Add detailed error explanation for E0505 | billyevans | -1/+79 |
| 2016-05-11 | Rollup merge of #33386 - cramertj:E0504, r=steveklabnik | Steve Klabnik | -1/+104 |
| 2016-05-11 | Add E0500 error explanation | ggomez | -1/+47 |
| 2016-05-11 | rustc: Split local type contexts interners from the global one. | Eduard Burtescu | -34/+30 |
| 2016-05-11 | rustc: Wrap users of InferCtxt in an anonymous scope. | Eduard Burtescu | -26/+22 |
| 2016-05-11 | rustc: Remove the TyCtxt field from ParameterEnvironment. | Eduard Burtescu | -8/+8 |
| 2016-05-11 | rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users. | Eduard Burtescu | -22/+22 |
| 2016-05-11 | rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper. | Eduard Burtescu | -57/+53 |
| 2016-05-11 | mem_categorization: freely_aliasable doesn't need to take TyCtxt. | Eduard Burtescu | -1/+1 |
| 2016-05-11 | infer: Use methods for creating an InferCtxt. | Eduard Burtescu | -14/+8 |
| 2016-05-10 | borrowck: do not suggest to change "&mut self" to "&mut mut self" | Georg Brandl | -5/+7 |
| 2016-05-09 | Rollup merge of #33383 - cramertj:E0509, r=Manishearth | Manish Goregaokar | -1/+95 |
| 2016-05-09 | Add detailed error explanation for E0504 | Taylor Cramer | -1/+104 |
| 2016-05-07 | Rollup merge of #33412 - cramertj:E0389, r=Manishearth | Steve Klabnik | -1/+64 |
| 2016-05-06 | Add detailed error explanation for E0389 | Taylor Cramer | -1/+64 |
| 2016-05-06 | Add detailed error explanation for E0509 | Taylor Cramer | -1/+95 |
| 2016-05-04 | Add detailed error explanation for E0506 | Taylor Cramer | -1/+84 |
| 2016-05-03 | Rollup merge of #33294 - timothy-mcroy:E0501, r=GuillaumeGomez | Manish Goregaokar | -1/+76 |
| 2016-05-02 | replace fileline_{help,note} with {help,note} | Niko Matsakis | -4/+2 |
| 2016-05-02 | add borrowck info inline in main snippet | Niko Matsakis | -186/+145 |
| 2016-05-01 | Add error explanation for E0501 | Timothy McRoy | -1/+76 |
| 2016-04-24 | thread tighter span for closures around | Niko Matsakis | -1/+1 |
| 2016-04-06 | rustc: move middle::{def,def_id,pat_util} to hir. | Eduard Burtescu | -2/+2 |
| 2016-04-06 | syntax: dismantle ast_util. | Eduard Burtescu | -2/+2 |
| 2016-04-06 | rustc: dismantle hir::util, mostly moving functions to methods. | Eduard Burtescu | -2/+1 |
| 2016-04-06 | rustc: move rustc_front to rustc::hir. | Eduard Burtescu | -19/+17 |
| 2016-03-31 | librustc_borrowck: use bug!(), span_bug!() | Benjamin Herr | -35/+28 |
| 2016-03-27 | rustc: move cfg, infer, traits and ty from middle to top-level. | Eduard Burtescu | -21/+21 |
| 2016-03-23 | Update borrowck to use `repr::*` instead of a mix | Niko Matsakis | -13/+12 |
| 2016-03-23 | extend Terminator into a struct so it can have additional fields | Niko Matsakis | -51/+48 |
| 2016-03-22 | enable question_mark feature in rustc_borrowck | Jorge Aparicio | -0/+1 |
| 2016-03-22 | fix alignment | Jorge Aparicio | -21/+21 |
| 2016-03-22 | try! -> ? | Jorge Aparicio | -22/+22 |