| Age | Commit message (Expand) | Author | Lines |
| 2016-12-06 | annotate stricter lifetimes on LateLintPass methods to allow them to forward ... | Oliver Schneider | -1/+1 |
| 2016-11-30 | Support paths in macro invocations. | Jeffrey Seyfried | -6/+1 |
| 2016-11-22 | Auto merge of #37487 - goffrie:break, r=nikomatsakis | bors | -1/+1 |
| 2016-11-21 | Implement the `loop_break_value` feature. | Geoffry Song | -1/+1 |
| 2016-11-22 | Start warning cycle. | Jeffrey Seyfried | -1/+1 |
| 2016-11-22 | Clean up directory ownership semantics. | Jeffrey Seyfried | -22/+28 |
| 2016-11-21 | Cleanup `InternedString`. | Jeffrey Seyfried | -5/+4 |
| 2016-11-21 | Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p... | Jeffrey Seyfried | -26/+21 |
| 2016-11-20 | Move `syntax::util::interner` -> `syntax::symbol`, cleanup. | Jeffrey Seyfried | -29/+30 |
| 2016-11-20 | Refactor `P<ast::MetaItem>` -> `ast::MetaItem`. | Jeffrey Seyfried | -10/+10 |
| 2016-11-20 | Refactor `MetaItemKind` to use `Name`s instead of `InternedString`s. | Jeffrey Seyfried | -11/+11 |
| 2016-11-20 | Refactor away `ast::Attribute_`. | Jeffrey Seyfried | -4/+4 |
| 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 |