| Age | Commit message (Expand) | Author | Lines |
| 2020-03-06 | fix various typos | Matthias Krüger | -1/+1 |
| 2020-03-01 | encode `;` stmt w/o expr as `StmtKind::Empty` | Mazdak Farrokhzad | -0/+1 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -8/+8 |
| 2020-02-24 | parse/ast: move `Defaultness` into variants. | Mazdak Farrokhzad | -2/+2 |
| 2020-02-22 | parse: allow `type Foo: Ord` syntactically. | Mazdak Farrokhzad | -1/+1 |
| 2020-02-18 | Rollup merge of #69194 - Centril:assoc-extern-fuse, r=petrochenkov | Mazdak Farrokhzad | -1/+1 |
| 2020-02-17 | Rename `FunctionRetTy` to `FnRetTy` | Yuki Okushi | -9/+9 |
| 2020-02-15 | Record proc macro harness order for use during metadata deserialization | Aaron Hill | -0/+2 |
| 2020-02-15 | ast: move Generics into AssocItemKinds | Mazdak Farrokhzad | -1/+1 |
| 2020-02-14 | Address review comments | Matthew Jasper | -15/+17 |
| 2020-02-14 | Distinguish RPIT from other impl trait | Matthew Jasper | -16/+26 |
| 2020-02-13 | Constness -> enum Const { Yes(Span), No } | Mazdak Farrokhzad | -1/+1 |
| 2020-02-05 | lowering: add recursion_limit = 256 | Mazdak Farrokhzad | -0/+1 |
| 2020-02-05 | parser: merge `fn` grammars wrt. bodies & headers | Mazdak Farrokhzad | -19/+8 |
| 2020-02-01 | syntax::print -> new crate rustc_ast_pretty | Mazdak Farrokhzad | -1/+1 |
| 2020-02-01 | 1. move node_id to syntax | Mazdak Farrokhzad | -4/+4 |
| 2020-01-21 | Rollup merge of #68140 - ecstatic-morse:const-trait-bound-opt-out, r=oli-obk | Mazdak Farrokhzad | -7/+15 |
| 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-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -1/+0 |
| 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-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 | buffered lint infra -> rustc_session | Mazdak Farrokhzad | -3/+3 |
| 2020-01-10 | Rollup merge of #67922 - Centril:lowering-cleanup, r=petrochenkov | Mazdak Farrokhzad | -711/+36 |
| 2020-01-09 | Error when new syntax is lowered | Dylan MacKenzie | -0/+4 |
| 2020-01-09 | Tweak timers | John Kåre Alsaker | -1/+1 |
| 2020-01-09 | add CStore::item_generics_num_lifetimes | Mazdak Farrokhzad | -1/+1 |
| 2020-01-09 | rename a method in Resolver trait | Mazdak Farrokhzad | -1/+1 |
| 2020-01-09 | lowering: remove dep on CrateStore | Mazdak Farrokhzad | -10/+3 |
| 2020-01-09 | lowering: rustc::session -> rustc_session | Mazdak Farrokhzad | -2/+0 |
| 2020-01-09 | {rustc::util -> rustc_data_structures}::captures | Mazdak Farrokhzad | -1/+3 |
| 2020-01-09 | refactor 'Output = $ty' & reduce rustc dep | Mazdak Farrokhzad | -7/+1 |
| 2020-01-09 | extract path lowering -> path.rs | Mazdak Farrokhzad | -401/+3 |
| 2020-01-09 | move lower_binding_mode -> pat.rs | Mazdak Farrokhzad | -9/+0 |
| 2020-01-09 | extract pattern lowering -> pat.rs | Mazdak Farrokhzad | -246/+3 |
| 2020-01-09 | lowering: elide some lifetimes | Mazdak Farrokhzad | -1/+1 |
| 2020-01-09 | lowering: simplify HoFs | Mazdak Farrokhzad | -36/+24 |
| 2020-01-08 | normalize rustc::hir::intravisit imports | Mazdak Farrokhzad | -1/+1 |
| 2020-01-08 | intravisit: abstract over HIR Map | Mazdak Farrokhzad | -2/+5 |
| 2020-01-08 | - remove syntax::{span_warn!, span_err!, span_fatal!. struct_err!} | Mazdak Farrokhzad | -5/+4 |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -17/+17 |
| 2020-01-05 | simplify reexports in rustc::hir | Mazdak Farrokhzad | -10/+14 |
| 2020-01-04 | DefId{Map,Set} -> rustc::hir::def_id | Mazdak Farrokhzad | -2/+1 |
| 2020-01-04 | move Node{Map,Set} -> rustc_session::node_id | Mazdak Farrokhzad | -1/+2 |
| 2019-12-31 | Revert "core: add IntoFuture trait and support for await" | Wesley Wiser | -2/+0 |
| 2019-12-31 | librustc_ast_lowering: fix misc fallout. | Mazdak Farrokhzad | -35/+37 |
| 2019-12-31 | librustc_ast_lowering: move the files. | Mazdak Farrokhzad | -0/+3318 |