| Age | Commit message (Expand) | Author | Lines |
| 2016-11-17 | Resolve imports during expansion. | Jeffrey Seyfried | -2/+13 |
| 2016-11-12 | Remove extra level of nesting. | Mark-Simulacrum | -35/+32 |
| 2016-11-12 | Move next_eis out of main loop to avoid re-allocating and dropping it. | Mark-Simulacrum | -1/+2 |
| 2016-11-12 | Use SmallVector for eof and bb eis. | Mark-Simulacrum | -6/+4 |
| 2016-11-12 | Factor out inner current Earley item loop. | Mark-Simulacrum | -146/+153 |
| 2016-11-12 | Refactor parse_nt. | Mark-Simulacrum | -8/+13 |
| 2016-11-12 | Factor out NamedParseResult. | Mark-Simulacrum | -4/+3 |
| 2016-11-12 | Clean up extraneous &mut. | Mark-Simulacrum | -1/+1 |
| 2016-11-12 | Refactor to extending from a drain instead of while looping. | Mark-Simulacrum | -3/+1 |
| 2016-11-12 | Remove unused argument from nameize. | Mark-Simulacrum | -6/+6 |
| 2016-11-12 | Cleanup macro_parser::parse, removing a few clones. | Mark-Simulacrum | -51/+35 |
| 2016-11-11 | Change implementation of syntax::util::SmallVector to use data_structures::Sm... | Mark-Simulacrum | -11/+11 |
| 2016-11-11 | Auto merge of #37246 - goffrie:no-loop, r=jseyfried | bors | -1/+3 |
| 2016-11-10 | Elimite `$crate` before invokng custom derives. | Jeffrey Seyfried | -0/+2 |
| 2016-11-10 | syntax: don't fake a block around closures' bodies during parsing. | Eduard Burtescu | -30/+15 |
| 2016-11-04 | Remove field `TtReader::next_tok`. | Jeffrey Seyfried | -5/+0 |
| 2016-11-04 | Improve `tt`-heavy expansion performance. | Jeffrey Seyfried | -4/+15 |
| 2016-11-03 | Move doc comment desugaring into the parser. | Jeffrey Seyfried | -28/+2 |
| 2016-11-03 | Avoid recontructing the `Parser` in `macro_parser.rs`. | Jeffrey Seyfried | -21/+16 |
| 2016-11-03 | Revert "macros: Improve `tt` fragments" | Jeffrey Seyfried | -13/+3 |
| 2016-11-03 | Reduce the size of `Token` and make it cheaper to clone by refactoring | Jeffrey Seyfried | -50/+63 |
| 2016-10-31 | Changed most vec! invocations to use square braces | iirelu | -47/+47 |
| 2016-10-29 | Move `CrateConfig` from `Crate` to `ParseSess`. | Jeffrey Seyfried | -40/+11 |
| 2016-10-28 | Auto merge of #37373 - nnethercote:html5ever-more-more, r=nrc | bors | -11/+10 |
| 2016-10-26 | Don't spin expanding stmt macros. | Geoffry Song | -1/+3 |
| 2016-10-27 | Implement field shorthands in struct literal expressions. | Eduard Burtescu | -1/+1 |
| 2016-10-25 | Don't use `Rc` in `TokenTreeOrTokenTreeVec`. | Nicholas Nethercote | -3/+3 |
| 2016-10-25 | Use `SmallVector` for `TtReader::stack`. | Nicholas Nethercote | -3/+4 |
| 2016-10-25 | Use `SmallVector` for the stack in `macro_parser::parse`. | Nicholas Nethercote | -6/+4 |
| 2016-10-24 | Refactor away fields `MacroDef::{use_locally, export}`. | Jeffrey Seyfried | -5/+4 |
| 2016-10-22 | Auto merge of #37318 - nnethercote:html5ever-more, r=nrc,eddyb | bors | -14/+26 |
| 2016-10-21 | Replace the `String` in `ParseResult::Failure` with `Token`. | Nicholas Nethercote | -13/+25 |
| 2016-10-21 | Avoid an unnecessary clone in `generic_extensions`. | Nicholas Nethercote | -2/+2 |
| 2016-10-21 | Avoid an unnecessary clone in `macro_parser::parse`. | Nicholas Nethercote | -1/+1 |
| 2016-10-19 | Improve `$crate`. | Jeffrey Seyfried | -39/+6 |
| 2016-10-19 | Rollup merge of #37208 - jseyfried:fix_partially_consumed_tokens_in_macros, r... | Eduard-Mihai Burtescu | -12/+14 |
| 2016-10-19 | Rollup merge of #37198 - jseyfried:future_proof_macros_11, r=nrc | Eduard-Mihai Burtescu | -7/+30 |
| 2016-10-17 | Fix partially consumed tokens in macro matchers. | Jeffrey Seyfried | -12/+14 |
| 2016-10-15 | Use the macro namespace for custom derives. | Jeffrey Seyfried | -3/+16 |
| 2016-10-15 | Refactor `syntax::ext::base::Resolver::resolve_invoc`. | Jeffrey Seyfried | -4/+14 |
| 2016-10-14 | Avoid many CrateConfig clones. | Nicholas Nethercote | -11/+15 |
| 2016-10-11 | Add support for undetermined macro invocations. | Jeffrey Seyfried | -6/+37 |
| 2016-10-11 | Merge branch 'persistent_macro_scopes' into cleanup_expanded_macro_use_scopes | Jeffrey Seyfried | -54/+21 |
| 2016-10-07 | Cleanup `depth`s. | Jeffrey Seyfried | -8/+11 |
| 2016-10-07 | Refactor away `ext::expand::{expand_crate, expand_crate_with_expander}`. | Jeffrey Seyfried | -31/+10 |
| 2016-10-07 | Add macros from plugins in `libsyntax_ext::register_builtins`. | Jeffrey Seyfried | -14/+5 |
| 2016-10-07 | Combine `std_inject::{no_core, no_std}` into `std_inject::injected_crate_name`. | Jeffrey Seyfried | -7/+1 |
| 2016-10-06 | rustc: Rename rustc_macro to proc_macro | Alex Crichton | -1/+1 |
| 2016-10-03 | Auto merge of #36767 - jseyfried:enforce_rfc_1560_shadowing, r=nrc | bors | -3/+8 |
| 2016-10-02 | Refactor `ext::base::Resolver::add_ext` to only define macros in the crate root. | Jeffrey Seyfried | -3/+3 |