| Age | Commit message (Expand) | Author | Lines |
| 2020-06-15 | Auto merge of #72080 - matthewjasper:uniform-impl-trait, r=nikomatsakis | bors | -59/+34 |
| 2020-06-12 | Rollup merge of #73178 - petrochenkov:explint, r=varkor | Dylan DPC | -4/+14 |
| 2020-06-11 | Rollup merge of #73182 - Aaron1011:feature/call-fn-span, r=matthewjasper | Dylan DPC | -1/+1 |
| 2020-06-11 | Document some opaque types code | Matthew Jasper | -2/+2 |
| 2020-06-11 | Rename `TyKind::Def` to `OpaqueDef` | Matthew Jasper | -4/+4 |
| 2020-06-11 | Forbid lifetime elision in let position impl Trait | Matthew Jasper | -1/+12 |
| 2020-06-11 | Remove associated opaque types | Matthew Jasper | -39/+1 |
| 2020-06-11 | Stop special casing top level TAIT | Matthew Jasper | -19/+21 |
| 2020-06-10 | Track span of function in method calls, and use this in #[track_caller] | Aaron Hill | -1/+1 |
| 2020-06-10 | Rollup merge of #73023 - ayushmishra2005:remove_noisy_suggestion, r=davidtwco | Dylan DPC | -1/+3 |
| 2020-06-10 | Rollup merge of #72789 - petrochenkov:impcand, r=davidtwco | Dylan DPC | -4/+14 |
| 2020-06-09 | expand: Give reasonable NodeIds to lints associated with macro expansions | Vadim Petrochenkov | -4/+14 |
| 2020-06-09 | Remove noisy suggestion of hash_map #72642 | Ayush Kumar Mishra | -1/+3 |
| 2020-06-08 | Rollup merge of #73090 - marmeladema:resolver-outputs-local-def-id, r=petroch... | Dylan DPC | -28/+8 |
| 2020-06-08 | Rollup merge of #73075 - jyn514:comment-module, r=Dylan-DPC | Ralf Jung | -0/+6 |
| 2020-06-07 | Use `LocalDefId` directly in `Resolver::export_map` and `module_exports` query | marmeladema | -28/+8 |
| 2020-06-06 | Add comments to `Resolve::get_module` | Joshua Nelson | -0/+6 |
| 2020-06-06 | Auto merge of #72927 - petrochenkov:rustc, r=Mark-Simulacrum | bors | -7/+8 |
| 2020-06-05 | Auto merge of #72982 - tblah:riscv-ui-tests, r=estebank | bors | -1/+2 |
| 2020-06-04 | resolve: Sort E0408 errors by Symbol str | Tom Eccles | -1/+2 |
| 2020-06-03 | Fix a typo in `late.rs` | Patryk Wychowaniec | -1/+1 |
| 2020-06-02 | Improve E0433, so that it suggests missing imports | Patryk Wychowaniec | -41/+130 |
| 2020-06-02 | Rename the crates in source code | Vadim Petrochenkov | -7/+8 |
| 2020-06-02 | Make things build again | Vadim Petrochenkov | -1/+1 |
| 2020-05-30 | resolve: Do not suggest imports from the same module in which we are resolving | Vadim Petrochenkov | -2/+6 |
| 2020-05-30 | resolve: Pass parent scope to the function providing import suggestions | Vadim Petrochenkov | -3/+9 |
| 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 | -28/+43 |
| 2020-05-27 | Store `LocalDefId` directly in `rustc_resolve::Resolver` where possible | marmeladema | -57/+30 |
| 2020-05-25 | Rollup merge of #72308 - Aaron1011:fix/hygiene-error-message, r=matthewjasper | Dylan DPC | -4/+12 |
| 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 | -14/+14 |
| 2020-05-21 | Replace unecessary calls to `.clone()` by argument binding pattern for `Copy`... | marmeladema | -11/+11 |
| 2020-05-21 | Use `collect()` instead of manually inserting elements into maps | marmeladema | -46/+42 |
| 2020-05-21 | Use `DefId` in `ResolverOutputs::extern_crate_map` instead of `NodeId` | marmeladema | -2/+15 |
| 2020-05-21 | Use `DefId` in `ResolverOutputs::glob_map` instead of `NodeId` | marmeladema | -2/+11 |
| 2020-05-21 | Use `DefId` in `ResolverOutputs::maybe_unused_extern_crates` instead of `NodeId` | marmeladema | -2/+11 |
| 2020-05-21 | Use `LocalDefId` in `ResolverOutputs::maybe_unused_trait_imports` instead of ... | marmeladema | -2/+11 |
| 2020-05-21 | Use `HirId` in `ResolverOutputs::export_map` instead of `NodeId` | marmeladema | -2/+25 |
| 2020-05-21 | Use `HirId` in value of `ResolverOutputs::trait_map` instead of `NodeId` | marmeladema | -3/+17 |
| 2020-05-21 | Use `HirId` as key for `ResolverOutputs::trait_map` instead of `NodeId` | marmeladema | -2/+17 |
| 2020-05-19 | Alter wording for `use foo::self` help | mibac138 | -2/+2 |
| 2020-05-19 | Add error recovery for `use foo::self` | mibac138 | -1/+9 |
| 2020-05-19 | Suggest fixes for `use foo::self` | mibac138 | -10/+52 |
| 2020-05-17 | Emit a better diagnostic when function actually has a 'self' parameter | Aaron Hill | -4/+12 |
| 2020-05-08 | Remove ast::{Ident, Name} reexports. | Camille GILLOT | -60/+50 |
| 2020-05-07 | Rollup merge of #71903 - euclio:reword-possible-better, r=petrochenkov | Dylan DPC | -9/+15 |
| 2020-05-07 | Rollup merge of #71783 - estebank:async-block-2015, r=tmandry | Dylan DPC | -1/+5 |
| 2020-05-07 | reword "possible candidate" import suggestion | Andy Russell | -9/+15 |
| 2020-05-05 | Detect errors caused by `async` block in 2015 edition | Esteban Küber | -1/+5 |