| Age | Commit message (Expand) | Author | Lines |
| 2017-12-22 | Rollup merge of #46839 - michaelwoerister:faster-span-hashing-2, r=nikomatsakis | kennytm | -8/+36 |
| 2017-12-22 | Rollup merge of #46820 - nodakai:simplify-int-impl, r=alexcrichton | kennytm | -151/+52 |
| 2017-12-22 | Rollup merge of #46814 - varkor:contrib-7, r=alexcrichton | kennytm | -5/+67 |
| 2017-12-22 | Rollup merge of #46809 - eddyb:issue-46769-optimal, r=arielb1 | kennytm | -9/+16 |
| 2017-12-22 | Rollup merge of #46784 - bjorn3:patch-1, r=pnkfelix | kennytm | -59/+24 |
| 2017-12-22 | Rollup merge of #46780 - varkor:contrib-5, r=arielb1 | kennytm | -17/+36 |
| 2017-12-22 | Rollup merge of #46636 - frewsxcv:frewsxcv-fn-box, r=estebank | kennytm | -32/+22 |
| 2017-12-21 | Auto merge of #46904 - GuillaumeGomez:rollup, r=GuillaumeGomez | bors | -99/+248 |
| 2017-12-21 | Rollup merge of #46887 - pnkfelix:ensure-activations-are-from-assignments-to-... | Guillaume Gomez | -1/+17 |
| 2017-12-21 | Rollup merge of #46861 - GuillaumeGomez:fix-ios-sidebar, r=QuietMisdreavus | Guillaume Gomez | -10/+50 |
| 2017-12-21 | Rollup merge of #46860 - estebank:candidate-def-sp, r=petrochenkov | Guillaume Gomez | -16/+13 |
| 2017-12-21 | Rollup merge of #46853 - GuillaumeGomez:fix-rustdoc-warning, r=QuietMisdreavus | Guillaume Gomez | -2/+3 |
| 2017-12-21 | Rollup merge of #46827 - petrochenkov:assocrecov2, r=estebank | Guillaume Gomez | -70/+165 |
| 2017-12-21 | Auto merge of #46772 - alexcrichton:thinlto-passes, r=michaelwoerister | bors | -0/+130 |
| 2017-12-21 | Auto merge of #46754 - cramertj:refactor-arg-impl, r=nikomatsakis | bors | -185/+92 |
| 2017-12-21 | Auto merge of #46531 - cramertj:no-mo-modrs, r=nikomatsakis | bors | -63/+609 |
| 2017-12-21 | Auto merge of #46083 - petrochenkov:morepriv, r=nikomatsakis | bors | -136/+656 |
| 2017-12-21 | Always report private-in-public in associated types as hard errors | Vadim Petrochenkov | -31/+108 |
| 2017-12-21 | Prohibit access to private statics from other crates through macros 2.0 | Vadim Petrochenkov | -2/+13 |
| 2017-12-21 | Properly check traits in type privacy | Vadim Petrochenkov | -93/+155 |
| 2017-12-21 | Check associated type bindings for privacy and stability | Vadim Petrochenkov | -24/+45 |
| 2017-12-21 | Add tests for associated item privacy | Vadim Petrochenkov | -0/+349 |
| 2017-12-20 | Auto merge of #46862 - nikomatsakis:nll-master, r=arielb1 | bors | -1844/+4132 |
| 2017-12-20 | fix truncated comment | Niko Matsakis | -1/+4 |
| 2017-12-20 | improve comment about instantiating anon types | Niko Matsakis | -6/+34 |
| 2017-12-20 | Fix parsing of paths with fn-like generic arguments | Vadim Petrochenkov | -24/+18 |
| 2017-12-20 | Add tests checking taht "priority" of qpath recovery is higher than unary and... | Vadim Petrochenkov | -3/+97 |
| 2017-12-20 | Move impls for qpath recovery trait from `ast.rs` | Vadim Petrochenkov | -58/+65 |
| 2017-12-20 | convert region-liveness-drop{-,-no-}may-dangle.rs into ui tests | Niko Matsakis | -66/+78 |
| 2017-12-20 | add some run-pass tests for NLL showing that things work as expected | Niko Matsakis | -0/+108 |
| 2017-12-20 | when using feature(nll), don't warn about AST-based region errors | Niko Matsakis | -13/+120 |
| 2017-12-20 | document and tweak the nll, use_mir, etc helpers | Niko Matsakis | -7/+28 |
| 2017-12-20 | feature nll implies borrowck=mir | Santiago Pastorino | -6/+23 |
| 2017-12-20 | feature nll implies two-phase-borrows | Santiago Pastorino | -4/+9 |
| 2017-12-20 | Add nll feature and make nll imply nll_dump_cause | Santiago Pastorino | -10/+51 |
| 2017-12-20 | Add nll_dump_cause helper to Session | Santiago Pastorino | -2/+5 |
| 2017-12-20 | use `report_generic_bound_failure` when we can in the compiler | Niko Matsakis | -85/+189 |
| 2017-12-20 | refactor `report_generic_bound_failure` to be usable by NLL code | Niko Matsakis | -13/+22 |
| 2017-12-20 | connect NLL machinery to the `NiceRegionError` code | Niko Matsakis | -82/+144 |
| 2017-12-20 | give precedence to `try_report_named_anon_conflict` method | Niko Matsakis | -2/+2 |
| 2017-12-20 | use `Option<ErrorReported>` instead of `bool` | Niko Matsakis | -34/+25 |
| 2017-12-20 | introduce a `NiceRegionError` type and define methods on that | Niko Matsakis | -82/+137 |
| 2017-12-20 | nice_region_error: rustfmt | Niko Matsakis | -83/+98 |
| 2017-12-20 | extract `find_anon_type` into its own module | Niko Matsakis | -263/+296 |
| 2017-12-20 | make `util` fns private to nice_region_error | Niko Matsakis | -8/+8 |
| 2017-12-20 | move nice-region-error reporting into its own module | Niko Matsakis | -5/+16 |
| 2017-12-20 | only dump causes if we have nothing better | Niko Matsakis | -8/+8 |
| 2017-12-20 | Add three point error handling to borrowck | Santiago Pastorino | -23/+274 |
| 2017-12-20 | Move categorize logic out of visit_local function | Niko Matsakis | -58/+80 |
| 2017-12-20 | Move MirVisitable to visit.rs | Santiago Pastorino | -24/+27 |