| Age | Commit message (Expand) | Author | Lines |
| 2019-12-02 | syntax: Remove redundant span from `ast::Mac` | Vadim Petrochenkov | -8/+0 |
| 2019-11-14 | TAIT: adjust save-analysis | Mazdak Farrokhzad | -38/+0 |
| 2019-11-08 | ast::ItemKind::Fn: use ast::FnSig | Mazdak Farrokhzad | -2/+2 |
| 2019-11-08 | ast::MethodSig -> ast::FnSig | Mazdak Farrokhzad | -1/+1 |
| 2019-11-07 | syntax::parser::token -> syntax::token | Mazdak Farrokhzad | -1/+1 |
| 2019-10-29 | save-analysis: Account for async desugaring in async fn return types | Igor Matuszewski | -4/+23 |
| 2019-10-17 | save-analysis: Nest tables when processing impl items | Igor Matuszewski | -9/+12 |
| 2019-10-13 | Nest typeck tables when processing struct member types | Igor Matuszewski | -5/+7 |
| 2019-10-13 | Use empty typeck tables when nesting on items without those | Igor Matuszewski | -8/+10 |
| 2019-09-26 | Rename `ForeignItem.node` to `ForeignItem.kind` | varkor | -1/+1 |
| 2019-09-26 | Rename `Item.node` to `Item.kind` | varkor | -3/+3 |
| 2019-09-26 | Rename `Ty.node` to `Ty.kind` | varkor | -2/+2 |
| 2019-09-26 | Rename `TraitItem.node` to `TraitItem.kind` | varkor | -1/+1 |
| 2019-09-26 | Rename `ImplItem.node` to `ImplItem.kind` | varkor | -1/+1 |
| 2019-09-26 | Rename `Pat.node` to `Pat.kind` | varkor | -1/+1 |
| 2019-09-26 | Rename `Expr.node` to `Expr.kind` | varkor | -3/+3 |
| 2019-09-15 | save-analysis: Process bounds in impl trait only in argument position | Igor Matuszewski | -1/+18 |
| 2019-09-15 | save-analysis: Deduplicate lookup_{d,r}ef_id functions | Igor Matuszewski | -7/+4 |
| 2019-09-13 | save-analysis: Visit bounds in opaque types | Igor Matuszewski | -2/+3 |
| 2019-09-13 | save-analysis: Use process_bounds when processing opaque impl item type | Igor Matuszewski | -5/+1 |
| 2019-09-13 | save-analysis: Nest typeck tables when processing functions/methods | Igor Matuszewski | -42/+38 |
| 2019-09-05 | or-patterns: adjust save_analysis wrt. `process_var_decl{_multi}`. | Mazdak Farrokhzad | -83/+14 |
| 2019-08-27 | Cleanup: Consistently use `Param` instead of `Arg` #62426 | Kevin Per | -1/+1 |
| 2019-08-15 | Remove `Spanned` from `{ast,hir}::FieldPat` | Vadim Petrochenkov | -2/+2 |
| 2019-08-14 | Merge Variant and Variant_ | Caio | -11/+11 |
| 2019-08-04 | Rename `ItemImplKind::Type` to `ItemImplKind::TyAlias` | varkor | -1/+1 |
| 2019-08-04 | Rename `ItemKind::Ty` to `ItemKind::TyAlias` | varkor | -1/+1 |
| 2019-08-02 | Replace "existential" by "opaque" | varkor | -2/+2 |
| 2019-07-27 | Simplify SaveHandler trait | Mark Rousskov | -3/+3 |
| 2019-07-27 | Store dumper directly in Visitor | Mark Rousskov | -7/+11 |
| 2019-07-27 | Remove unused scope tracking | Mark Rousskov | -19/+6 |
| 2019-07-25 | Rename JsonDumper to Dumper | Mark Rousskov | -4/+4 |
| 2019-07-25 | Simplify save-analysis JSON dumper interface | Mark Rousskov | -9/+9 |
| 2019-07-04 | rename hir::map::opt_local_def_id* | ljedrz | -2/+2 |
| 2019-07-04 | rename hir::map::local_def_id to local_def_id_from_node_id | ljedrz | -11/+11 |
| 2019-06-24 | Auto merge of #62075 - Centril:guardless-match-arms, r=petrochenkov | bors | -3/+2 |
| 2019-06-23 | Remove redundant syntax::ast::Guard. | Mazdak Farrokhzad | -3/+2 |
| 2019-06-23 | let_chains: Remove ast::ExprKind::{IfLet, WhileLet} from visitors and introdu... | Mazdak Farrokhzad | -10/+2 |
| 2019-06-21 | revert the NodeId to HirId parameter change to get_path_res | ljedrz | -7/+5 |
| 2019-06-20 | remove hir::map::get | ljedrz | -5/+7 |
| 2019-06-20 | rename hir::map::expect_expr_by_hir_id to expect_expr | ljedrz | -1/+1 |
| 2019-06-20 | remove uses of the NodeId hir::map::expr | ljedrz | -1/+2 |
| 2019-06-18 | rustc: remove 'x: 'y bounds (except from comments/strings). | Eduard-Mihai Burtescu | -3/+3 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-05-26 | Rename "Associated*" to "Assoc*" | Andrew Xu | -2/+2 |
| 2019-05-20 | Fixed nits raised in review. | Alexander Regueiro | -1/+1 |
| 2019-05-20 | Ban multi-trait objects via trait aliases. | Alexander Regueiro | -3/+3 |
| 2019-05-08 | save-analysis: Fix ICE when processing associated constant | Igor Matuszewski | -4/+6 |