| Age | Commit message (Expand) | Author | Lines |
| 2020-04-03 | parse_and_disallow_postfix_after_cast: account for `ExprKind::Err`. | Mazdak Farrokhzad | -0/+1 |
| 2020-03-21 | can_begin_literal_maybe_minus: `true` on `"-"? lit` NTs. | Mazdak Farrokhzad | -0/+1 |
| 2020-03-09 | Rollup merge of #69801 - petrochenkov:nonorm, r=Centril | Mazdak Farrokhzad | -35/+38 |
| 2020-03-09 | Rollup merge of #69201 - Aaron1011:feature/permit-if-attr, r=Centril | Mazdak Farrokhzad | -9/+0 |
| 2020-03-09 | Address review comments | Vadim Petrochenkov | -7/+6 |
| 2020-03-09 | Use `Token::uninterpolate` in couple more places matching on `(Nt)Ident` | Vadim Petrochenkov | -2/+1 |
| 2020-03-09 | rustc_ast: Introduce `Token::uninterpolate` | Vadim Petrochenkov | -2/+2 |
| 2020-03-09 | rustc_ast: Introduce `Token::uninterpolated_span` | Vadim Petrochenkov | -7/+10 |
| 2020-03-09 | rustc_parse: Use `Token::ident` where possible | Vadim Petrochenkov | -24/+26 |
| 2020-03-07 | Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkov | Mazdak Farrokhzad | -1/+1 |
| 2020-03-07 | Rollup merge of #69656 - matthiaskrgr:iter_nth_zero, r=oli-obk | Mazdak Farrokhzad | -1/+1 |
| 2020-03-07 | Rollup merge of #68985 - daboross:fix-35813, r=Centril | Mazdak Farrokhzad | -5/+58 |
| 2020-03-06 | fix various typos | Matthias Krüger | -1/+1 |
| 2020-03-04 | Permit attributes on 'if' expressions | Aaron Hill | -9/+0 |
| 2020-03-03 | Use .next() instead of .nth(0) on iterators. | Matthias Krüger | -1/+1 |
| 2020-03-01 | Rollup merge of #69579 - petrochenkov:noprevspan, r=Centril | Yuki Okushi | -60/+69 |
| 2020-02-29 | Replace ptr hashing with ptr casting | David | -15/+6 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -8/+8 |
| 2020-02-29 | parser: Remove `Parser::prev_span` | Vadim Petrochenkov | -1/+1 |
| 2020-02-29 | parser: `prev_span` -> `prev_token.span` | Vadim Petrochenkov | -59/+68 |
| 2020-02-28 | Rollup merge of #69481 - matthiaskrgr:single_char, r=ecstatic-morse | Mazdak Farrokhzad | -1/+1 |
| 2020-02-28 | Rollup merge of #69384 - petrochenkov:nounnorm, r=Centril | Mazdak Farrokhzad | -21/+18 |
| 2020-02-27 | use char instead of &str for single char patterns | Matthias Krüger | -1/+1 |
| 2020-02-27 | use find(x) instead of filter(x).next() | Matthias Krüger | -6/+2 |
| 2020-02-24 | parser: `token` -> `normalized_token`, `nonnormalized_token` -> `token` | Vadim Petrochenkov | -21/+18 |
| 2020-02-22 | Use multipart suggestion | David Ross | -13/+9 |
| 2020-02-22 | Rename CodeMap to SourceMap follow up | Maxim Zholobak | -2/+2 |
| 2020-02-17 | parser: Remove `Option`s from unnormalized tokens | Vadim Petrochenkov | -2/+2 |
| 2020-02-17 | Rename `FunctionRetTy` to `FnRetTy` | Yuki Okushi | -4/+2 |
| 2020-02-15 | Remove extra debug print in unreachable! | David Ross | -2/+1 |
| 2020-02-15 | Keep better fix suggestion if type ascription is likely unintended | David Ross | -9/+15 |
| 2020-02-15 | Type ascription outputs a Type, not Cast | David Ross | -1/+3 |
| 2020-02-15 | Refactor out error case & apply suggestions. | David Ross | -20/+42 |
| 2020-02-15 | Parse & reject postfix operators after casts | David Ross | -2/+39 |
| 2020-02-14 | Suggest a comma if a struct initializer field fails to parse | Aaron Hill | -1/+7 |
| 2020-02-13 | IsAsync -> enum Async { Yes { span: Span, .. }, No } | Mazdak Farrokhzad | -2/+2 |
| 2020-02-12 | Rollup merge of #68981 - estebank:silence, r=davidtwco | Dylan DPC | -1/+1 |
| 2020-02-12 | Rollup merge of #69034 - petrochenkov:notokind, r=Centril | Dylan DPC | -17/+12 |
| 2020-02-10 | review comment: wording | Esteban Küber | -1/+1 |
| 2020-02-10 | parser: Remove `Parser::prev_token_kind` | Vadim Petrochenkov | -17/+12 |
| 2020-02-09 | Make issue references consistent | Matthias Prechtl | -1/+4 |
| 2020-02-05 | parse_ty_common: use `enum`s instead of `bool`s. | Mazdak Farrokhzad | -1/+2 |
| 2020-02-01 | syntax::print -> new crate rustc_ast_pretty | Mazdak Farrokhzad | -1/+1 |
| 2020-01-12 | Rollup merge of #68108 - varkor:chained-comparison-suggestions, r=Centril | Mazdak Farrokhzad | -19/+23 |
| 2020-01-11 | Rollup merge of #68120 - Centril:ban-range-to-dotdotdot, r=oli-obk | Mazdak Farrokhzad | -1/+1 |
| 2020-01-11 | Ban `...X` pats, harden tests, and improve diagnostics. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-11 | Rollup merge of #68084 - estebank:ice-68000, r=varkor | Mazdak Farrokhzad | -1/+1 |
| 2020-01-11 | Add suggestions when encountering chained comparisons | varkor | -19/+23 |
| 2020-01-10 | Change `next_point` when `shrink_to_hi` is more appropriate | Esteban Küber | -1/+1 |
| 2020-01-10 | Introduce `#![feature(half_open_range_patterns)]`. | Mazdak Farrokhzad | -2/+2 |