| Age | Commit message (Expand) | Author | Lines |
| 2020-02-22 | parse: allow `type Foo: Ord` syntactically. | Mazdak Farrokhzad | -10/+10 |
| 2020-02-18 | Remove "not yet implemented" warning | Dylan MacKenzie | -9/+1 |
| 2020-02-18 | Rollup merge of #69194 - Centril:assoc-extern-fuse, r=petrochenkov | Mazdak Farrokhzad | -50/+54 |
| 2020-02-17 | Rename `FunctionRetTy` to `FnRetTy` | Yuki Okushi | -15/+15 |
| 2020-02-15 | Record proc macro harness order for use during metadata deserialization | Aaron Hill | -0/+2 |
| 2020-02-15 | parse extern consts | Mazdak Farrokhzad | -0/+5 |
| 2020-02-15 | parse associated statics. | Mazdak Farrokhzad | -4/+9 |
| 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 | -18/+19 |
| 2020-02-15 | ast: normalize `ForeignItemKind::Ty` & `AssocItemKind::TyAlias`. | Mazdak Farrokhzad | -1/+1 |
| 2020-02-15 | ast: move Generics into AssocItemKinds | Mazdak Farrokhzad | -27/+20 |
| 2020-02-15 | Auto merge of #67681 - matthewjasper:infer-regions-in-borrowck, r=nikomatsakis | bors | -25/+43 |
| 2020-02-14 | Address review comments | Matthew Jasper | -15/+17 |
| 2020-02-15 | Rollup merge of #69128 - Centril:fix-69103, r=davidtwco | Yuki Okushi | -6/+11 |
| 2020-02-14 | Distinguish RPIT from other impl trait | Matthew Jasper | -20/+36 |
| 2020-02-13 | fix extra subslice lowering | Mazdak Farrokhzad | -6/+11 |
| 2020-02-13 | IsAsync -> enum Async { Yes { span: Span, .. }, No } | Mazdak Farrokhzad | -16/+13 |
| 2020-02-13 | Constness -> enum Const { Yes(Span), No } | Mazdak Farrokhzad | -8/+24 |
| 2020-02-06 | Rollup merge of #68524 - jonas-schievink:generator-resume-arguments, r=Zoxc | Dylan DPC | -2/+2 |
| 2020-02-05 | lowering: add recursion_limit = 256 | Mazdak Farrokhzad | -0/+1 |
| 2020-02-05 | parser: merge `fn` grammars wrt. bodies & headers | Mazdak Farrokhzad | -45/+30 |
| 2020-02-04 | Update error message with too many parameters | Jonas Schievink | -1/+1 |
| 2020-02-02 | Allow 0 or 1 explicit generator parameters | Jonas Schievink | -2/+2 |
| 2020-02-01 | syntax::print -> new crate rustc_ast_pretty | Mazdak Farrokhzad | -1/+2 |
| 2020-02-01 | 1. move node_id to syntax | Mazdak Farrokhzad | -5/+5 |
| 2020-01-26 | update | comet | -1/+1 |
| 2020-01-21 | Rollup merge of #68416 - Centril:lowering-cleanup-hofs, r=pietroalbini | Mazdak Farrokhzad | -12/+3 |
| 2020-01-21 | Rollup merge of #68140 - ecstatic-morse:const-trait-bound-opt-out, r=oli-obk | Mazdak Farrokhzad | -10/+19 |
| 2020-01-21 | lowering: cleanup some hofs | Mazdak Farrokhzad | -12/+3 |
| 2020-01-21 | Add comment explaining `MaybeConstMaybe` lowering | Dylan MacKenzie | -0/+5 |
| 2020-01-20 | Parse `?const ?Trait` | Dylan MacKenzie | -2/+7 |
| 2020-01-20 | Add `MaybeConst` variant to `{ast,hir}::TraitBoundModifier` | Dylan MacKenzie | -5/+3 |
| 2020-01-19 | Add `constness` field to `hir::ItemKind::Impl` | Dylan MacKenzie | -1/+2 |
| 2020-01-19 | Add `constness` field to `ast::ItemKind::Impl` | Dylan MacKenzie | -3/+3 |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -5/+0 |
| 2020-01-17 | Use named fields for `hir::ItemKind::Impl` | Dylan MacKenzie | -7/+7 |
| 2020-01-17 | Use named fields for `ast::ItemKind::Impl` | Dylan MacKenzie | -10/+11 |
| 2020-01-16 | don't clone types that are copy | Matthias Krüger | -3/+3 |
| 2020-01-14 | Rollup merge of #68143 - skinny121:const-param-type-elided-lifetime, r=petroc... | Yuki Okushi | -6/+8 |
| 2020-01-12 | Forbid elided lifetimes within const generic parameter types. | Ben Lewis | -6/+8 |
| 2020-01-12 | Rollup merge of #68045 - Centril:liberate-lints, r=Mark-Simulacrum | Mazdak Farrokhzad | -2/+1 |
| 2020-01-11 | Rollup merge of #68072 - JohnTitor:fix-macro-ice, r=petrochenkov | Mazdak Farrokhzad | -1/+6 |
| 2020-01-11 | move rustc::lint::{context, passes} to rustc_lint. | Mazdak Farrokhzad | -2/+1 |
| 2020-01-11 | Rollup merge of #68043 - Zoxc:missing-timers, r=wesleywiser | Mazdak Farrokhzad | -1/+1 |
| 2020-01-11 | prepare moving HardwiredLints to rustc_session | Mazdak Farrokhzad | -1/+1 |
| 2020-01-11 | buffered lint infra -> rustc_session | Mazdak Farrokhzad | -6/+7 |
| 2020-01-10 | Introduce `#![feature(half_open_range_patterns)]`. | Mazdak Farrokhzad | -6/+7 |
| 2020-01-10 | Rollup merge of #67922 - Centril:lowering-cleanup, r=petrochenkov | Mazdak Farrokhzad | -718/+724 |
| 2020-01-09 | Error when new syntax is lowered | Dylan MacKenzie | -0/+10 |
| 2020-01-09 | Tweak timers | John Kåre Alsaker | -1/+1 |