| Age | Commit message (Expand) | Author | Lines |
| 2021-12-05 | Pretty print async block without redundant space | David Tolnay | -1/+0 |
| 2021-12-05 | Rollup merge of #91437 - dtolnay:emptybrace, r=nagisa | Matthias Krüger | -24/+44 |
| 2021-12-03 | Add initial AST and MIR support for unwinding from inline assembly | Amanieu d'Antras | -0/+3 |
| 2021-12-01 | Pretty print empty blocks as {} | David Tolnay | -24/+44 |
| 2021-11-28 | expand: Turn `ast::Crate` into a first class expansion target | Vadim Petrochenkov | -0/+9 |
| 2021-11-10 | Add support for specifying multiple clobber_abi in `asm!` | asquared31415 | -2/+2 |
| 2021-11-07 | Auto merge of #90668 - matthiaskrgr:clippy_nov7, r=jyn514 | bors | -5/+1 |
| 2021-11-07 | more clippy fixes | Matthias Krüger | -5/+1 |
| 2021-11-07 | ast: Fix naming conventions in AST structures | Vadim Petrochenkov | -17/+57 |
| 2021-10-17 | Some "parenthesis" and "parentheses" fixes | r00ster91 | -1/+1 |
| 2021-09-09 | Revert "Implement Anonymous{Struct, Union} in the AST" | Felix S. Klock II | -8/+0 |
| 2021-09-09 | Revert "Fix ast expanded printing for anonymous types" | Felix S. Klock II | -6/+10 |
| 2021-08-30 | Add let-else to AST | Cameron Steffen | -2/+8 |
| 2021-08-29 | Auto merge of #88262 - klensy:pprust-cow, r=nagisa | bors | -48/+50 |
| 2021-08-28 | Treat macros as HIR items | inquisitivecrystal | -18/+30 |
| 2021-08-25 | Convert some functions to return Cow<'static,str> instead of String to reduce... | klensy | -48/+50 |
| 2021-08-15 | Introduce hir::ExprKind::Let - Take 2 | Caio | -17/+10 |
| 2021-08-12 | Add support for clobber_abi to asm! | Amanieu d'Antras | -0/+10 |
| 2021-07-25 | use vec![] macro to create Vector with first item inside instead of pushing t... | Matthias Krüger | -2/+1 |
| 2021-07-08 | Rework SESSION_GLOBALS API to prevent overwriting it | Guillaume Gomez | -3/+3 |
| 2021-07-03 | rustc_ast_pretty: Don't print space after `$` | Noah Lev | -3/+3 |
| 2021-06-29 | Rollup merge of #86358 - klensy:pp-loop, r=Mark-Simulacrum | Yuki Okushi | -1/+0 |
| 2021-06-25 | Auto merge of #86599 - Amanieu:asm_raw, r=nagisa | bors | -0/+3 |
| 2021-06-24 | Add a "raw" option for asm! which ignores format string specifiers | Amanieu d'Antras | -0/+3 |
| 2021-06-23 | fix pretty print for `loop` in mir and hir | klensy | -1/+0 |
| 2021-06-22 | Auto merge of #85193 - pnkfelix:readd-support-for-inner-attrs-within-match, r... | bors | -0/+5 |
| 2021-06-17 | Use `AttrVec` for `Arm`, `FieldDef`, and `Variant` | Yuki Okushi | -1/+1 |
| 2021-06-10 | Add support for using qualified paths with structs in expression and pattern | Ryan Levick | -6/+19 |
| 2021-05-24 | Fix ast expanded printing for anonymous types | jedel1043 | -10/+6 |
| 2021-05-16 | Implement Anonymous{Struct, Union} in the AST | jedel1043 | -17/+33 |
| 2021-05-15 | Remove some unncessary spaces from pretty-printed tokenstream output | Aaron Hill | -1/+4 |
| 2021-05-13 | Add support for const operands and options to global_asm! | Amanieu d'Antras | -112/+113 |
| 2021-05-11 | Re-add support for parsing (and pretty-printing) inner-attributes within body... | Felix S. Klock II | -0/+5 |
| 2021-05-03 | parser: Remove support for inner attributes on non-block expressions | Vadim Petrochenkov | -26/+9 |
| 2021-04-06 | Use AnonConst for asm! constants | Amanieu d'Antras | -2/+2 |
| 2021-03-27 | Remove (lots of) dead code | Joshua Nelson | -28/+0 |
| 2021-03-23 | Update with comments | kadmin | -1/+0 |
| 2021-03-23 | Update with comments | kadmin | -3/+2 |
| 2021-03-23 | Some refactoring | varkor | -0/+1 |
| 2021-03-23 | Add has_default to GenericParamDefKind::Const | kadmin | -0/+3 |
| 2021-03-16 | ast: Reduce size of `ExprKind` by boxing fields of `ExprKind::Struct` | Vadim Petrochenkov | -2/+2 |
| 2021-03-16 | ast/hir: Rename field-related structures | Vadim Petrochenkov | -1/+1 |
| 2021-02-19 | Rollup merge of #82238 - petrochenkov:nocratemod, r=Aaron1011 | Dylan DPC | -28/+25 |
| 2021-02-18 | Rollup merge of #82066 - matthewjasper:trait-ref-fix, r=jackh726 | Dylan DPC | -0/+1 |
| 2021-02-18 | ast: Keep expansion status for out-of-line module items | Vadim Petrochenkov | -22/+20 |
| 2021-02-18 | ast: Stop using `Mod` in `Crate` | Vadim Petrochenkov | -9/+8 |
| 2021-02-16 | avoid full-slicing slices | Matthias Krüger | -3/+3 |
| 2021-02-13 | Fix pretty printing of generic associated type constraints | Matthew Jasper | -0/+1 |
| 2021-02-08 | Fix pretty printer macro_rules with semicolon. | Eric Huss | -0/+3 |
| 2021-02-01 | Box the biggest ast::ItemKind variants | Dániel Buga | -9/+15 |