| Age | Commit message (Expand) | Author | Lines |
| 2020-05-29 | Remove remaining calls to `as_local_node_id` | marmeladema | -7/+13 |
| 2020-05-27 | Store `LocalDefId` directly in `rustc_resolve::Resolver` where possible | marmeladema | -6/+7 |
| 2020-05-22 | Remove `macro_defs` map | Aaron Hill | -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 | -2/+17 |
| 2020-05-08 | Remove ast::{Ident, Name} reexports. | Camille GILLOT | -4/+3 |
| 2020-04-24 | Remove `Option` from the return type of `def_kind`. | Eduard-Mihai Burtescu | -1/+2 |
| 2020-04-24 | add a few more DefKinds | mark | -1/+14 |
| 2020-04-19 | Dogfood more or_patterns in the compiler | Josh Stone | -23/+24 |
| 2020-04-14 | Rename AssocKind::Method to AssocKind::Fn | Rustin-Liu | -1/+1 |
| 2020-04-08 | librustc_resolve: fixup nit in previous commit | marmeladema | -3/+3 |
| 2020-04-08 | librustc_hir: return LocalDefId instead of DefId in local_def_id | marmeladema | -26/+41 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -4/+4 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -4/+4 |
| 2020-03-24 | Rollup merge of #70077 - Aaron1011:feature/new-def-path-ident, r=petrochenkov | Mazdak Farrokhzad | -1/+4 |
| 2020-03-23 | resolve: Do not resolve visibilities on proc macro definitions twice | Vadim Petrochenkov | -1/+8 |
| 2020-03-22 | Store idents for `DefPathData` into crate metadata | Aaron Hill | -1/+4 |
| 2020-03-21 | make some let-if-bindings more idiomatic (clippy::useless_let_if_seq) | Matthias Krüger | -5/+7 |
| 2020-03-16 | hygiene: `modern` -> `normalize_to_macros_2_0` | Vadim Petrochenkov | -6/+9 |
| 2020-03-16 | Other `legacy` -> `macro_rules` | Vadim Petrochenkov | -5/+5 |
| 2020-03-16 | resolve: `Legacy(Scope,Binding)` -> `MacroRules(Scope,Binding)` | Vadim Petrochenkov | -17/+17 |
| 2020-03-16 | ast/hir: `MacroDef::legacy` -> `MacroDef::macro_rules` | Vadim Petrochenkov | -3/+3 |
| 2020-03-15 | Rollup merge of #69589 - petrochenkov:maccall, r=Centril | Mazdak Farrokhzad | -12/+12 |
| 2020-03-12 | ast: `Mac`/`Macro` -> `MacCall` | Vadim Petrochenkov | -12/+12 |
| 2020-03-12 | Rollup merge of #69674 - mark-i-m:assoc-fn, r=matthewjasper | Mazdak Farrokhzad | -3/+3 |
| 2020-03-07 | resolve: `directive` -> `import` | Vadim Petrochenkov | -30/+21 |
| 2020-03-07 | resolve: `ImportDirective` -> `Import` | Vadim Petrochenkov | -21/+17 |
| 2020-03-03 | DefKind::Method -> DefKind::AssocFn | Mark Mansi | -3/+3 |
| 2020-03-01 | ast: Unmerge structures for associated items and foreign items | Vadim Petrochenkov | -3/+2 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -5/+5 |
| 2020-02-27 | use char instead of &str for single char patterns | Matthias Krüger | -1/+1 |
| 2020-02-24 | parse/ast: move `Defaultness` into variants. | Mazdak Farrokhzad | -2/+2 |
| 2020-02-22 | parse: allow `type Foo: Ord` syntactically. | Mazdak Farrokhzad | -2/+2 |
| 2020-02-15 | parse extern consts | Mazdak Farrokhzad | -1/+1 |
| 2020-02-15 | parse associated statics. | Mazdak Farrokhzad | -1/+2 |
| 2020-02-15 | ast: normalize `ForeignItemKind::Ty` & `AssocItemKind::TyAlias`. | Mazdak Farrokhzad | -1/+1 |
| 2020-02-15 | ast: move Generics into AssocItemKinds | Mazdak Farrokhzad | -1/+1 |
| 2020-02-05 | parser: merge `fn` grammars wrt. bodies & headers | Mazdak Farrokhzad | -12/+9 |
| 2020-02-01 | Move builtin attribute logic to new rustc_attr crate. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -1/+0 |
| 2020-01-17 | Use named fields for `ast::ItemKind::Impl` | Dylan MacKenzie | -1/+1 |
| 2020-01-12 | Fix formatting ellipses at the end of some diagnostics | varkor | -1/+1 |
| 2020-01-12 | Add backticks in appropriate places | varkor | -3/+3 |
| 2020-01-10 | nix syntax::errors & prefer rustc_errors over errors | Mazdak Farrokhzad | -11/+7 |
| 2020-01-08 | - remove syntax::{span_warn!, span_err!, span_fatal!. struct_err!} | Mazdak Farrokhzad | -10/+15 |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -2/+2 |
| 2020-01-04 | Auto merge of #67803 - Centril:librustc_hir, r=Zoxc | bors | -0/+1 |
| 2020-01-04 | Rollup merge of #67775 - mental32:master, r=Dylan-DPC | Dylan DPC | -5/+1 |
| 2020-01-04 | extract Export, ExportMap from hir::def | Mazdak Farrokhzad | -0/+1 |
| 2020-01-02 | Normalize `syntax::symbol` imports. | Mazdak Farrokhzad | -1/+1 |