| Age | Commit message (Expand) | Author | Lines |
| 2016-09-13 | Remove scope placeholders from the crate root. | Jeffrey Seyfried | -2/+13 |
| 2016-09-13 | Perform node id assignment and `macros_at_scope` construction during | Jeffrey Seyfried | -5/+19 |
| 2016-09-13 | Move macro resolution into `librustc_resolve`. | Jeffrey Seyfried | -105/+77 |
| 2016-09-13 | Rewrite the unit tests in `ext/expand.rs` as a `compile-fail` test. | Jeffrey Seyfried | -107/+0 |
| 2016-09-13 | Refactor `ExtCtxt` to use a `Resolver` instead of a `MacroLoader`. | Jeffrey Seyfried | -6/+6 |
| 2016-09-07 | Improve `directory` computation during invocation collection. | Jeffrey Seyfried | -5/+9 |
| 2016-09-07 | Implement stackless placeholder expansion. | Jeffrey Seyfried | -4/+15 |
| 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 | -151/+182 |
| 2016-09-05 | Add module `ext::placeholders` with `placeholder()` and `PlaceholderExpander`. | Jeffrey Seyfried | -39/+9 |
| 2016-09-05 | Refactor `expand_invoc(.., fld)` -> `self.expand_invoc(..)`. | Jeffrey Seyfried | -207/+212 |
| 2016-09-05 | Refactor `SyntaxEnv`. | Jeffrey Seyfried | -44/+20 |
| 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 | -85/+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 | -25/+18 |
| 2016-09-02 | rustc: Implement custom derive (macros 1.1) | Alex Crichton | -3/+8 |
| 2016-08-28 | Rollup merge of #35917 - jseyfried:remove_attr_ext_traits, r=nrc | Jeffrey Seyfried | -1/+0 |
| 2016-08-26 | Stabilize type-macros | Daniele Baracchi | -12/+1 |
| 2016-08-25 | Refactor away `AttrMetaMethods`. | Jeffrey Seyfried | -1/+0 |
| 2016-08-11 | Auto merge of #34811 - DanielJCampbell:Expander, r=jseyfried | bors | -41/+79 |
| 2016-08-10 | Extended expand.rs to support alternate expansion behaviours | Daniel Campbell | -41/+79 |
| 2016-07-25 | General MetaItem encapsulation rewrites. | cgswords | -3/+2 |
| 2016-07-17 | Rename `mtwt` to `hygiene` | Jeffrey Seyfried | -1/+1 |
| 2016-07-17 | Clean up and encapsulate `syntax::ext::mtwt` | Jeffrey Seyfried | -29/+15 |
| 2016-07-15 | Auto merge of #34570 - jseyfried:no_rename, r=nrc | bors | -558/+34 |
| 2016-07-14 | Remove irrelevant tests | Jeffrey Seyfried | -130/+1 |
| 2016-07-14 | Implement `macro_rules!` placeholders and the macro scope map | Jeffrey Seyfried | -6/+27 |
| 2016-07-14 | Instead of renaming, treat differently marked identifiers as unequal | Jeffrey Seyfried | -423/+7 |
| 2016-07-12 | Clean up statement parsing without changing the semantics of `parse_stmt`. | Jeffrey Seyfried | -8/+1 |
| 2016-07-06 | Auto merge of #34652 - jseyfried:fix_expansion_perf, r=nrc | bors | -4/+4 |
| 2016-07-05 | Strip unconfigured items from `MultiModifier`-expanded AST | Jeffrey Seyfried | -1/+5 |
| 2016-07-04 | Revert "Change `fold_tt` and `fold_tts` to take token trees by value (instead... | Jeffrey Seyfried | -4/+4 |
| 2016-06-29 | Rollup merge of #34495 - jseyfried:only_ident_macro_invocations, r=eddyb | Manish Goregaokar | -1/+1 |
| 2016-06-29 | Rollup merge of #34459 - jseyfried:expansion_cleanup, r=nrc | Manish Goregaokar | -19/+13 |
| 2016-06-29 | Treat `MultiDecorator`s as a special case of `MultiModifier`s | Jeffrey Seyfried | -78/+33 |
| 2016-06-28 | cleanup: use `DummyResult` to implement `MacroGenerable::dummy` | Jeffrey Seyfried | -19/+13 |
| 2016-06-27 | Forbid type parameters and global paths in macro invocations | Jeffrey Seyfried | -1/+1 |
| 2016-06-26 | Rollup merge of #34436 - jseyfried:no_block_expr, r=eddyb | Jeffrey Seyfried | -10/+1 |
| 2016-06-26 | Rollup merge of #34339 - jseyfried:thin_vec, r=petrochenkov,Manishearth | Jeffrey Seyfried | -4/+4 |
| 2016-06-26 | Rollup merge of #34316 - jseyfried:refactor_ast_stmt, r=eddyb | Jeffrey Seyfried | -72/+52 |
| 2016-06-26 | Rollup merge of #33943 - jseyfried:libsyntax_cleanup, r=nrc | Jeffrey Seyfried | -39/+29 |
| 2016-06-26 | Rollup merge of #34385 - cgswords:tstream, r=nrc | Jeffrey Seyfried | -1/+1 |