| Age | Commit message (Expand) | Author | Lines |
| 2019-08-15 | `Ident::with_empty_ctxt` -> `Ident::with_dummy_span` | Vadim Petrochenkov | -20/+20 |
| 2019-08-15 | syntax_pos: `NO_EXPANSION`/`SyntaxContext::empty()` -> `SyntaxContext::root()` | Vadim Petrochenkov | -3/+3 |
| 2019-08-15 | Remove `Spanned` from `{ast,hir}::FieldPat` | Vadim Petrochenkov | -9/+7 |
| 2019-08-15 | Remove `Spanned` from `ast::Mac` | Vadim Petrochenkov | -6/+3 |
| 2019-08-15 | Remove `Spanned` from `mk_name_value_item_str` and `expr_to_spanned_string` | Vadim Petrochenkov | -8/+8 |
| 2019-08-14 | Rollup merge of #63543 - c410-f3r:variant, r=c410-f3r | Mazdak Farrokhzad | -14/+14 |
| 2019-08-14 | Rollup merge of #63542 - c410-f3r:node_ids, r=petrochenkov | Mazdak Farrokhzad | -0/+1 |
| 2019-08-14 | Rollup merge of #63537 - petrochenkov:novisit, r=alexcrichton | Mazdak Farrokhzad | -16/+20 |
| 2019-08-14 | Merge Variant and Variant_ | Caio | -14/+14 |
| 2019-08-13 | Add NodeId for Arm, Field and FieldPat | Caio | -0/+1 |
| 2019-08-14 | expand: Unimplement `MutVisitor` on `MacroExpander` | Vadim Petrochenkov | -16/+20 |
| 2019-08-13 | syntax: Remove `DummyResult::expn_only` | Vadim Petrochenkov | -21/+21 |
| 2019-08-09 | Rollup merge of #63114 - matthewjasper:hygienic-format-args, r=petrochenkov | Mazdak Farrokhzad | -2/+2 |
| 2019-08-05 | Remove gensym from format_args | Matthew Jasper | -2/+2 |
| 2019-08-05 | Drop span argument from mk_list_item | Mark Rousskov | -2/+1 |
| 2019-08-05 | Auto merge of #63248 - petrochenkov:nomarker, r=matthewjasper | bors | -7/+12 |
| 2019-08-04 | Auto merge of #63213 - varkor:itemkind-tyalias, r=Centril | bors | -1/+2 |
| 2019-08-04 | Rename `ItemImplKind::Type` to `ItemImplKind::TyAlias` | varkor | -1/+2 |
| 2019-08-04 | Auto merge of #62816 - estebank:type-ascription-macros, r=petrochenkov | bors | -0/+1 |
| 2019-08-03 | Move special treatment of `derive(Copy, PartialEq, Eq)` from expansion infras... | Vadim Petrochenkov | -7/+12 |
| 2019-08-03 | Rollup merge of #63146 - Mark-Simulacrum:clean-attr, r=petrochenkov | Mazdak Farrokhzad | -63/+21 |
| 2019-08-03 | Rollup merge of #63121 - estebank:formatting-pos, r=alexcrichton | Mazdak Farrokhzad | -24/+122 |
| 2019-07-31 | fix dedup | Esteban Küber | -1/+1 |
| 2019-07-31 | Remove derives `Encodable`/`Decodable` and unstabilize attribute `#[bench]` | Vadim Petrochenkov | -36/+2 |
| 2019-07-31 | Replace AstBuilder with inherent methods | Mark Rousskov | -23/+0 |
| 2019-07-31 | Replace a few Attribute constructors with mk_attr | Mark Rousskov | -17/+4 |
| 2019-07-31 | Remove span argument from mk_attr_{inner,outer} | Mark Rousskov | -3/+1 |
| 2019-07-31 | Remove Span argument from ExtCtxt::attribute | Mark Rousskov | -18/+16 |
| 2019-07-31 | Remove AttrId from Attribute constructors | Mark Rousskov | -2/+0 |
| 2019-07-30 | Point at type ascription before macro invocation on expansion parse error | Esteban Küber | -0/+1 |
| 2019-07-29 | review comments | Esteban Küber | -1/+1 |
| 2019-07-29 | Improve handling of invalid references in `format!()` | Esteban Küber | -13/+34 |
| 2019-07-29 | On `format!()` arg count mismatch provide extra info | Esteban Küber | -15/+92 |
| 2019-07-28 | Deny `unused_lifetimes` through rustbuild | Vadim Petrochenkov | -2/+0 |
| 2019-07-28 | Remove lint annotations in specific crates that are already enforced by rustb... | Vadim Petrochenkov | -3/+0 |
| 2019-07-27 | syntax_ext: `proc_macro_decls` -> `proc_macro_harness` | Vadim Petrochenkov | -14/+13 |
| 2019-07-27 | Move standard library injection into libsyntax_ext | Vadim Petrochenkov | -0/+96 |
| 2019-07-27 | Move test harness generation into libsyntax_ext | Vadim Petrochenkov | -50/+432 |
| 2019-07-27 | Move proc macro server into libsyntax | Vadim Petrochenkov | -962/+2 |
| 2019-07-27 | Break dependencies between `syntax_ext` and some other crates | Vadim Petrochenkov | -11/+167 |
| 2019-07-26 | Introduce built-in macros through libcore | Vadim Petrochenkov | -221/+129 |
| 2019-07-24 | Fix rebase | Vadim Petrochenkov | -1/+1 |
| 2019-07-24 | syntax_ext: Improve and simplify code generated by `#[global_allocator]` | Vadim Petrochenkov | -57/+28 |
| 2019-07-24 | syntax_ext: Reuse built-in attribute template checking for macro attributes | Vadim Petrochenkov | -20/+17 |
| 2019-07-24 | syntax_ext: Turn `#[global_allocator]` into a regular attribute macro | Vadim Petrochenkov | -146/+85 |
| 2019-07-24 | Merge `rustc_allocator` into `libsyntax_ext` | Vadim Petrochenkov | -0/+297 |
| 2019-07-23 | Rollup merge of #62869 - matklad:feature-gate, r=Mark-Simulacrum | Mark Rousskov | -0/+1 |
| 2019-07-23 | Rollup merge of #62791 - estebank:type-ascription, r=petrochenkov | Mark Rousskov | -1/+4 |
| 2019-07-22 | add rustc_private as a proper language feature gate | Aleksey Kladov | -0/+1 |
| 2019-07-20 | Auto merge of #62710 - estebank:bad-named-args, r=petrochenkov | bors | -15/+24 |