| Age | Commit message (Expand) | Author | Lines |
| 2020-02-18 | Rollup merge of #69194 - Centril:assoc-extern-fuse, r=petrochenkov | Mazdak Farrokhzad | -118/+90 |
| 2020-02-17 | ast: add a FIXME | Mazdak Farrokhzad | -0/+2 |
| 2020-02-17 | Rename `FunctionRetTy` to `FnRetTy` | Yuki Okushi | -13/+12 |
| 2020-02-15 | ast: tweak AssocItemKind::Macro comment | Mazdak Farrokhzad | -1/+1 |
| 2020-02-15 | Add additional comment | Aaron Hill | -0/+6 |
| 2020-02-15 | Record proc macro harness order for use during metadata deserialization | Aaron Hill | -3/+4 |
| 2020-02-15 | visit: unify extern & assoc item visiting | Mazdak Farrokhzad | -58/+40 |
| 2020-02-15 | ast: make ForeignItemKind an alias of AssocItemKind | Mazdak Farrokhzad | -30/+3 |
| 2020-02-15 | parse extern consts | Mazdak Farrokhzad | -2/+7 |
| 2020-02-15 | parse associated statics. | Mazdak Farrokhzad | -2/+4 |
| 2020-02-15 | ast/parser: fuse `static` & `const` grammars in all contexts. | Mazdak Farrokhzad | -3/+9 |
| 2020-02-15 | ast: make `= <expr>;` optional in free statics/consts. | Mazdak Farrokhzad | -9/+5 |
| 2020-02-15 | ast: normalize `ForeignItemKind::Ty` & `AssocItemKind::TyAlias`. | Mazdak Farrokhzad | -4/+12 |
| 2020-02-15 | ast: tweak comments of Foreign/AssocItemKind | Mazdak Farrokhzad | -13/+10 |
| 2020-02-15 | ast: colocate AssocItem with ForeignItem | Mazdak Farrokhzad | -39/+39 |
| 2020-02-15 | ast: move Generics into AssocItemKinds | Mazdak Farrokhzad | -10/+11 |
| 2020-02-13 | parser: fuse free `fn` parsing together. | Mazdak Farrokhzad | -3/+7 |
| 2020-02-13 | IsAsync -> enum Async { Yes { span: Span, .. }, No } | Mazdak Farrokhzad | -18/+18 |
| 2020-02-13 | Constness -> enum Const { Yes(Span), No } | Mazdak Farrokhzad | -50/+18 |
| 2020-02-05 | parser: merge `fn` grammars wrt. bodies & headers | Mazdak Farrokhzad | -78/+80 |
| 2020-02-04 | Auto merge of #68708 - Mark-Simulacrum:stage0-step, r=pietroalbini | bors | -1/+0 |
| 2020-02-01 | syntax: reexport attr globals | Mazdak Farrokhzad | -0/+1 |
| 2020-02-01 | syntax::print -> new crate rustc_ast_pretty | Mazdak Farrokhzad | -3540/+5 |
| 2020-02-01 | 1. move allow_internal_unstable to rustc_attr | Mazdak Farrokhzad | -25/+0 |
| 2020-02-01 | 1. move node_id to syntax | Mazdak Farrokhzad | -14/+50 |
| 2020-02-01 | Move builtin attribute logic to new rustc_attr crate. | Mazdak Farrokhzad | -1052/+0 |
| 2020-02-01 | syntax: simplify HasAttrs code | Mazdak Farrokhzad | -21/+11 |
| 2020-02-01 | pretty: remove ParseSess dependency | Mazdak Farrokhzad | -20/+13 |
| 2020-02-01 | syntax: move GLOBALS to attr module | Mazdak Farrokhzad | -37/+34 |
| 2020-02-01 | {syntax -> rustc_ast_passes}::node_count | Mazdak Farrokhzad | -140/+0 |
| 2020-01-31 | Drop cfg(bootstrap) code | Mark Rousskov | -1/+0 |
| 2020-01-31 | Auto merge of #67340 - nnethercote:shrink-Nonterminal, r=petrochenkov | bors | -17/+22 |
| 2020-01-30 | clarify "incorrect issue" error | Andy Russell | -21/+34 |
| 2020-01-30 | Use `P` for `NtMeta`. | Nicholas Nethercote | -3/+4 |
| 2020-01-30 | Use `P` for `NtTraitItem`, `NtImplItem`, and `NtForeignItem`. | Nicholas Nethercote | -15/+19 |
| 2020-01-26 | Suggest defining type parameter when appropriate | Esteban Küber | -0/+14 |
| 2020-01-23 | unused-parens: implement for block return values | Tyler Lanphear | -5/+1 |
| 2020-01-22 | Rollup merge of #68441 - Centril:pprust-as_deref, r=Mark-Simulacrum | Tyler Mandry | -2/+2 |
| 2020-01-22 | pprust: use as_deref | Mazdak Farrokhzad | -2/+2 |
| 2020-01-21 | Rollup merge of #68140 - ecstatic-morse:const-trait-bound-opt-out, r=oli-obk | Mazdak Farrokhzad | -22/+32 |
| 2020-01-20 | Parse `?const ?Trait` | Dylan MacKenzie | -0/+5 |
| 2020-01-20 | Add `constness` field to `ty::Predicate::Trait` | Dylan MacKenzie | -1/+2 |
| 2020-01-20 | Revert "Add a `constness` field to `ast::TraitRef`" | Dylan MacKenzie | -19/+4 |
| 2020-01-20 | Add `MaybeConst` variant to `{ast,hir}::TraitBoundModifier` | Dylan MacKenzie | -2/+9 |
| 2020-01-19 | Add `constness` field to `ast::ItemKind::Impl` | Dylan MacKenzie | -0/+12 |
| 2020-01-20 | Rollup merge of #68353 - Centril:code-liberation, r=petrochenkov | Dylan DPC | -3/+0 |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -3/+0 |
| 2020-01-18 | slice_patterns: remove internal uses of gate | Mazdak Farrokhzad | -1/+1 |
| 2020-01-17 | Use named fields for `ast::ItemKind::Impl` | Dylan MacKenzie | -25/+44 |
| 2020-01-14 | Code review changes and fix rustdoc test. | Ben Lewis | -33/+6 |