| Age | Commit message (Expand) | Author | Lines |
| 2020-04-03 | parse_and_disallow_postfix_after_cast: account for `ExprKind::Err`. | Mazdak Farrokhzad | -0/+11 |
| 2020-03-21 | can_begin_literal_maybe_minus: `true` on `"-"? lit` NTs. | Mazdak Farrokhzad | -1/+37 |
| 2020-03-09 | Rollup merge of #69201 - Aaron1011:feature/permit-if-attr, r=Centril | Mazdak Farrokhzad | -111/+37 |
| 2020-03-07 | Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkov | Mazdak Farrokhzad | -7/+7 |
| 2020-03-07 | Rollup merge of #69708 - estebank:tiny, r=petrochenkov | Mazdak Farrokhzad | -8/+2 |
| 2020-03-07 | Rollup merge of #68985 - daboross:fix-35813, r=Centril | Mazdak Farrokhzad | -0/+563 |
| 2020-03-06 | bless tests | Matthias Krüger | -7/+7 |
| 2020-03-04 | Update stderr | Aaron Hill | -59/+35 |
| 2020-03-04 | Move if-attr tests to their own directory | Aaron Hill | -162/+0 |
| 2020-03-04 | Add run-pass test suggested by @joshtriplett | Aaron Hill | -0/+15 |
| 2020-03-04 | Remove recovery test | Aaron Hill | -30/+0 |
| 2020-03-04 | Test trying to cfg-remove an `if` expression | Aaron Hill | -0/+13 |
| 2020-03-04 | Test that stmt_expr_attrs properly gates if-attrs | Aaron Hill | -0/+18 |
| 2020-03-04 | Test #[allow(unused)] on `if` expression | Aaron Hill | -0/+12 |
| 2020-03-04 | Permit attributes on 'if' expressions | Aaron Hill | -25/+109 |
| 2020-03-04 | On mismatched delimiters, only point at empty blocks that are in the same line | Esteban Küber | -8/+2 |
| 2020-03-01 | encode `;` stmt w/o expr as `StmtKind::Empty` | Mazdak Farrokhzad | -17/+7 |
| 2020-02-28 | Update UI tests | Guillaume Gomez | -3/+6 |
| 2020-02-27 | Auto merge of #68434 - varkor:astconv-mismatch-error, r=nikomatsakis | bors | -8/+14 |
| 2020-02-24 | parse: test bad variants wrt. issue 48137. | Mazdak Farrokhzad | -0/+97 |
| 2020-02-24 | parse: tweak diagnostic wordings | Mazdak Farrokhzad | -96/+96 |
| 2020-02-24 | parse/ast: move `Defaultness` into variants. | Mazdak Farrokhzad | -182/+448 |
| 2020-02-24 | parse: `NtItem` -> `parse_item_common`. | Mazdak Farrokhzad | -0/+34 |
| 2020-02-24 | parser: tweak item kind wording | Mazdak Farrokhzad | -80/+80 |
| 2020-02-24 | parser: tweak unmatched wording | Mazdak Farrokhzad | -24/+36 |
| 2020-02-24 | parse: harden `default` test. | Mazdak Farrokhzad | -56/+96 |
| 2020-02-24 | parse: use `parse_item_common` in `parse_assoc_item_`. | Mazdak Farrokhzad | -86/+479 |
| 2020-02-24 | parse: use `parse_item_common` in `parse_foreign_item`. | Mazdak Farrokhzad | -31/+327 |
| 2020-02-24 | parse: recover `default` on free items. | Mazdak Farrokhzad | -5/+180 |
| 2020-02-24 | add `Span` to `ast::Defaultness::Default`. | Mazdak Farrokhzad | -8/+24 |
| 2020-02-22 | Use multipart suggestion | David Ross | -53/+229 |
| 2020-02-22 | Add more double cast + method call tests | David Ross | -22/+105 |
| 2020-02-22 | Add note regarding argument ordering | varkor | -0/+4 |
| 2020-02-22 | Move generic arg / param validation to `create_substs_for_generic_args` | varkor | -8/+10 |
| 2020-02-22 | parse: allow `type Foo: Ord` syntactically. | Mazdak Farrokhzad | -3/+103 |
| 2020-02-18 | Rollup merge of #69236 - Centril:mut-parens-at-recovery, r=estebank | Mazdak Farrokhzad | -11/+21 |
| 2020-02-18 | Rollup merge of #69194 - Centril:assoc-extern-fuse, r=petrochenkov | Mazdak Farrokhzad | -100/+680 |
| 2020-02-18 | Rollup merge of #69192 - JohnTitor:add-tests, r=Centril | Dylan DPC | -0/+54 |
| 2020-02-17 | parse: recover `mut (x @ y)` as `(mut x @ mut y)`. | Mazdak Farrokhzad | -11/+21 |
| 2020-02-17 | Auto merge of #69129 - Centril:macro-legacy-errors, r=petrochenkov | bors | -0/+21 |
| 2020-02-15 | Fix test stderr after rebasing on master. | David Ross | -2/+2 |
| 2020-02-15 | Remove trailing whitespace | David Ross | -3/+3 |
| 2020-02-15 | Add more error cases to issue 35813 tests | David Ross | -58/+225 |
| 2020-02-15 | Parse & reject postfix operators after casts | David Ross | -0/+137 |
| 2020-02-15 | reject assoc statics & extern consts during parsing | Mazdak Farrokhzad | -67/+154 |
| 2020-02-15 | fuse extern & associated item parsing up to defaultness | Mazdak Farrokhzad | -21/+25 |
| 2020-02-15 | parse extern consts | Mazdak Farrokhzad | -14/+46 |
| 2020-02-15 | parse associated statics. | Mazdak Farrokhzad | -15/+197 |
| 2020-02-15 | ast/parser: fuse `static` & `const` grammars in all contexts. | Mazdak Farrokhzad | -46/+122 |
| 2020-02-15 | ast: make `= <expr>;` optional in free statics/consts. | Mazdak Farrokhzad | -0/+104 |