| Age | Commit message (Expand) | Author | Lines |
| 2019-05-18 | Declare DefIndex with the newtype_index macro | Fabian Drinck | -1/+1 |
| 2019-05-13 | Remove the equality operation between `Symbol` and strings. | Nicholas Nethercote | -6/+7 |
| 2019-05-13 | Pass a `Symbol` to `check_name`, `emit_feature_err`, and related functions. | Nicholas Nethercote | -7/+8 |
| 2019-05-09 | cleanup: Remove `DefIndexAddressSpace` | Vadim Petrochenkov | -4/+2 |
| 2019-05-04 | Rename `Res::kind_name` to `Res::descr` for consistency | Vadim Petrochenkov | -2/+2 |
| 2019-05-03 | rustc: rename hir::def::Def to Res (short for "resolution"). | Eduard-Mihai Burtescu | -67/+67 |
| 2019-05-03 | rustc: use DefKind instead of Def, where possible. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-05-03 | rustc: factor most DefId-containing variants out of Def and into DefKind. | Eduard-Mihai Burtescu | -8/+8 |
| 2019-04-15 | Preallocate BUILTIN_ATTRIBUTES symbols and use a hash map instead of looping | John Kåre Alsaker | -3/+2 |
| 2019-04-14 | HirIdify hir::Def | ljedrz | -1/+3 |
| 2019-03-12 | resolve: Simplify import resolution for mixed 2015/2018 edition mode | Vadim Petrochenkov | -47/+3 |
| 2019-03-09 | use structured suggestions for E0432 | Andy Russell | -7/+10 |
| 2019-02-13 | Rollup merge of #58273 - taiki-e:rename-dependency, r=matthewjasper | Mazdak Farrokhzad | -1/+1 |
| 2019-02-13 | Rename rustc_errors dependency in rust 2018 crates | Taiki Endo | -1/+1 |
| 2019-02-10 | rustc: doc comments | Alexander Regueiro | -10/+10 |
| 2019-02-07 | librustc_resolve => 2018 | Taiki Endo | -11/+12 |
| 2019-01-28 | Rollup merge of #57915 - petrochenkov:notto-disu, r=zackmdavis | Mazdak Farrokhzad | -5/+5 |
| 2019-01-27 | add typo suggestion to unknown attribute error | Andy Russell | -5/+65 |
| 2019-01-26 | remove `_with_applicability` from suggestion fns | Andy Russell | -2/+2 |
| 2019-01-26 | Pretty print `$crate` as `crate` or `crate_name` in more cases | Vadim Petrochenkov | -5/+5 |
| 2019-01-14 | Rollup merge of #57477 - euclio:clarify-lev-suggestion, r=zackmdavis | Mazdak Farrokhzad | -0/+1 |
| 2019-01-12 | Stabilize `uniform_paths` | Vadim Petrochenkov | -19/+10 |
| 2019-01-12 | resolve: Prohibit use of imported non-macro attributes | Vadim Petrochenkov | -1/+18 |
| 2019-01-12 | resolve: Prohibit use of uniform paths in macros originating from 2015 edition | Vadim Petrochenkov | -4/+9 |
| 2019-01-12 | resolve: Assign `pub` and `pub(crate)` visibilities to `macro_rules` items | Vadim Petrochenkov | -3/+7 |
| 2019-01-09 | clarify resolve typo suggestion | Andy Russell | -0/+1 |
| 2019-01-01 | Auto merge of #57199 - petrochenkov:ambig, r=estebank | bors | -3/+4 |
| 2018-12-30 | Address review comments: Remove new `PathResult` variant | Esteban Küber | -4/+2 |
| 2018-12-29 | Do not complain about missing crate named as a keyword | Esteban Küber | -2/+4 |
| 2018-12-29 | Auto merge of #56225 - alexreg:type_alias_enum_variants, r=petrochenkov | bors | -1/+1 |
| 2018-12-29 | resolve: Simplify treatment of ambiguity errors | Vadim Petrochenkov | -3/+4 |
| 2018-12-28 | Auto merge of #57155 - petrochenkov:dcrate3, r=dtolnay | bors | -2/+23 |
| 2018-12-28 | Resolve `$crate`s for pretty-printing at more appropriate time | Vadim Petrochenkov | -2/+23 |
| 2018-12-27 | Address review comments and CI failures | Vadim Petrochenkov | -1/+1 |
| 2018-12-27 | Do not abort compilation if expansion produces errors | Vadim Petrochenkov | -9/+22 |
| 2018-12-26 | Store `Ident` rather than just `Name` in HIR types `Item` and `ForeignItem`. | Alexander Regueiro | -1/+1 |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 |
| 2018-12-19 | Remove `eliminate_crate_var` and special pretty-printing for `$crate` | Vadim Petrochenkov | -56/+1 |
| 2018-12-10 | Remove lifetime from Resolver | John Kåre Alsaker | -5/+5 |
| 2018-12-07 | Various minor/cosmetic improvements to code | Alexander Regueiro | -2/+2 |
| 2018-12-07 | Unsupport `#[derive(Trait)]` sugar for `#[derive_Trait]` legacy plugin attrib... | Vadim Petrochenkov | -99/+3 |
| 2018-12-06 | Auto merge of #56392 - petrochenkov:regensym, r=oli-obk | bors | -3/+5 |
| 2018-12-04 | syntax: Rename some keywords | Vadim Petrochenkov | -3/+3 |
| 2018-12-02 | resolve: Avoid "self-confirming" resolutions in import validation | Vadim Petrochenkov | -3/+5 |
| 2018-11-27 | resolve: Suggest `crate::` for resolving ambiguities when appropriate | Vadim Petrochenkov | -10/+15 |
| 2018-11-27 | resolve: Fallback to extern prelude in 2015 imports used from global 2018 edi... | Vadim Petrochenkov | -7/+19 |
| 2018-11-27 | resolve: Generalize `early_resolve_ident_in_lexical_scope` slightly | Vadim Petrochenkov | -11/+13 |
| 2018-11-27 | resolve: Fallback to uniform paths in 2015 imports used from global 2018 edition | Vadim Petrochenkov | -30/+72 |
| 2018-11-27 | resolve: Implement edition hygiene for imports and absolute paths | Vadim Petrochenkov | -2/+3 |
| 2018-11-21 | Stabilize `extern_crate_item_prelude` | Vadim Petrochenkov | -3/+2 |