| Age | Commit message (Expand) | Author | Lines |
| 2020-08-30 | mv compiler to compiler/ | mark | -3328/+0 |
| 2020-08-30 | resolve: Don't speculatively load crates if this is a speculative resolution | Joshua Nelson | -3/+7 |
| 2020-08-23 | resolve: Add comments to `traits_in_scope` | Joshua Nelson | -0/+3 |
| 2020-08-22 | resolve: Add public entrypoint `traits_in_module` | Joshua Nelson | -0/+25 |
| 2020-08-22 | resolve: Split `ensure_traits` into a separate function | Joshua Nelson | -16/+25 |
| 2020-08-22 | resolve: Move `get_traits_in_module_containing_item` to Resolver | Joshua Nelson | -1/+78 |
| 2020-08-17 | Auto merge of #75120 - JulianKnodt:rm_reps, r=oli-obk | bors | -3/+3 |
| 2020-08-17 | rust_ast::ast => rustc_ast | Ujjwal Sharma | -3/+3 |
| 2020-08-16 | hir: introduce `QPath::LangItem` | David Wood | -31/+0 |
| 2020-08-15 | replaced log with tracing | Gurpreet Singh | -1/+1 |
| 2020-08-08 | Auto merge of #74932 - nnethercote:rm-ast-session-globals, r=petrochenkov | bors | -4/+3 |
| 2020-08-08 | Eliminate the `SessionGlobals` from `librustc_ast`. | Nicholas Nethercote | -4/+3 |
| 2020-08-05 | forbid generic params in complex consts | Bastian Kauschke | -3/+29 |
| 2020-07-27 | forbid generic params inside of anon consts in ty defaults | Bastian Kauschke | -6/+53 |
| 2020-07-27 | name `ParamInTyOfConstArg` | Bastian Kauschke | -4/+4 |
| 2020-07-26 | Hygiene serialization implementation | Aaron Hill | -3/+33 |
| 2020-07-18 | rustc_metadata: Make crate loading fully speculative | Vadim Petrochenkov | -1/+1 |
| 2020-07-16 | Use the scope of the imported variable for resolution, not the current scope | Joshua Nelson | -2/+2 |
| 2020-07-16 | Use get_module instead of `module_map` for `resolve_str_path_error` | Joshua Nelson | -1/+1 |
| 2020-07-16 | update help message | Bastian Kauschke | -4/+10 |
| 2020-07-16 | forbid generic params in the type of const params | Bastian Kauschke | -1/+27 |
| 2020-07-15 | Remove lots of `Symbol::as_str()` calls. | Nicholas Nethercote | -5/+5 |
| 2020-07-09 | Rollup merge of #74150 - tamird:blocklist, r=nikomatsakis | Manish Goregaokar | -2/+2 |
| 2020-07-08 | Avoid "blacklist" | Tamir Duberstein | -2/+2 |
| 2020-07-05 | Use for<'tcx> fn pointers in Providers, instead of having Providers<'tcx>. | Eduard-Mihai Burtescu | -1/+1 |
| 2020-07-02 | resolve: disallow label use through closure/async | David Wood | -2/+6 |
| 2020-06-27 | Rename two `Resolver` traits | Vadim Petrochenkov | -1/+1 |
| 2020-06-24 | Rollup merge of #73652 - da-x:add-reexported-to-use-suggestions, r=petrochenkov | Dylan DPC | -0/+7 |
| 2020-06-23 | Add re-exports to use suggestions | Dan Aloni | -0/+7 |
| 2020-06-21 | Move `next_disambiguator` to `Resolver` | marmeladema | -1/+13 |
| 2020-06-21 | Always create a root definition when creating a new `Definitions` object. | marmeladema | -5/+5 |
| 2020-06-21 | Move remaining `NodeId` APIs from `Definitions` to `Resolver` | marmeladema | -24/+93 |
| 2020-06-20 | Move `trait_map` into `hir::Crate` | marmeladema | -11/+4 |
| 2020-06-19 | Rollup merge of #73357 - petrochenkov:tmap, r=davidtwco | Manish Goregaokar | -21/+4 |
| 2020-06-18 | Rollup merge of #73320 - estebank:type-param-sugg-more, r=davidtwco | Manish Goregaokar | -6/+8 |
| 2020-06-17 | review comments | Esteban Küber | -4/+4 |
| 2020-06-15 | Use `LocalDefId` for import IDs in trait map | Vadim Petrochenkov | -21/+4 |
| 2020-06-13 | Make new type param suggestion more targetted | Esteban Küber | -6/+8 |
| 2020-06-10 | Rollup merge of #72789 - petrochenkov:impcand, r=davidtwco | Dylan DPC | -1/+2 |
| 2020-06-07 | Use `LocalDefId` directly in `Resolver::export_map` and `module_exports` query | marmeladema | -25/+3 |
| 2020-06-06 | Auto merge of #72927 - petrochenkov:rustc, r=Mark-Simulacrum | bors | -6/+7 |
| 2020-06-02 | Improve E0433, so that it suggests missing imports | Patryk Wychowaniec | -7/+7 |
| 2020-06-02 | Rename the crates in source code | Vadim Petrochenkov | -6/+7 |
| 2020-05-30 | resolve: Pass parent scope to the function providing import suggestions | Vadim Petrochenkov | -1/+2 |
| 2020-05-30 | Use `LocalDefId` instead of `NodeId` in `resolve_str_path_error` | marmeladema | -5/+2 |
| 2020-05-29 | Remove remaining calls to `as_local_node_id` | marmeladema | -15/+25 |
| 2020-05-27 | Store `LocalDefId` directly in `rustc_resolve::Resolver` where possible | marmeladema | -47/+16 |
| 2020-05-24 | Rollup merge of #72402 - marmeladema:resolver-outputs-def-id, r=ecstatic-morse | Ralf Jung | -13/+101 |
| 2020-05-22 | Remove `macro_defs` map | Aaron Hill | -8/+3 |
| 2020-05-21 | Replace unecessary calls to `.clone()` by argument binding pattern for `Copy`... | marmeladema | -11/+11 |