| Age | Commit message (Expand) | Author | Lines |
| 2019-10-13 | Use empty typeck tables when nesting on items without those | Igor Matuszewski | -0/+4 |
| 2019-10-05 | Rollup merge of #64708 - SimonSapin:option-deref, r=Centril | Tyler Mandry | -1/+0 |
| 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 `Pat.node` to `Pat.kind` | varkor | -5/+5 |
| 2019-09-26 | Rename `Expr.node` to `Expr.kind` | varkor | -3/+3 |
| 2019-09-25 | Rename `sty` to `kind` | varkor | -3/+3 |
| 2019-09-23 | Stabilize Option::deref and Option::deref_mut | Simon Sapin | -1/+0 |
| 2019-09-15 | save-analysis: Deduplicate lookup_{d,r}ef_id functions | Igor Matuszewski | -4/+4 |
| 2019-09-05 | or-patterns: adjust save_analysis wrt. `process_var_decl{_multi}`. | Mazdak Farrokhzad | -0/+1 |
| 2019-08-27 | Cleanup: Consistently use `Param` instead of `Arg` #62426 | Kevin Per | -2/+2 |
| 2019-08-15 | syntax_pos: Introduce a helper for checking whether a span comes from expansion | Vadim Petrochenkov | -1/+1 |
| 2019-08-14 | Merge Variant and Variant_ | Caio | -2/+2 |
| 2019-08-02 | Replace "existential" by "opaque" | varkor | -2/+2 |
| 2019-07-30 | Auto merge of #62766 - alexcrichton:stabilize-pipelined-compilation, r=oli-obk | bors | -1/+1 |
| 2019-07-29 | Rollup merge of #63055 - Mark-Simulacrum:save-analysis-clean-2, r=Xanewok | Mazdak Farrokhzad | -45/+23 |
| 2019-07-28 | Deny `unused_lifetimes` through rustbuild | Vadim Petrochenkov | -2/+0 |
| 2019-07-28 | Remove lint annotations in specific crates that are already enforced by rustb... | Vadim Petrochenkov | -2/+0 |
| 2019-07-27 | Simplify SaveHandler trait | Mark Rousskov | -33/+21 |
| 2019-07-27 | Store dumper directly in Visitor | Mark Rousskov | -16/+6 |
| 2019-07-26 | rustc: Stabilize options for pipelined compilation | Alex Crichton | -1/+1 |
| 2019-07-25 | Rename JsonDumper to Dumper | Mark Rousskov | -6/+6 |
| 2019-07-25 | Simplify save-analysis JSON dumper interface | Mark Rousskov | -10/+14 |
| 2019-07-23 | normalize use of backticks for compiler messages in remaining modules | Samy Kacimi | -4/+4 |
| 2019-07-11 | hygiene: Reuse `MacroKind` in `ExpnKind` | Vadim Petrochenkov | -1/+2 |
| 2019-07-11 | syntax: Make def-site span mandatory in ExpnInfo/MacroBacktrace/DiagnosticSpa... | Vadim Petrochenkov | -3/+2 |
| 2019-07-11 | Rename some things in `syntax_pos/hygiene` | Vadim Petrochenkov | -3/+2 |
| 2019-07-05 | Rollup merge of #62168 - ljedrz:the_culmination_of_hiridification, r=Zoxc | Mazdak Farrokhzad | -11/+11 |
| 2019-07-05 | Rollup merge of #61545 - flip1995:internal_lints, r=oli-obk | Mazdak Farrokhzad | -1/+0 |
| 2019-07-04 | rename hir::map::opt_local_def_id* | ljedrz | -1/+1 |
| 2019-07-04 | rename hir::map::local_def_id to local_def_id_from_node_id | ljedrz | -10/+10 |
| 2019-06-26 | save-analysis: use buffered writes | Jeremy Fitzhardinge | -3/+4 |
| 2019-06-24 | Enable internal lints in bootstrap | flip1995 | -1/+0 |
| 2019-06-24 | HIR: rename find_by_hir_id to find | ljedrz | -3/+3 |
| 2019-06-24 | HIR: remove the NodeId find | ljedrz | -3/+8 |
| 2019-06-24 | HIR: rename get_parent_node_by_hir_id to get_parent_node | ljedrz | -1/+1 |
| 2019-06-24 | HIR: remove the NodeId get_parent_node, HirIdify is_argument | ljedrz | -1/+4 |
| 2019-06-21 | revert the NodeId to HirId parameter change to get_path_res | ljedrz | -6/+5 |
| 2019-06-20 | rename hir::map::get_by_hir_id to get | ljedrz | -1/+1 |
| 2019-06-20 | remove hir::map::get | ljedrz | -7/+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: reintroduce lifetime bounds where necessary. | Eduard-Mihai Burtescu | -2/+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 | -2/+2 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-11 | Add deny(unused_lifetimes) to all the crates that have deny(internal). | Eduard-Mihai Burtescu | -0/+1 |
| 2019-06-10 | Emit artifact notifications for save-analysis output | Jeremy Fitzhardinge | -8/+18 |