| Age | Commit message (Expand) | Author | Lines |
| 2023-04-01 | fix clippy::iter_kv_map | Matthias Krüger | -3/+3 |
| 2023-03-13 | resolve: Remove `struct_field_names_untracked` | Vadim Petrochenkov | -2/+5 |
| 2023-03-13 | resolve: Centralize retrieval of items span and item name | Vadim Petrochenkov | -20/+13 |
| 2023-03-13 | resolve: Partially remove `item_attrs_untracked` | Vadim Petrochenkov | -8/+4 |
| 2023-03-02 | rustc_middle: Remove trait `DefIdTree` | Vadim Petrochenkov | -3/+3 |
| 2023-02-27 | diagnostics: avoid querying `associated_item` in the resolver | Michael Howell | -2/+6 |
| 2023-02-23 | Auto merge of #108324 - notriddle:notriddle/assoc-fn-method, r=compiler-error... | bors | -2/+2 |
| 2023-02-22 | resolve: Remove `ImportResolver` | Vadim Petrochenkov | -21/+19 |
| 2023-02-22 | diagnostics: if AssocFn has self argument, describe as method | Michael Howell | -2/+2 |
| 2023-02-21 | Use `source_span` query instead of passing the untracked vec around | Oli Scherer | -19/+12 |
| 2023-02-21 | Auto merge of #105462 - oli-obk:feeding_full, r=cjgillot,petrochenkov | bors | -70/+81 |
| 2023-02-20 | Stuff a TyCtxt into the Resolver | Oli Scherer | -3/+3 |
| 2023-02-20 | Make untracked.source_span lockable so that resolution can still write to it ... | Oli Scherer | -3/+3 |
| 2023-02-20 | Prepare crate loader for LockGuard | Oli Scherer | -1/+1 |
| 2023-02-20 | Prepare for adding a `TyCtxt` to `Resolver` | Oli Scherer | -66/+77 |
| 2023-02-19 | Make public API, docs algorithm-agnostic | Jacob Pratt | -1/+1 |
| 2023-02-14 | Separate the lifetime of the session and the arena in the resolver | Oli Scherer | -2/+2 |
| 2023-02-02 | Rename `rust_2015` => `is_rust_2015` | Maybe Waffle | -3/+5 |
| 2023-01-31 | Rollup merge of #107508 - WaffleLapkin:uneq'15, r=oli-obk | Guillaume Gomez | -1/+1 |
| 2023-01-31 | Don't do `.edition().rust_*()` | Maybe Waffle | -1/+1 |
| 2023-01-31 | Use `Edition` methods a bit more | Maybe Waffle | -1/+1 |
| 2023-01-30 | Replace enum `==`s with `match`es where it makes sense | Maybe Waffle | -6/+6 |
| 2023-01-22 | Auto merge of #107133 - pnkfelix:revert-pr-84022-for-issue-106337, r=Mark-Sim... | bors | -1/+1 |
| 2023-01-20 | Revert "Make PROC_MACRO_DERIVE_RESOLUTION_FALLBACK a hard error" | Felix S. Klock II | -1/+1 |
| 2023-01-20 | diagnostics: remvoe unnecessary use of `source_map.start_point` | Michael Howell | -1/+1 |
| 2023-01-20 | diagnostics: use `module_path` to check crate import instead of strings | Michael Howell | -20/+4 |
| 2023-01-20 | diagnostics: add `};` only if `{` was added too | Michael Howell | -5/+5 |
| 2023-01-20 | diagnostics: suggest changing `s@self::{macro}@::macro` for exported | Michael Howell | -1/+29 |
| 2023-01-17 | note -> help | Michael Goulet | -1/+1 |
| 2023-01-17 | Fix use suggestion span | Michael Goulet | -7/+9 |
| 2023-01-12 | Render missing generics suggestion verbosely | Michael Goulet | -1/+1 |
| 2023-01-11 | review comments: Tweak output | Esteban Küber | -1/+13 |
| 2023-01-09 | review comment | Michael Goulet | -6/+5 |
| 2022-12-27 | Dont clobber `as ..` rename in import suggestion | Michael Goulet | -1/+8 |
| 2022-12-27 | Note alternative import candidates in nested use tree | Michael Goulet | -2/+3 |
| 2022-12-09 | Fold `Definitions` into the untracked data | Oli Scherer | -1/+2 |
| 2022-12-09 | Move the untracked cstore and source_span into a struct | Oli Scherer | -3/+3 |
| 2022-12-09 | Generate crate loaders on the fly | Oli Scherer | -1/+1 |
| 2022-12-03 | fix #101749, use . instead of :: when accessing a method of an object | yukang | -4/+7 |
| 2022-11-18 | Auto merge of #104573 - matthiaskrgr:rollup-k36ybtp, r=matthiaskrgr | bors | -362/+182 |
| 2022-11-17 | Use `ThinVec` in `ast::Path`. | Nicholas Nethercote | -1/+2 |
| 2022-11-13 | migrating rustc_resolve to SessionDiagnostic. work in progress. start | Rajput, Rajat | -362/+182 |
| 2022-11-11 | Print all labels, even if they have no span. Fall back to main item's span. | Oli Scherer | -4/+6 |
| 2022-11-01 | Rollup merge of #103760 - petrochenkov:macimp, r=cjgillot | Dylan DPC | -15/+21 |
| 2022-11-01 | Rollup merge of #84022 - Aaron1011:remove-derive-res-fallback, r=petrochenkov | Dylan DPC | -1/+1 |
| 2022-10-31 | resolve: Turn the binding from `#[macro_export]` into a proper `Import` | Vadim Petrochenkov | -14/+20 |
| 2022-10-31 | resolve: Not all imports have their own `NodeId` | Vadim Petrochenkov | -1/+1 |
| 2022-10-25 | Add Span in TypoSuggestion and TypoCandidate | Byron Zhong | -14/+31 |
| 2022-10-24 | Make PROC_MACRO_DERIVE_RESOLUTION_FALLBACK a hard error | Aaron Hill | -1/+1 |
| 2022-10-16 | Account for hygiene when suggesting typos. | Camille GILLOT | -5/+8 |