| Age | Commit message (Expand) | Author | Lines |
| 2021-07-18 | Auto merge of #87071 - inquisitivecrystal:inclusive-range, r=estebank | bors | -4/+6 |
| 2021-07-14 | Suggest a path separator if a stray colon is found in a match arm | Fabian Wolff | -4/+4 |
| 2021-07-11 | Give a helpful error for the mistake `..==` | Aris Merchant | -4/+6 |
| 2021-06-22 | Auto merge of #85193 - pnkfelix:readd-support-for-inner-attrs-within-match, r... | bors | -1/+2 |
| 2021-06-17 | Use `AttrVec` for `Arm`, `FieldDef`, and `Variant` | Yuki Okushi | -2/+2 |
| 2021-06-10 | Add support for using qualified paths with structs in expression and pattern | Ryan Levick | -9/+19 |
| 2021-06-06 | parser: Ensure that all nonterminals have tokens after parsing | Vadim Petrochenkov | -11/+1 |
| 2021-05-11 | Re-add support for parsing (and pretty-printing) inner-attributes within body... | Felix S. Klock II | -1/+2 |
| 2021-05-03 | parser: Remove support for inner attributes on non-block expressions | Vadim Petrochenkov | -10/+4 |
| 2021-04-11 | Implement token-based handling of attributes during expansion | Aaron Hill | -7/+5 |
| 2021-04-06 | Use AnonConst for asm! constants | Amanieu d'Antras | -1/+1 |
| 2021-03-25 | Avoid double-collection for expression nonterminals | Aaron Hill | -0/+15 |
| 2021-03-19 | stabilize or_patterns | mark | -4/+4 |
| 2021-03-16 | ast: Reduce size of `ExprKind` by boxing fields of `ExprKind::Struct` | Vadim Petrochenkov | -1/+5 |
| 2021-03-16 | ast/hir: Rename field-related structures | Vadim Petrochenkov | -6/+6 |
| 2021-03-03 | Detect match arm body without braces | Esteban Küber | -0/+111 |
| 2021-02-21 | remove unneccessary wrapping of return value in mk_await_expr() | Matthias Krüger | -3/+3 |
| 2021-02-21 | rustc_parse: remove unneccessary wrapping of return value in fn mk_range() wh... | Matthias Krüger | -5/+5 |
| 2021-02-18 | Rollup merge of #82236 - matthiaskrgr:useless_conv, r=jyn514 | Dylan DPC | -1/+1 |
| 2021-02-17 | avoid converting types into themselves (clippy::useless_conversion) | Matthias Krüger | -1/+1 |
| 2021-02-15 | Simplify pattern grammar by allowing nested leading vert | mark | -4/+4 |
| 2021-02-13 | Address review comments | Aaron Hill | -15/+6 |
| 2021-02-13 | Require passing an `AttrWrapper` to `collect_tokens_trailing_token` | Aaron Hill | -160/+232 |
| 2021-01-21 | Parse loop labels missing a leading `'` | Esteban Küber | -6/+48 |
| 2021-01-20 | Force token collection to run when parsing nonterminals | Aaron Hill | -1/+5 |
| 2021-01-13 | Set tokens on AST node in `collect_tokens` | Aaron Hill | -16/+4 |
| 2021-01-12 | Auto merge of #76580 - rokob:iss76011, r=estebank | bors | -4/+5 |
| 2020-12-31 | Consistently call editions "Rust 20xx" in messages. | Mara Bos | -1/+1 |
| 2020-12-31 | Add edition 2021. | Mara Bos | -2/+3 |
| 2020-12-25 | Rollup merge of #80160 - diondokter:move_async_fix, r=davidtwco | Dylan DPC | -4/+14 |
| 2020-12-21 | Implemented a compiler diagnostic for move async mistake | Dion Dokter | -4/+14 |
| 2020-12-19 | implement edition-specific :pat behavior for 2015/18 | mark | -4/+4 |
| 2020-12-03 | Gracefully handle confusing -> with : in function return type | mibac138 | -2/+3 |
| 2020-12-01 | Gracefully handle mistyping -> as => in function return type | mibac138 | -2/+2 |
| 2020-11-27 | Update error to reflect that integer literals can have float suffixes | Camelid | -2/+2 |
| 2020-11-14 | Add underscore expressions for destructuring assignments | Fabian Zaiser | -0/+3 |
| 2020-11-11 | Implement destructuring assignment for structs and slices | Fabian Zaiser | -2/+8 |
| 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 | -1/+13 |
| 2020-10-26 | Suggest expressions that look like const generic arguments should be enclosed... | varkor | -1/+13 |
| 2020-10-24 | Auto merge of #77255 - Aaron1011:feature/collect-attr-tokens, r=petrochenkov | bors | -1/+1 |
| 2020-10-22 | Make inline const work for half open ranges | Santiago Pastorino | -1/+1 |
| 2020-10-22 | Rename parse_const_expr to parse_const_block | Santiago Pastorino | -1/+1 |
| 2020-10-22 | Don't create an empty `LazyTokenStream` | Aaron Hill | -1/+1 |
| 2020-10-19 | Rewrite `collect_tokens` implementations to use a flattened buffer | Aaron Hill | -9/+10 |
| 2020-10-16 | Parse inline const expressions | Santiago Pastorino | -0/+2 |
| 2020-10-16 | Rollup merge of #77780 - calebcartwright:cast-expr-attr-span, r=oli-obk | Dylan DPC | -7/+17 |
| 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 |