| Age | Commit message (Expand) | Author | Lines |
| 2022-01-03 | Rollup merge of #92402 - pr2502:while-let-typo, r=oli-obk | Matthias Krüger | -0/+2 |
| 2021-12-29 | Suggest while let x = y when encountering while x = y | ametisf | -0/+2 |
| 2021-12-27 | Visit patterns' literal expressions before binding new idents | Michael Goulet | -1/+4 |
| 2021-11-25 | Do not visit attributes in `LateResolutionVisitor`. | Camille GILLOT | -0/+4 |
| 2021-11-07 | ast: Fix naming conventions in AST structures | Vadim Petrochenkov | -17/+14 |
| 2021-10-21 | Revert "Auto merge of #89100 - petrochenkov:localbind, r=cjgillot" | Mark Rousskov | -87/+74 |
| 2021-10-20 | Auto merge of #89100 - petrochenkov:localbind, r=cjgillot | bors | -74/+87 |
| 2021-10-18 | resolve: Use `NameBinding` for local variables and generic parameters | Vadim Petrochenkov | -74/+87 |
| 2021-10-09 | Store lowering outputs per owner. | Camille GILLOT | -3/+3 |
| 2021-09-29 | Suggest similarly named assoc items in trait impls | Hirochika Matsumoto | -8/+20 |
| 2021-09-24 | resolve: Refactor obtaining `Module` from its `DefId` | Vadim Petrochenkov | -1/+1 |
| 2021-09-24 | resolve: Use a single common map for local and foreign modules | Vadim Petrochenkov | -3/+1 |
| 2021-09-24 | resolve: Do not cache nearest parent mod in `ModuleData` | Vadim Petrochenkov | -2/+2 |
| 2021-09-06 | Move `confused_type_with_std_module` to `ResolverOutputs` | Aaron Hill | -3/+2 |
| 2021-09-04 | Auto merge of #88598 - estebank:type-ascription-can-die-in-a-fire, r=wesleywiser | bors | -0/+16 |
| 2021-09-03 | Detect bare blocks with type ascription that were meant to be a `struct` literal | Esteban Kuber | -0/+16 |
| 2021-09-01 | Compute all_traits_impls during resolution. | Camille GILLOT | -1/+8 |
| 2021-09-01 | Compute item_generics_num_lifetimes during resolution. | Camille GILLOT | -0/+15 |
| 2021-08-30 | Add let-else to AST | Cameron Steffen | -2/+9 |
| 2021-08-22 | Stop tracking namespce in used_imports. | Mara Bos | -2/+2 |
| 2021-08-15 | Introduce hir::ExprKind::Let - Take 2 | Caio | -1/+1 |
| 2021-06-10 | Add support for using qualified paths with structs in expression and pattern | Ryan Levick | -5/+5 |
| 2021-06-01 | Make trait_map an Option. | Camille GILLOT | -3/+3 |
| 2021-05-19 | Disallow shadowing const parameters | Fabian Wolff | -5/+25 |
| 2021-05-13 | Add support for const operands and options to global_asm! | Amanieu d'Antras | -1/+5 |
| 2021-04-21 | fix name resolution for param defaults | lcnr | -29/+40 |
| 2021-04-07 | Added additional comments and minor edits | K | -1/+1 |
| 2021-04-01 | Fixed diagnostic and added test for issue 81508 | Kevin Jiang | -1/+1 |
| 2021-03-27 | lazily calls some fns | klensy | -1/+1 |
| 2021-03-23 | Some refactoring | varkor | -14/+14 |
| 2021-03-23 | Add has_default to GenericParamDefKind::Const | kadmin | -0/+1 |
| 2021-03-16 | ast: Reduce size of `ExprKind` by boxing fields of `ExprKind::Struct` | Vadim Petrochenkov | -2/+2 |
| 2021-02-25 | Address review comments | Amanieu d'Antras | -37/+3 |
| 2021-02-24 | Properly reject non-const arguments | Amanieu d'Antras | -2/+50 |
| 2021-02-19 | Rollup merge of #82259 - osa1:issue82156, r=petrochenkov | Dylan DPC | -6/+5 |
| 2021-02-18 | Fix popping singleton paths in when generating E0433 | Ömer Sinan Ağacan | -6/+5 |
| 2021-02-18 | ast: Keep expansion status for out-of-line module items | Vadim Petrochenkov | -1/+1 |
| 2021-02-06 | Rollup merge of #81680 - camsteffen:primty, r=oli-obk | Jonas Schievink | -8/+4 |
| 2021-02-03 | Refactor out PrimitiveTypeTable | Cameron Steffen | -8/+4 |
| 2021-02-01 | Box the biggest ast::ItemKind variants | Dániel Buga | -10/+16 |
| 2021-01-21 | Fix clippy and comment | Esteban Küber | -1/+1 |
| 2021-01-21 | Suggest `'a` when given `a` only when appropriate | Esteban Küber | -0/+6 |
| 2021-01-21 | Rollup merge of #81046 - rylev:unknown-external-crate, r=estebank | Yuki Okushi | -0/+7 |
| 2021-01-18 | Improve unknown external crate error | Ryan Levick | -0/+7 |
| 2021-01-17 | Rollup merge of #80765 - petrochenkov:traitsinscope, r=matthewjasper | Mara Bos | -62/+10 |
| 2021-01-14 | Use Option::map_or instead of `.map(..).unwrap_or(..)` | LingMan | -1/+1 |
| 2021-01-12 | Replace a simple `if let` with the `matches` macro | LingMan | -2/+1 |
| 2021-01-11 | resolve: Simplify collection of traits in scope | Vadim Petrochenkov | -62/+10 |
| 2021-01-10 | Auto merge of #80782 - petrochenkov:viscopes, r=matthewjasper | bors | -35/+47 |
| 2021-01-08 | Rollup merge of #80012 - sasurau4:feature/point-constant-identifier-E0435, r=... | Yuki Okushi | -10/+28 |