| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2018-10-17 | mir/borrowck: deduplicate assignments and returns | ljedrz | -6/+2 |
| 2018-10-17 | mir/borrowck: a few string tweaks | ljedrz | -18/+16 |
| 2018-10-17 | mir/borrowck: simplify common patterns | ljedrz | -219/+203 |
| 2018-10-17 | Auto merge of #54941 - pnkfelix:issue-21232-reject-partial-reinit, r=nikomats... | bors | -52/+161 |
| 2018-10-17 | rustc: improve E0669 span | Levente Kurusa | -2/+2 |
| 2018-10-17 | Don't buffer lints. | David Wood | -7/+7 |
| 2018-10-16 | Don't complain re missing `mut` on attempt to partially initialize an uniniti... | Felix S. Klock II | -9/+23 |
| 2018-10-16 | Cleanup `fn is_mutable` by removing some unnecessary control-flow breaks. | Felix S. Klock II | -4/+4 |
| 2018-10-16 | Add helper method to determine if local had ever been initialized at current ... | Felix S. Klock II | -19/+25 |
| 2018-10-16 | Make us error consistently in issue #21232, to fix #54986. | Felix S. Klock II | -20/+109 |
| 2018-10-15 | avoid type variables in the self-type | Niko Matsakis | -1/+13 |
| 2018-10-15 | handle user-self-type for def-ids | Niko Matsakis | -3/+21 |
| 2018-10-15 | pull the common code across user-ty variants up top | Niko Matsakis | -22/+34 |
| 2018-10-15 | introduce a more expressive `UserSubsts` | Niko Matsakis | -2/+5 |
| 2018-10-15 | introduce `FnDef` and `AdtDef` to `UserTypeAnnotation` | Niko Matsakis | -2/+14 |
| 2018-10-15 | introduce a `UserTypeAnnotation` enum | Niko Matsakis | -19/+21 |
| 2018-10-15 | extract `type_relate` into the inference context as `nll_relate` | Niko Matsakis | -650/+4 |
| 2018-10-15 | rework `relate_type_and_user_type` to use type inference variables | Niko Matsakis | -74/+39 |
| 2018-10-15 | make `TypeRelating` take an infcx again | Niko Matsakis | -8/+8 |
| 2018-10-15 | remove the sub/super terminology for universes | Niko Matsakis | -11/+11 |
| 2018-10-15 | remove dead iterator code | Niko Matsakis | -13/+0 |
| 2018-10-15 | make `UniverseIndex` hashable, rename "sub-" to "superuniverse" | Niko Matsakis | -6/+6 |