| Age | Commit message (Expand) | Author | Lines |
| 2020-05-15 | Rollup merge of #71809 - marmeladema:fix-issue-71104, r=eddyb | Dylan DPC | -29/+41 |
| 2020-05-08 | Remove ast::{Ident, Name} reexports. | Camille GILLOT | -2/+3 |
| 2020-05-03 | Use `LocalDefId` in `DumpVisitor::nest_tables` | marmeladema | -29/+41 |
| 2020-04-27 | Accept `LocalDefId` as keyt for `names_imported_by_glob_use` | marmeladema | -1/+1 |
| 2020-04-27 | Use `LocalDefId` in `typeck_tables_of` and `used_trait_imports` queries | marmeladema | -1/+1 |
| 2020-04-19 | Dogfood more or_patterns in the compiler | Josh Stone | -7/+10 |
| 2020-04-14 | Do not use `DUMMY_HIR_ID` as placeholder value in node_id_to_hir_id table | marmeladema | -5/+8 |
| 2020-04-10 | librustc_middle: return LocalDefId instead of DefId in local_def_id_from_node_id | marmeladema | -12/+20 |
| 2020-04-10 | librustc_middle: return LocalDefId instead of DefId in opt_local_def_id_from_... | marmeladema | -2/+2 |
| 2020-03-30 | Use if let instead of match when only matching a single variant (clippy::sing... | Matthias Krüger | -4/+3 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -2/+2 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -2/+2 |
| 2020-03-28 | Auto merge of #70261 - Centril:angle-args-partition, r=varkor | bors | -2/+2 |
| 2020-03-27 | clarify hir_id <-> node_id method names | Bastian Kauschke | -17/+17 |
| 2020-03-27 | parse: move constraint/arg restriction to ast_validation. | Mazdak Farrokhzad | -2/+2 |
| 2020-03-22 | remove redundant closures (clippy::redundant_closure) | Matthias Krüger | -1/+1 |
| 2020-03-16 | use direct imports for `rustc::{lint, session}`. | Mazdak Farrokhzad | -1/+1 |
| 2020-03-12 | ast: `Mac`/`Macro` -> `MacCall` | Vadim Petrochenkov | -4/+4 |
| 2020-03-01 | ast: Unmerge structures for associated items and foreign items | Vadim Petrochenkov | -6/+3 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -6/+6 |
| 2020-02-24 | parse/ast: move `Defaultness` into variants. | Mazdak Farrokhzad | -12/+13 |
| 2020-02-23 | Rollup merge of #69375 - Menschenkindlein:master, r=Dylan-DPC | Dylan DPC | -2/+2 |
| 2020-02-22 | Rename CodeMap to SourceMap follow up | Maxim Zholobak | -2/+2 |
| 2020-02-22 | parse: allow `type Foo: Ord` syntactically. | Mazdak Farrokhzad | -3/+6 |
| 2020-02-18 | Rollup merge of #69194 - Centril:assoc-extern-fuse, r=petrochenkov | Mazdak Farrokhzad | -15/+17 |
| 2020-02-17 | Rename `FunctionRetTy` to `FnRetTy` | Yuki Okushi | -5/+5 |
| 2020-02-15 | parse extern consts | Mazdak Farrokhzad | -1/+1 |
| 2020-02-15 | parse associated statics. | Mazdak Farrokhzad | -2/+4 |
| 2020-02-15 | ast/parser: fuse `static` & `const` grammars in all contexts. | Mazdak Farrokhzad | -1/+1 |
| 2020-02-15 | ast: make `= <expr>;` optional in free statics/consts. | Mazdak Farrokhzad | -4/+4 |
| 2020-02-15 | ast: normalize `ForeignItemKind::Ty` & `AssocItemKind::TyAlias`. | Mazdak Farrokhzad | -1/+1 |
| 2020-02-15 | ast: move Generics into AssocItemKinds | Mazdak Farrokhzad | -7/+7 |
| 2020-02-13 | IsAsync -> enum Async { Yes { span: Span, .. }, No } | Mazdak Farrokhzad | -4/+4 |
| 2020-02-05 | parser: merge `fn` grammars wrt. bodies & headers | Mazdak Farrokhzad | -4/+5 |
| 2020-02-02 | Fix ICE with save-analysis | Yuki Okushi | -2/+2 |
| 2020-02-01 | syntax::print -> new crate rustc_ast_pretty | Mazdak Farrokhzad | -5/+4 |
| 2020-01-30 | Use `P` for `NtTraitItem`, `NtImplItem`, and `NtForeignItem`. | Nicholas Nethercote | -2/+2 |
| 2020-01-17 | Use named fields for `ast::ItemKind::Impl` | Dylan MacKenzie | -2/+2 |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -2/+2 |
| 2020-01-02 | Normalize `syntax::source_map` imports. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -1/+1 |
| 2019-12-22 | Format the world | Mark Rousskov | -162/+127 |
| 2019-12-12 | `AssocImplKind::{Method -> Fn}`. | Mazdak Farrokhzad | -2/+2 |
| 2019-12-12 | Remove `ast::{Impl,Trait}{Item,ItemKind}`. | Mazdak Farrokhzad | -13/+13 |
| 2019-12-12 | parse: refactor fun ret ty & param ty | Mazdak Farrokhzad | -5/+4 |
| 2019-12-12 | Unify `{Trait,Impl}ItemKind::TyAlias` structures. | Mazdak Farrokhzad | -1/+2 |
| 2019-12-12 | `TraitItemKind::Type` -> `TraitItemKind::TyAlias`. | Mazdak Farrokhzad | -1/+1 |
| 2019-12-12 | Use `Option` in `ImplItemKind::Method`. | Mazdak Farrokhzad | -1/+1 |
| 2019-12-12 | Use `Option` in `ImplItemKind::Const`. | Mazdak Farrokhzad | -1/+1 |
| 2019-12-02 | syntax: Remove redundant span from `ast::Mac` | Vadim Petrochenkov | -8/+0 |