| Age | Commit message (Expand) | Author | Lines |
| 2022-01-20 | Rollup merge of #93061 - estebank:macr-suggestion, r=cjgillot | Matthias Krüger | -1/+14 |
| 2022-01-20 | Rollup merge of #93038 - GuillaumeGomez:block-doc-comments, r=notriddle | Matthias Krüger | -13/+45 |
| 2022-01-20 | Rollup merge of #91032 - eholk:generator-drop-tracking, r=nikomatsakis | Matthias Krüger | -23/+1073 |
| 2022-01-19 | Rollup merge of #93077 - lcnr:write_substs, r=oli-obk | Matthias Krüger | -8/+4 |
| 2022-01-19 | Rollup merge of #93065 - dtolnay:ringbuffer, r=lcnr | Matthias Krüger | -112/+103 |
| 2022-01-19 | Rollup merge of #92316 - petrochenkov:extmangle, r=wesleywiser | Matthias Krüger | -3/+3 |
| 2022-01-19 | Only suggest adding `!` to expressions that can be macro invocation | Esteban Kuber | -1/+14 |
| 2022-01-19 | remove `is_noop` | lcnr | -8/+4 |
| 2022-01-19 | Correctly handle starts in block doc comments | Guillaume Gomez | -13/+45 |
| 2022-01-19 | Rollup merge of #93041 - pierwill:rm-unused-defid-ords, r=cjgillot | Matthias Krüger | -16/+6 |
| 2022-01-19 | Rollup merge of #92920 - dtolnay:printtidy, r=cjgillot | Matthias Krüger | -1200/+1220 |
| 2022-01-19 | Rollup merge of #92783 - FabianWolff:issue-92726, r=nikomatsakis | Matthias Krüger | -6/+54 |
| 2022-01-19 | Rollup merge of #91278 - SparrowLii:place, r=spastorino | Matthias Krüger | -76/+67 |
| 2022-01-19 | Rollup merge of #88642 - c410-f3r:let_chains_2, r=matthewjasper | Matthias Krüger | -36/+73 |
| 2022-01-18 | Eliminate left and right cursors in favor of ring buffer | David Tolnay | -30/+33 |
| 2022-01-18 | Eliminate eof token state | David Tolnay | -42/+44 |
| 2022-01-18 | Simplify the buffer push done by scan_break | David Tolnay | -8/+3 |
| 2022-01-18 | Eliminate a check_stack call on an empty scan stack | David Tolnay | -1/+1 |
| 2022-01-18 | Index a single time in check_stack | David Tolnay | -4/+5 |
| 2022-01-18 | Implement check_stack nonrecursively | David Tolnay | -9/+10 |
| 2022-01-18 | Implement check_stream nonrecursively | David Tolnay | -3/+3 |
| 2022-01-18 | Replace `if` + `unwrap` with `if let` in check_stack | David Tolnay | -2/+1 |
| 2022-01-18 | Ensure Printer buf is always indexed using self.left or self.right | David Tolnay | -3/+3 |
| 2022-01-18 | Inline Printer's scan_pop_bottom method | David Tolnay | -5/+1 |
| 2022-01-18 | Inline Printer's scan_top method | David Tolnay | -5/+1 |
| 2022-01-18 | Inline Printer's scan_pop method | David Tolnay | -7/+3 |
| 2022-01-18 | Simplify ring buffer pushes | David Tolnay | -7/+12 |
| 2022-01-18 | Inline Printer's scan_push method | David Tolnay | -8/+6 |
| 2022-01-18 | Inline Printer's advance_right method | David Tolnay | -9/+8 |
| 2022-01-18 | Fix build after rebase | Eric Holk | -9/+1 |
| 2022-01-18 | Formally implement let chains | Caio | -36/+73 |
| 2022-01-18 | Use .. patterns in cfg_build.rs | Eric Holk | -30/+30 |
| 2022-01-18 | Respond to code review comments | Eric Holk | -31/+196 |
| 2022-01-18 | Safely handle partial drops | Eric Holk | -1/+5 |
| 2022-01-18 | drop_ranges: Add TrackedValue enum | Eric Holk | -67/+106 |
| 2022-01-18 | Handle uninhabited return types | Eric Holk | -11/+61 |
| 2022-01-18 | Track changed bitsets in CFG propagation | Eric Holk | -3/+26 |
| 2022-01-18 | Remove clones and most allocations from propagate_to_fixpoint | Eric Holk | -6/+6 |
| 2022-01-18 | Handle empty loops better | Eric Holk | -2/+9 |
| 2022-01-18 | Explicitly list all ExprKinds in cfg_build | Eric Holk | -12/+40 |
| 2022-01-18 | Handle reinits in match guards | Eric Holk | -8/+22 |
| 2022-01-18 | More comments and refactoring | Eric Holk | -75/+117 |
| 2022-01-18 | Fixing formatting | Eric Holk | -6/+1 |
| 2022-01-18 | Additional cleanup | Eric Holk | -130/+151 |
| 2022-01-18 | Refactor drop_ranges | Eric Holk | -410/+455 |
| 2022-01-18 | Address code review comments | Eric Holk | -22/+22 |
| 2022-01-18 | Add more comments | Eric Holk | -1/+10 |
| 2022-01-18 | Refactor code to keep most drop range analysis in drop_ranges.rs | Eric Holk | -282/+283 |
| 2022-01-18 | More comments and small cleanups | Eric Holk | -112/+108 |
| 2022-01-18 | Fix control flow handling in generator_interior | Eric Holk | -22/+77 |