| Age | Commit message (Expand) | Author | Lines |
| 2023-03-31 | Auto merge of #109010 - compiler-errors:rtn, r=eholk | bors | -6/+12 |
| 2023-03-28 | Fix mismatched punctuation in Debug impl of AttrId | David Tolnay | -1/+1 |
| 2023-03-28 | Add `(..)` syntax for RTN | Michael Goulet | -10/+12 |
| 2023-03-28 | Feature gate | Michael Goulet | -0/+4 |
| 2023-03-27 | Rollup merge of #109354 - Swatinem:rm-closureid, r=compiler-errors | Guillaume Gomez | -10/+5 |
| 2023-03-22 | rustc: Remove unused `Session` argument from some attribute functions | Vadim Petrochenkov | -0/+22 |
| 2023-03-19 | Remove the `NodeId` of `ast::ExprKind::Async` | Arpad Borsos | -10/+5 |
| 2023-03-17 | Rollup merge of #108958 - clubby789:unbox-the-hir, r=compiler-errors | Matthias Krüger | -3/+1 |
| 2023-03-16 | Support flattening/inlining format_args through & and (). | Mara Bos | -0/+9 |
| 2023-03-16 | Flatten nested format_args!() into one. | Mara Bos | -2/+2 |
| 2023-03-14 | Remove box expressions from HIR | clubby789 | -3/+1 |
| 2023-03-12 | Remove `box_syntax` from AST and use in tools | clubby789 | -8/+1 |
| 2023-03-08 | Rename `MapInPlace` as `FlatMapInPlace`. | Nicholas Nethercote | -1/+1 |
| 2023-03-03 | Match unmatched backticks in comments in compiler/ | est31 | -1/+1 |
| 2023-02-21 | Use `ThinVec` in a few more AST types. | Nicholas Nethercote | -6/+6 |
| 2023-02-21 | Use `ThinVec` in `ast::ExprKind::Match`. | Nicholas Nethercote | -1/+1 |
| 2023-02-21 | Use `ThinVec` in `ast::PatKind::Struct`. | Nicholas Nethercote | -3/+3 |
| 2023-02-21 | Use `ThinVec` in `ast::AngleBracketedArgs`. | Nicholas Nethercote | -2/+2 |
| 2023-02-21 | Use `ThinVec` in `ast::Block`. | Nicholas Nethercote | -2/+2 |
| 2023-02-21 | Use `ThinVec` in various AST types. | Nicholas Nethercote | -33/+38 |
| 2023-02-21 | Use `ThinVec` in `ast::Impl` and related types. | Nicholas Nethercote | -4/+4 |
| 2023-02-21 | Use `ThinVec` in `ast::WhereClause`. | Nicholas Nethercote | -9/+20 |
| 2023-02-21 | Use `ThinVec` in `ast::Generics` and related types. | Nicholas Nethercote | -17/+15 |
| 2023-02-21 | Upgrade `thin-vec` from 0.2.9 to 0.2.12. | Nicholas Nethercote | -1/+1 |
| 2023-02-11 | rustc_ast: Merge impls and reorder methods for attributes and meta items | Vadim Petrochenkov | -311/+307 |
| 2023-02-03 | Rollup merge of #107544 - nnethercote:improve-TokenCursor, r=petrochenkov | Dylan DPC | -15/+27 |
| 2023-02-03 | Auto merge of #107569 - petrochenkov:optattr, r=nnethercote | bors | -23/+50 |
| 2023-02-03 | Rename `Cursor`/`CursorRef` as `TokenTreeCursor`/`RefTokenTreeCursor`. | Nicholas Nethercote | -14/+16 |
| 2023-02-03 | Make clear that `TokenTree::Token` shouldn't contain a delimiter. | Nicholas Nethercote | -1/+2 |
| 2023-02-03 | Improve doc comment desugaring. | Nicholas Nethercote | -0/+9 |
| 2023-02-02 | Revert "Teach parser to understand fake anonymous enum syntax" and related co... | Michael Goulet | -2/+2 |
| 2023-02-01 | ast: Optimize list and value extraction primitives for attributes | Vadim Petrochenkov | -23/+50 |
| 2023-01-30 | Replace enum `==`s with `match`es where it makes sense | Maybe Waffle | -16/+17 |
| 2023-01-28 | Rollup merge of #107194 - xfix:remove-slice-internals-dependency-in-rustc-ast... | Yuki Okushi | -2/+2 |
| 2023-01-27 | Replace format flags u32 by enums and bools. | Mara Bos | -2/+24 |
| 2023-01-26 | Auto merge of #106745 - m-ou-se:format-args-ast, r=oli-obk | bors | -1/+287 |
| 2023-01-26 | Rollup merge of #106960 - estebank:parse-anon-enums, r=cjgillot | Matthias Krüger | -2/+2 |
| 2023-01-24 | Work around issue 106930. | Mara Bos | -0/+6 |
| 2023-01-23 | review comment: Remove AST AnonTy | Esteban Küber | -5/+2 |
| 2023-01-22 | Remove dependency on slice_internals feature in rustc_ast | Konrad Borowski | -2/+2 |
| 2023-01-17 | Rollup merge of #104505 - WaffleLapkin:no-double-spaces-in-comments, r=jackh726 | Matthias Krüger | -1/+1 |
| 2023-01-17 | Remove double spaces after dots in comments | Maybe Waffle | -1/+1 |
| 2023-01-17 | Teach parser to understand fake anonymous enum syntax | Esteban Küber | -3/+6 |
| 2023-01-15 | make error emitted on `impl &Trait` nicer | Ezra Shaw | -1/+2 |
| 2023-01-12 | parse const closures | Deadbeef | -0/+4 |
| 2023-01-12 | Expand format_args!() in rust_ast_lowering. | Mara Bos | -1/+281 |
| 2023-01-05 | Fix `uninlined_format_args` for some compiler crates | nils | -20/+19 |
| 2023-01-04 | Rollup merge of #106361 - clubby789:int-literal-too-large, r=estebank | Matthias Krüger | -2/+2 |
| 2023-01-02 | Rollup merge of #106383 - Manishearth:ast-docs, r=compiler-errors | Michael Goulet | -0/+15 |
| 2023-01-02 | Document rustc_ast::FnHeader fields | Manish Goregaokar | -0/+4 |