| Age | Commit message (Expand) | Author | Lines |
| 2022-12-06 | Simplify attribute handling in rustc_ast_lowering | Gary Guo | -11/+5 |
| 2022-12-05 | Rollup merge of #105180 - nbdd0121:async_track_caller, r=compiler-errors | Matthias Krüger | -8/+20 |
| 2022-12-02 | Fix async track caller for assoc fn and trait impl fn | Gary Guo | -2/+2 |
| 2022-12-02 | Use proper HirId for async track_caller attribute check | Gary Guo | -6/+18 |
| 2022-12-01 | rustc_ast_lowering: Stop lowering imports into multiple items | Vadim Petrochenkov | -74/+10 |
| 2022-12-01 | rustc_hir: Change representation of import paths to support multiple resolutions | Vadim Petrochenkov | -11/+10 |
| 2022-11-24 | Record in HIR whether lifetime elision was succesful. | Camille GILLOT | -3/+3 |
| 2022-11-23 | Separate lifetime ident from resolution in HIR. | Camille GILLOT | -2/+1 |
| 2022-11-22 | `rustc_ast_lowering`: remove `ref` patterns | Maybe Waffle | -102/+79 |
| 2022-11-22 | Split `MacArgs` in two. | Nicholas Nethercote | -1/+1 |
| 2022-11-18 | Auto merge of #101562 - nnethercote:shrink-ast-Expr-harder, r=petrochenkov | bors | -2/+2 |
| 2022-11-18 | Auto merge of #104330 - CastilloDel:ast_lowering, r=cjgillot | bors | -5/+4 |
| 2022-11-17 | Auto merge of #104219 - bryangarza:async-track-caller-dup, r=eholk | bors | -1/+1 |
| 2022-11-17 | Use `ThinVec` in `ast::Path`. | Nicholas Nethercote | -2/+2 |
| 2022-11-15 | Update compiler/rustc_ast_lowering/src/item.rs | Daniel del Castillo | -7/+1 |
| 2022-11-15 | Change LoweringContext.children to Vec | CastilloDel | -6/+11 |
| 2022-11-13 | Store a LocalDefId in hir::Variant & hir::Field. | Camille GILLOT | -5/+8 |
| 2022-10-29 | Rename some `OwnerId` fields. | Nicholas Nethercote | -13/+13 |
| 2022-10-15 | Auto merge of #99292 - Aaron1011:stability-use-tree, r=cjgillot | bors | -2/+10 |
| 2022-10-11 | wip: trying to enable #[track_caller] on async fn | Eric Holk | -1/+1 |
| 2022-10-11 | rustc_hir: Less error-prone methods for accessing `PartialRes` resolution | Vadim Petrochenkov | -3/+6 |
| 2022-10-10 | Rename AssocItemKind::TyAlias to AssocItemKind::Type | Michael Goulet | -4/+4 |
| 2022-10-09 | ImplItemKind::TyAlias => ImplItemKind::Type | Michael Goulet | -2/+2 |
| 2022-09-27 | Do not overwrite binders for another HirId. | Camille GILLOT | -0/+2 |
| 2022-09-25 | Only lower async fn body if it actually has a body | Michael Goulet | -7/+6 |
| 2022-09-24 | separate definitions and `HIR` owners | Takayuki Maeda | -9/+14 |
| 2022-09-22 | Improve the help message for an invalid calling convention | khyperia | -4/+14 |
| 2022-09-14 | Pass ImplTraitContext as &, there's no need for that to be &mut | Santiago Pastorino | -48/+35 |
| 2022-09-09 | Address rebase issues, make async fn in trait work | Michael Goulet | -2/+8 |
| 2022-09-09 | Make async fn in traits work | Michael Goulet | -4/+10 |
| 2022-09-08 | Rollup merge of #101499 - spastorino:add-lowering-arena, r=oli-obk | Michael Goulet | -1/+3 |
| 2022-09-08 | Introduce lowering_arena to avoid creating AST nodes on the fly | Santiago Pastorino | -1/+3 |
| 2022-09-06 | Pass ImplTraitContext as &mut to avoid the need of ImplTraitContext::reborrow... | Santiago Pastorino | -43/+56 |
| 2022-09-06 | Auto merge of #101241 - camsteffen:refactor-binding-annotations, r=cjgillot | bors | -7/+4 |
| 2022-09-06 | Rollup merge of #101447 - cjgillot:no-remap-resolver, r=spastorino | Yuki Okushi | -0/+1 |
| 2022-09-05 | Auto merge of #101228 - nnethercote:simplify-hir-PathSegment, r=petrochenkov | bors | -2/+6 |
| 2022-09-05 | Remove generics_def_id_map from the resolver. | Camille GILLOT | -0/+1 |
| 2022-09-05 | Address review comments. | Nicholas Nethercote | -1/+1 |
| 2022-09-05 | Make `hir::PathSegment::hir_id` non-optional. | Nicholas Nethercote | -1/+2 |
| 2022-09-05 | Make `hir::PathSegment::res` non-optional. | Nicholas Nethercote | -2/+5 |
| 2022-09-02 | Refactor and re-use BindingAnnotation | Cameron Steffen | -7/+4 |
| 2022-08-29 | Use `&'hir Mod` everywhere. | Nicholas Nethercote | -4/+8 |
| 2022-08-29 | Use `&'hir Expr` everywhere. | Nicholas Nethercote | -1/+5 |
| 2022-08-22 | Migrate all span_err(...) in ast_lowering to SessionDiagnostic | Jean CASPAR | -6/+2 |
| 2022-08-22 | Migrate ast_lowering::lib and ast_lowering::item to SessionDiagnostic | Jean CASPAR | -5/+6 |
| 2022-08-16 | Remove `{ast,hir}::WhereEqPredicate::id`. | Nicholas Nethercote | -2/+1 |
| 2022-08-04 | Avoid explicitly handling res when is not needed | Santiago Pastorino | -4/+1 |
| 2022-08-04 | Remove captured_lifetimes and LifetimeCaptureContext and make create_lifetime... | Santiago Pastorino | -1/+0 |
| 2022-08-04 | Completely remove captures flag | Santiago Pastorino | -49/+20 |
| 2022-08-04 | Add captures flag to capture or not while lowering | Santiago Pastorino | -20/+49 |