| Age | Commit message (Expand) | Author | Lines |
| 2020-11-03 | rustc_ast: `visit_mac` -> `visit_mac_call` | Vadim Petrochenkov | -1/+1 |
| 2020-11-03 | rustc_ast: Do not panic by default when visiting macro calls | Vadim Petrochenkov | -4/+0 |
| 2020-11-02 | Use reparsed `TokenStream` if we captured any inner attributes | Aaron Hill | -24/+9 |
| 2020-10-31 | parser: Cleanup `LazyTokenStream` and avoid some clones | Vadim Petrochenkov | -26/+37 |
| 2020-10-30 | Add back missing comments | Joshua Nelson | -2/+3 |
| 2020-10-30 | Fix even more clippy warnings | Joshua Nelson | -52/+38 |
| 2020-10-30 | Rollup merge of #78523 - estebank:fix-return-type-parse-regression, r=dtolnay | Yuki Okushi | -13/+4 |
| 2020-10-29 | Revert invalid `fn` return type parsing change | Esteban Küber | -13/+4 |
| 2020-10-29 | Rollup merge of #78460 - varkor:turbofish-string-generic, r=lcnr | Yuki Okushi | -4/+5 |
| 2020-10-28 | Adjust turbofish help message for const generics | varkor | -4/+5 |
| 2020-10-28 | Rollup merge of #78453 - Storyyeller:patch-1, r=jonas-schievink | Dylan DPC | -1/+1 |
| 2020-10-28 | Rollup merge of #78379 - estebank:fn-signature-parse, r=varkor | Dylan DPC | -18/+45 |
| 2020-10-27 | Fix typo in comments | Robert Grosse | -1/+1 |
| 2020-10-27 | Auto merge of #77502 - varkor:const-generics-suggest-enclosing-braces, r=petr... | bors | -22/+190 |
| 2020-10-26 | Suggest expressions that look like const generic arguments should be enclosed... | varkor | -22/+190 |
| 2020-10-26 | Rollup merge of #78214 - estebank:match-semicolon, r=oli-obk | Dylan DPC | -1/+7 |
| 2020-10-25 | Tweak invalid `fn` header and body parsing | Esteban Küber | -9/+43 |
| 2020-10-25 | Rely on regular "expected"/"found" parser error for `fn` | Esteban Küber | -12/+5 |
| 2020-10-24 | Auto merge of #77255 - Aaron1011:feature/collect-attr-tokens, r=petrochenkov | bors | -68/+107 |
| 2020-10-23 | Silence unnecessary `await foo?` knock-down error | Esteban Küber | -1/+7 |
| 2020-10-22 | Only call `collect_tokens` when we have an attribute to parse | Aaron Hill | -26/+32 |
| 2020-10-22 | Make inline const work for half open ranges | Santiago Pastorino | -8/+8 |
| 2020-10-22 | Make inline const work in range patterns | Santiago Pastorino | -6/+15 |
| 2020-10-22 | Rename parse_const_expr to parse_const_block | Santiago Pastorino | -3/+3 |
| 2020-10-22 | Don't create an empty `LazyTokenStream` | Aaron Hill | -19/+25 |
| 2020-10-21 | Unconditionally capture tokens for attributes. | Aaron Hill | -52/+79 |
| 2020-10-21 | Auto merge of #77250 - Aaron1011:feature/flat-token-collection, r=petrochenkov | bors | -146/+158 |
| 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 | -146/+158 |
| 2020-10-19 | Avoid cloning the contents of a `TokenStream` in a few places | Aaron Hill | -5/+5 |
| 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-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 | 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-06 | rustc_parse: Make `Parser::unexpected` public and use it in built-in macros | Vadim Petrochenkov | -1/+1 |
| 2020-10-02 | Fix span for incorrect pattern field and add label | Esteban Küber | -1/+2 |
| 2020-09-22 | Suggest async {} for async || {} | Andy Weiss | -4/+5 |
| 2020-09-21 | fix typo in docs and comments | yuk1ty | -1/+1 |
| 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-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/+15 |
| 2020-09-10 | Attach `TokenStream` to `ast::Visibility` | Aaron Hill | -11/+39 |
| 2020-09-10 | Attach `TokenStream` to `ast::Path` | Aaron Hill | -6/+17 |