| Age | Commit message (Expand) | Author | Lines |
| 2020-10-22 | Don't create an empty `LazyTokenStream` | Aaron Hill | -19/+25 |
| 2020-10-21 | Unconditionally capture tokens for attributes. | Aaron Hill | -99/+87 |
| 2020-10-21 | Auto merge of #77250 - Aaron1011:feature/flat-token-collection, r=petrochenkov | bors | -156/+171 |
| 2020-10-21 | Rollup merge of #78118 - spastorino:inline-const-followups, r=petrochenkov | Yuki Okushi | -1/+5 |
| 2020-10-19 | Allow NtBlock to parse on check inline const next token | Santiago Pastorino | -1/+5 |
| 2020-10-19 | Rewrite `collect_tokens` implementations to use a flattened buffer | Aaron Hill | -156/+171 |
| 2020-10-19 | Avoid cloning the contents of a `TokenStream` in a few places | Aaron Hill | -5/+5 |
| 2020-10-18 | Remove redundant 'static in the compiler | est31 | -1/+1 |
| 2020-10-16 | Parse inline const patterns | Santiago Pastorino | -0/+3 |
| 2020-10-16 | Parse inline const expressions | Santiago Pastorino | -3/+26 |
| 2020-10-16 | Rollup merge of #77780 - calebcartwright:cast-expr-attr-span, r=oli-obk | Dylan DPC | -7/+17 |
| 2020-10-15 | fix off-by-one in parameter spans | Andy Russell | -1/+1 |
| 2020-10-15 | Rollup merge of #77739 - est31:remove_unused_code, r=petrochenkov,varkor | Yuki Okushi | -16/+0 |
| 2020-10-14 | Remove unused code from remaining compiler crates | est31 | -16/+0 |
| 2020-10-12 | rustc_parse: correct span on range expr with attrs | Caleb Cartwright | -1/+1 |
| 2020-10-12 | rustc_parse: correct span on cast expr with attrs | Caleb Cartwright | -6/+16 |
| 2020-10-11 | Remove unused import | Aaron Hill | -1/+1 |
| 2020-10-11 | Add `relaxed_delim_match` parameter | Aaron Hill | -16/+53 |
| 2020-10-11 | Allow skipping extra paren insertion during AST pretty-printing | Aaron Hill | -7/+30 |
| 2020-10-11 | rustc_parse: More precise spans for `tuple.0.0` | Vadim Petrochenkov | -7/+33 |
| 2020-10-07 | Detect blocks that could be struct expr bodies | Esteban Küber | -15/+125 |
| 2020-10-07 | Auto merge of #77595 - petrochenkov:asmident, r=oli-obk | bors | -1/+1 |
| 2020-10-06 | rustc_parse: Make `Parser::unexpected` public and use it in built-in macros | Vadim Petrochenkov | -1/+1 |
| 2020-10-05 | Fix span for unicode escape suggestion. | Eric Huss | -3/+2 |
| 2020-10-02 | Rollup merge of #77444 - estebank:pat-field-label, r=davidtwco | Jonas Schievink | -1/+2 |
| 2020-10-02 | Fix span for incorrect pattern field and add label | Esteban Küber | -1/+2 |
| 2020-09-28 | Fix recursive nonterminal expansion during pretty-print/reparse check | Aaron Hill | -23/+34 |
| 2020-09-26 | pretty-print-reparse hack: Remove an impossible case | Vadim Petrochenkov | -4/+1 |
| 2020-09-26 | pretty-print-reparse hack: Rename some variables for clarity | Vadim Petrochenkov | -16/+21 |
| 2020-09-23 | Rollup merge of #76994 - yuk1ty:fix-small-typo, r=estebank | Dylan DPC | -1/+1 |
| 2020-09-22 | Suggest async {} for async || {} | Andy Weiss | -4/+5 |
| 2020-09-21 | Rollup merge of #76888 - matthiaskrgr:clippy_single_match_2, r=Dylan-DPC | ecstatic-morse | -6/+3 |
| 2020-09-21 | Don't use `zip` to compare iterators during pretty-print hack | Aaron Hill | -8/+5 |
| 2020-09-21 | fix typo in docs and comments | yuk1ty | -1/+1 |
| 2020-09-20 | use if let instead of single match arm expressions to compact code and reduce... | Matthias Krüger | -6/+3 |
| 2020-09-17 | Remove redundant #![feature(...)] 's from compiler/ | est31 | -1/+0 |
| 2020-09-15 | improve diagnostics for lifetime after `&mut` | SNCPlay42 | -1/+27 |
| 2020-09-15 | Auto merge of #76171 - estebank:turbofish-the-revenge, r=davidtwco | bors | -6/+66 |
| 2020-09-14 | Detect turbofish with multiple type params missing leading `::` | Esteban Küber | -6/+66 |
| 2020-09-13 | Auto merge of #76598 - ad-anssi:diagnostic_errors_fix, r=estebank | bors | -1/+5 |
| 2020-09-13 | Auto merge of #76585 - Aaron1011:ignore-vert-plus, r=petrochenkov | bors | -0/+6 |
| 2020-09-11 | repairing broken error message and rustfix application for the new test | Aurélien Deharbe | -1/+5 |
| 2020-09-10 | Attach tokens to `ast::Stmt` | Aaron Hill | -5/+22 |
| 2020-09-10 | Attach `TokenStream` to `ast::Visibility` | Aaron Hill | -12/+40 |
| 2020-09-10 | Attach `TokenStream` to `ast::Path` | Aaron Hill | -6/+18 |
| 2020-09-10 | Attach tokens to `NtMeta` (`ast::AttrItem`) | Aaron Hill | -2/+10 |
| 2020-09-10 | Collect tokens when handling `:literal` matcher | Aaron Hill | -2/+10 |
| 2020-09-10 | Attach `TokenStream` to `ast::Ty` | Aaron Hill | -6/+24 |
| 2020-09-10 | Attach `TokenStream` to `ast::Block` | Aaron Hill | -2/+10 |
| 2020-09-10 | Ignore `|` and `+` tokens during proc-macro pretty-print check | Aaron Hill | -0/+6 |