| 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 | -2/+3 |
| 2020-03-09 | Rollup merge of #69801 - petrochenkov:nonorm, r=Centril | Mazdak Farrokhzad | -103/+75 |
| 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 | -8/+7 |
| 2020-03-09 | Use `Token::uninterpolate` in couple more places matching on `(Nt)Ident` | Vadim Petrochenkov | -3/+4 |
| 2020-03-09 | rustc_parse: Remove `Parser::normalized(_prev)_token` | Vadim Petrochenkov | -37/+5 |
| 2020-03-09 | rustc_ast: Introduce `Token::uninterpolate` | Vadim Petrochenkov | -4/+4 |
| 2020-03-09 | rustc_ast: Introduce `Token::uninterpolated_span` | Vadim Petrochenkov | -12/+15 |
| 2020-03-09 | rustc_parse: Use `Token::ident` where possible | Vadim Petrochenkov | -47/+48 |
| 2020-03-07 | Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkov | Mazdak Farrokhzad | -3/+3 |
| 2020-03-07 | Rollup merge of #69656 - matthiaskrgr:iter_nth_zero, r=oli-obk | Mazdak Farrokhzad | -3/+3 |
| 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 | -3/+3 |
| 2020-03-06 | Auto merge of #69586 - petrochenkov:unmerge, r=Centril | bors | -20/+20 |
| 2020-03-05 | Rollup merge of #69736 - matthiaskrgr:even_more_clippy, r=Dylan-DPC | Dylan DPC | -1/+1 |
| 2020-03-05 | Const items have by default a static lifetime, there's no need to annotate it... | Matthias Krüger | -1/+1 |
| 2020-03-04 | Permit attributes on 'if' expressions | Aaron Hill | -9/+0 |
| 2020-03-04 | Use .map() to modify data inside Options instead of using .and_then(|x| Some(... | Matthias Krüger | -1/+1 |
| 2020-03-03 | Use .next() instead of .nth(0) on iterators. | Matthias Krüger | -3/+3 |
| 2020-03-01 | encode `;` stmt w/o expr as `StmtKind::Empty` | Mazdak Farrokhzad | -20/+7 |
| 2020-03-01 | ast: Implement `TryFrom<ItemKind>` for associated and foreign items | Vadim Petrochenkov | -20/+20 |
| 2020-03-01 | Rollup merge of #69579 - petrochenkov:noprevspan, r=Centril | Yuki Okushi | -207/+224 |
| 2020-03-01 | Auto merge of #69592 - petrochenkov:nosyntax, r=Centril | bors | -63/+73 |
| 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 | -63/+73 |
| 2020-02-29 | rustc_parse: Tweak the function parameter name check | Vadim Petrochenkov | -3/+4 |
| 2020-02-29 | parser: Remove `Parser::prev_span` | Vadim Petrochenkov | -10/+12 |
| 2020-02-29 | parser: `prev_span` -> `prev_token.span` | Vadim Petrochenkov | -197/+212 |
| 2020-02-29 | Auto merge of #69570 - Dylan-DPC:rollup-d6boczt, r=Dylan-DPC | bors | -2/+2 |
| 2020-02-29 | Auto merge of #69255 - estebank:e0599-details, r=varkor | bors | -2/+4 |
| 2020-02-29 | Rollup merge of #69567 - matthiaskrgr:useless_fmt, r=nagisa | Dylan DPC | -1/+1 |
| 2020-02-29 | Rollup merge of #69551 - matthiaskrgr:len_zero, r=Mark-Simulacrum | Dylan DPC | -1/+1 |
| 2020-02-29 | use .to_string() instead of format!() macro to create strings | Matthias Krüger | -1/+1 |
| 2020-02-28 | Suggest constraining type parameters | Esteban Küber | -2/+4 |
| 2020-02-28 | Rollup merge of #69547 - matthiaskrgr:more_misc, r=Mark-Simulacrum | Mazdak Farrokhzad | -1/+1 |
| 2020-02-28 | Rollup merge of #69541 - dotdash:format, r=Mark-Simulacrum | Mazdak Farrokhzad | -9/+6 |
| 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 | -69/+59 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -1/+1 |
| 2020-02-28 | remove redundant clones, references to operands, explicit boolean comparisons... | Matthias Krüger | -1/+1 |
| 2020-02-28 | Rollup merge of #69529 - matthiaskrgr:clippy_identity_conversion, r=Mark-Simu... | Dylan DPC | -5/+4 |
| 2020-02-27 | don't use .into() to convert types into identical types. | Matthias Krüger | -5/+4 |
| 2020-02-27 | Remove unneeded calls to format!() | Björn Steinbrink | -9/+6 |
| 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-26 | Rollup merge of #69447 - Centril:minor-stmt-refactor, r=estebank | Dylan DPC | -94/+87 |
| 2020-02-26 | Rollup merge of #69423 - petrochenkov:nont, r=Centril | Dylan DPC | -8/+0 |
| 2020-02-25 | parse: address nitpick | Mazdak Farrokhzad | -3/+2 |
| 2020-02-25 | parse: move condition into guard | Mazdak Farrokhzad | -28/+28 |