| Age | Commit message (Expand) | Author | Lines |
| 2016-09-13 | Avoid needless reexpansions. | Jeffrey Seyfried | -5/+10 |
| 2016-09-10 | Improve `Eq` deriving | Vadim Petrochenkov | -0/+18 |
| 2016-09-07 | Improve `directory` computation during invocation collection. | Jeffrey Seyfried | -5/+9 |
| 2016-09-07 | Implement stackless placeholder expansion. | Jeffrey Seyfried | -8/+22 |
| 2016-09-07 | Strip unconfigured nodes in the `InvocationCollector` fold. | Jeffrey Seyfried | -13/+60 |
| 2016-09-05 | Load macros from `extern crate`s in the `InvocationCollector` fold. | Jeffrey Seyfried | -62/+22 |
| 2016-09-05 | Implement stackless expansion. | Jeffrey Seyfried | -173/+189 |
| 2016-09-05 | Add module `ext::placeholders` with `placeholder()` and `PlaceholderExpander`. | Jeffrey Seyfried | -39/+181 |
| 2016-09-05 | Refactor `expand_invoc(.., fld)` -> `self.expand_invoc(..)`. | Jeffrey Seyfried | -207/+212 |
| 2016-09-05 | Refactor `SyntaxEnv`. | Jeffrey Seyfried | -126/+119 |
| 2016-09-05 | Refactor `expand_*` into `expander.fold_*`. | Jeffrey Seyfried | -214/+194 |
| 2016-09-05 | Clean up module processing. | Jeffrey Seyfried | -34/+20 |
| 2016-09-05 | Refactor out `expand_item` (with better semantics than before). | Jeffrey Seyfried | -36/+39 |
| 2016-09-05 | Refactor away `expand_item`. | Jeffrey Seyfried | -7/+3 |
| 2016-09-05 | Generalize `Invocation` to include modifiers/decorators. | Jeffrey Seyfried | -95/+138 |
| 2016-09-05 | Refactor `with_exts_frame` from a macro to a function. | Jeffrey Seyfried | -16/+10 |
| 2016-09-05 | Add `Invocation` and `Expansion`, remove `MacroGenerable`. | Jeffrey Seyfried | -212/+240 |
| 2016-09-05 | Remove `syntax::config::strip_unconfigured`, add `syntax::config::features`. | Jeffrey Seyfried | -2/+3 |
| 2016-09-05 | Improve `expand_type`. | Jeffrey Seyfried | -5/+8 |
| 2016-09-05 | In `Parser` and `ExtCtxt`, replace fields `filename` and `mod_path_stack` | Jeffrey Seyfried | -31/+22 |
| 2016-09-04 | Replace `_, _` with `..` | Vadim Petrochenkov | -2/+2 |
| 2016-09-02 | rustc: Implement custom derive (macros 1.1) | Alex Crichton | -6/+38 |
| 2016-08-29 | Remove inherent methods `Annotatable::attrs` and `Annotatable::fold_attrs`. | Jeffrey Seyfried | -7/+0 |
| 2016-08-28 | Rollup merge of #35917 - jseyfried:remove_attr_ext_traits, r=nrc | Jeffrey Seyfried | -1/+0 |
| 2016-08-28 | Rollup merge of #35850 - SergioBenitez:master, r=nrc | Jeffrey Seyfried | -2/+11 |
| 2016-08-28 | Rollup merge of #35728 - petrochenkov:empderive, r=manishearth | Jeffrey Seyfried | -20/+20 |
| 2016-08-28 | Rollup merge of #35480 - KiChjang:e0379-bonus, r=nikomatsakis | Jeffrey Seyfried | -2/+2 |
| 2016-08-28 | Rollup merge of #35618 - jseyfried:ast_view_path_refactor, r=eddyb | Jeffrey Seyfried | -1/+1 |
| 2016-08-27 | Change Constness to Spanned<Constness> | Keith Yeung | -2/+2 |
| 2016-08-26 | Stabilize type-macros | Daniele Baracchi | -12/+1 |
| 2016-08-25 | Refactor away `AttrMetaMethods`. | Jeffrey Seyfried | -1/+0 |
| 2016-08-25 | Implement RFC#1559: allow all literals in attributes. | Sergio Benitez | -2/+11 |
| 2016-08-21 | Refactor away variant `ast::PathListItemKind::Mod` | Jeffrey Seyfried | -1/+1 |
| 2016-08-18 | Split `AstBuilder::pat_enum` into `pat_tuple_struct` and `pat_path` | Vadim Petrochenkov | -20/+20 |
| 2016-08-18 | Fix #[derive] for empty tuple structs/variants | Vadim Petrochenkov | -1/+1 |
| 2016-08-16 | Auto merge of #35538 - cgswords:libproc_macro, r=nrc | bors | -0/+69 |
| 2016-08-16 | Proc_macro is alive | cgswords | -0/+69 |
| 2016-08-13 | Auto merge of #35453 - jseyfried:hygienize_metavariables, r=nrc | bors | -12/+12 |
| 2016-08-11 | Auto merge of #34811 - DanielJCampbell:Expander, r=jseyfried | bors | -42/+80 |
| 2016-08-10 | Extended expand.rs to support alternate expansion behaviours | Daniel Campbell | -42/+80 |
| 2016-08-07 | Make metavariables hygienic. | Jeffrey Seyfried | -12/+12 |
| 2016-07-29 | Auto merge of #34842 - cgswords:attr_enc, r=nrc | bors | -20/+8 |
| 2016-07-25 | General MetaItem encapsulation rewrites. | cgswords | -20/+8 |
| 2016-07-23 | macros: Improve `tt` fragments | Jeffrey Seyfried | -3/+13 |
| 2016-07-19 | Introduced `NoDelim` and modified the compiler to support it. | cgswords | -3/+4 |
| 2016-07-17 | Auto merge of #34860 - jseyfried:encapsulate_hygiene, r=nrc | bors | -183/+131 |
| 2016-07-17 | Remove some unit tests and that are redundant with `run-pass/hygiene.rs` | Jeffrey Seyfried | -35/+0 |
| 2016-07-17 | Rename `mtwt` to `hygiene` | Jeffrey Seyfried | -2/+2 |
| 2016-07-17 | Clean up and encapsulate `syntax::ext::mtwt` | Jeffrey Seyfried | -108/+91 |
| 2016-07-16 | Auto merge of #34816 - jseyfried:fix_include_path, r=nrc | bors | -0/+6 |