| Age | Commit message (Expand) | Author | Lines |
| 2018-12-04 | Propagate all closure requirements to the caller | Matthew Jasper | -1/+1 |
| 2018-11-19 | Refactor and add `PlaceContext::AscribeUserTy`. | David Wood | -13/+15 |
| 2018-11-10 | If we encounter `_` ascribed to structural pattern like `(a, b)`, just skip r... | Felix S. Klock II | -8/+27 |
| 2018-10-31 | borrowck=migrate mode needs to check parent(s) when its given a closure. | Felix S. Klock II | -1/+27 |
| 2018-10-29 | add user_ty.projs support to `AscribeUserType`. | Felix S. Klock II | -2/+2 |
| 2018-10-29 | Add the actual chain of projections to `UserTypeProjection`. | Felix S. Klock II | -3/+17 |
| 2018-10-29 | Checkpoint: Added abstraction over collection of projections into user type. | Felix S. Klock II | -6/+6 |
| 2018-10-29 | Added `mir::UserTypeProjection`, a stub for a structure that projects *into* ... | Felix S. Klock II | -6/+7 |
| 2018-10-29 | Shrink `Statement`. | Nicholas Nethercote | -1/+1 |
| 2018-10-29 | Remove redundant clone | Shotaro Yamada | -1/+1 |
| 2018-10-24 | port the relate-types code from NLL type-check into a type-op | Niko Matsakis | -99/+15 |
| 2018-10-24 | introduce (but do not use) `ascribe_user_type` goal | Niko Matsakis | -0/+1 |
| 2018-10-23 | type_check/mod.rs: rustfmt | Niko Matsakis | -24/+27 |
| 2018-10-23 | check the self type is well-formed | Niko Matsakis | -0/+2 |
| 2018-10-22 | stop reporting "unsatisfied lifetime bounds" errors after the first | Niko Matsakis | -0/+1 |
| 2018-10-22 | start enforcing closure types | Niko Matsakis | -2/+74 |
| 2018-10-21 | Use new region infer errors for explaining borrows | Matthew Jasper | -58/+386 |
| 2018-10-20 | Give an error number for "borrowed data escapes outside of closure" | Matthew Jasper | -3/+2 |
| 2018-10-20 | Use more accurate `ConstraintCategory`s | Matthew Jasper | -6/+51 |
| 2018-10-20 | Prefer type annotations and returns in free region errors | Matthew Jasper | -0/+2 |
| 2018-10-20 | Auto merge of #55014 - ljedrz:lazyboye_unwraps, r=matthewjasper | bors | -11/+12 |
| 2018-10-20 | Auto merge of #55114 - oli-obk:fx#map, r=nikomatsakis | bors | -15/+15 |
| 2018-10-19 | Auto merge of #55162 - nikomatsakis:issue-54902-underscore-bound, r=tmandry | bors | -0/+1 |
| 2018-10-19 | normalize the self-type that we extract from impl | Niko Matsakis | -0/+1 |
| 2018-10-19 | add useful debug log | Niko Matsakis | -0/+1 |
| 2018-10-19 | region_infer/mod.rs: rustfmt | Niko Matsakis | -8/+8 |
| 2018-10-19 | suppress duplicate -- or near duplicate -- type test errors | Niko Matsakis | -4/+26 |
| 2018-10-19 | normalize and prove predicates | Niko Matsakis | -1/+50 |
| 2018-10-19 | normalize after substitution | Niko Matsakis | -0/+1 |
| 2018-10-19 | pull `relate_type_and_user_type` code into `type_check` module | Niko Matsakis | -132/+99 |
| 2018-10-19 | Prefer `Default::default` over `FxHash*::default` in struct constructors | Oliver Scherer | -13/+13 |
| 2018-10-19 | Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hack | Oliver Scherer | -13/+13 |
| 2018-10-19 | type_check/mod.rs: rustfmt | Niko Matsakis | -40/+29 |
| 2018-10-19 | replace `UserTypeAnnotation::AdtDef` with `TypeOf` | Niko Matsakis | -16/+0 |
| 2018-10-19 | convert `FnDef` to `TypeOf`, which is more general | Niko Matsakis | -2/+4 |
| 2018-10-19 | Rollup merge of #55013 - matthewjasper:propagate-generator-bounds, r=nikomats... | kennytm | -19/+12 |
| 2018-10-19 | Prefer unwrap_or_else to unwrap_or in case of function calls/allocations | ljedrz | -11/+12 |
| 2018-10-18 | Propagate bounds from generators | Matthew Jasper | -19/+12 |
| 2018-10-18 | Improve check to consider how value is used. | David Wood | -22/+15 |
| 2018-10-18 | Add by-value captured variable note on second use. | David Wood | -14/+122 |
| 2018-10-18 | Extend closure special-casing for generators. | David Wood | -101/+177 |
| 2018-10-18 | Rollup merge of #55151 - ljedrz:cleanup_nll, r=estebank | kennytm | -54/+51 |
| 2018-10-18 | Rollup merge of #55122 - ljedrz:cleanup_mir_borrowck, r=Mark-Simulacrum | kennytm | -252/+228 |
| 2018-10-17 | Auto merge of #55134 - davidtwco:issue-55118, r=pnkfelix | bors | -7/+7 |
| 2018-10-17 | move E0637 to lowering and improve output, add more tests | Niko Matsakis | -0/+1 |
| 2018-10-17 | nll: improve common patterns | ljedrz | -35/+32 |
| 2018-10-17 | nll: improve format operations | ljedrz | -9/+9 |
| 2018-10-17 | nll: improve allocations | ljedrz | -10/+10 |
| 2018-10-17 | mir/borrowck: remove a redundant clone | ljedrz | -3/+1 |
| 2018-10-17 | mir/borrowck: remove redundant returns | ljedrz | -6/+6 |