| Age | Commit message (Expand) | Author | Lines |
| 2016-11-03 | Reduce the size of `Token` and make it cheaper to clone by refactoring | Jeffrey Seyfried | -143/+44 |
| 2016-11-03 | Clean up `parser.parse_token_tree()`. | Jeffrey Seyfried | -22/+13 |
| 2016-10-31 | Changed most vec! invocations to use square braces | iirelu | -4/+4 |
| 2016-10-29 | Move `CrateConfig` from `Crate` to `ParseSess`. | Jeffrey Seyfried | -16/+3 |
| 2016-10-28 | Auto merge of #37367 - jseyfried:import_crate_root, r=nrc | bors | -4/+9 |
| 2016-10-28 | Rollup merge of #36206 - mcarton:35755, r=pnkfelix | Guillaume Gomez | -0/+11 |
| 2016-10-28 | Fix bad error message with `::<` in types | mcarton | -0/+11 |
| 2016-10-27 | Auto merge of #37245 - goffrie:recovery, r=nrc | bors | -2/+10 |
| 2016-10-26 | Recover out of an enum or struct's braced block. | Geoffry Song | -2/+10 |
| 2016-10-27 | Implement field shorthands in struct literal expressions. | Eduard Burtescu | -8/+21 |
| 2016-10-23 | Support `use *;` and `use ::*;`. | Jeffrey Seyfried | -4/+9 |
| 2016-10-20 | Tweak path parsing logic | Vadim Petrochenkov | -15/+23 |
| 2016-10-20 | Refactor parser lookahead buffer and increase its size | Vadim Petrochenkov | -38/+35 |
| 2016-10-19 | Improve `$crate`. | Jeffrey Seyfried | -3/+6 |
| 2016-10-05 | Rename Parser::last_token_kind as prev_token_kind. | Nicholas Nethercote | -17/+17 |
| 2016-10-05 | Rename Parser::last_span as prev_span. | Nicholas Nethercote | -158/+154 |
| 2016-10-01 | Rollup merge of #34764 - pnkfelix:attrs-on-generic-formals, r=eddyb | Manish Goregaokar | -9/+53 |
| 2016-10-01 | Rollup merge of #36599 - jonas-schievink:whats-a-pirates-favorite-data-struct... | Manish Goregaokar | -3/+3 |
| 2016-09-28 | Rollup merge of #36789 - jseyfried:non_inline_mod_in_block, r=nikomatsakis | Jonathan Turner | -9/+13 |
| 2016-09-28 | Allow non-inline modules in more places. | Jeffrey Seyfried | -9/+13 |
| 2016-09-28 | libsyntax: clearer names for some AST parts | Jonas Schievink | -3/+3 |
| 2016-09-26 | Rollup merge of #36669 - jseyfried:refactor_tok_result, r=nrc | Jonathan Turner | -11/+0 |
| 2016-09-26 | Rollup merge of #36662 - jseyfried:parse_macro_invoc_paths, r=nrc | Jonathan Turner | -252/+222 |
| 2016-09-26 | Move `ensure_complete_parse` into `expand.rs`. | Jeffrey Seyfried | -14/+0 |
| 2016-09-26 | Refactor `ensure_complete_parse`. | Jeffrey Seyfried | -9/+12 |
| 2016-09-23 | Added tests and fixed corner case for trailing attributes with no attached bi... | Felix S. Klock II | -1/+16 |
| 2016-09-23 | Add attribute support to generic lifetime and type parameters. | Felix S. Klock II | -9/+38 |
| 2016-09-23 | Fix indents. | Jeffrey Seyfried | -141/+131 |
| 2016-09-23 | Cleanup. | Jeffrey Seyfried | -40/+17 |
| 2016-09-23 | Parse paths in item, trait item, and impl item macro invocations. | Jeffrey Seyfried | -21/+6 |
| 2016-09-23 | Parse paths in statement and pattern macro invocations. | Jeffrey Seyfried | -31/+46 |
| 2016-09-23 | reviewer comments and rebasing | Nick Cameron | -7/+20 |
| 2016-09-22 | Refactor out `parse_struct_expr`. | Jeffrey Seyfried | -45/+48 |
| 2016-09-18 | Auto merge of #36527 - nnethercote:last_token_kind, r=jseyfried | bors | -43/+39 |
| 2016-09-17 | Auto merge of #36502 - TimNN:correct-cancel, r=jseyfried | bors | -5/+11 |
| 2016-09-16 | Auto merge of #36482 - jseyfried:dont_load_unconfigured_noninline_modules, r=nrc | bors | -9/+18 |
| 2016-09-16 | Optimize the parser's last token handling. | Nicholas Nethercote | -43/+39 |
| 2016-09-15 | correctly cancel some errors | Tim Neumann | -5/+11 |
| 2016-09-15 | Avoid loading and parsing unconfigured non-inline modules. | Jeffrey Seyfried | -9/+18 |
| 2016-09-13 | Remove parsing of obsolete pre-1.0 syntaxes | Vadim Petrochenkov | -32/+1 |
| 2016-09-05 | In `Parser` and `ExtCtxt`, replace fields `filename` and `mod_path_stack` | Jeffrey Seyfried | -26/+16 |
| 2016-09-03 | Check fields in union patters/expressions | Vadim Petrochenkov | -1/+3 |
| 2016-09-03 | Lower unions from AST to HIR and from HIR to types | Vadim Petrochenkov | -0/+31 |
| 2016-08-28 | Rollup merge of #35480 - KiChjang:e0379-bonus, r=nikomatsakis | Jeffrey Seyfried | -9/+24 |
| 2016-08-28 | Rollup merge of #35618 - jseyfried:ast_view_path_refactor, r=eddyb | Jeffrey Seyfried | -6/+9 |
| 2016-08-28 | Rollup merge of #35591 - GuillaumeGomez:generics_span, r=jntrmr | Jeffrey Seyfried | -3/+5 |
| 2016-08-27 | Change Constness to Spanned<Constness> | Keith Yeung | -9/+24 |
| 2016-08-23 | Improve error message when failing to parse a block | James Miller | -3/+24 |
| 2016-08-21 | Refactor away variant `ast::PathListItemKind::Mod` | Jeffrey Seyfried | -6/+9 |
| 2016-08-19 | Auto merge of #33922 - estebank:doc-comment, r=alexcrichton | bors | -16/+36 |