| Age | Commit message (Expand) | Author | Lines |
| 2017-01-17 | Introduce `string_reader.parse_all_token_trees()`. | Jeffrey Seyfried | -15/+184 |
| 2017-01-17 | Give the `StringReader` a `sess: &ParseSess`. | Jeffrey Seyfried | -58/+51 |
| 2017-01-17 | Rename ObjectSum into TraitObject in AST/HIR | Vadim Petrochenkov | -2/+2 |
| 2017-01-17 | Remove field `tokens_consumed` of `Parser`. | Jeffrey Seyfried | -3/+0 |
| 2017-01-17 | syntax: Rename parse_ty -> parse_ty_no_plus, parse_ty_sum -> parse_ty | Vadim Petrochenkov | -37/+41 |
| 2017-01-17 | Use resizable Vec instead of P<[T]> in AST | Vadim Petrochenkov | -19/+19 |
| 2017-01-17 | AST/HIR: Merge ObjectSum and PolyTraitRef | Vadim Petrochenkov | -4/+52 |
| 2017-01-16 | Rename ExprKind::Vec to Array in HIR and HAIR. | Scott Olson | -3/+3 |
| 2017-01-11 | syntax: struct field attributes and cfg | Benjamin Saunders | -3/+10 |
| 2016-12-30 | Such large. Very 128. Much bits. | Simonas Kazlauskas | -3/+9 |
| 2016-12-24 | Auto merge of #38268 - withoutboats:parse_where_higher_rank_hack, r=eddyb | bors | -0/+17 |
| 2016-12-22 | Refactor how global paths are represented (for both ast and hir). | Jeffrey Seyfried | -14/+12 |
| 2016-12-19 | Optimize `ast::PathSegment`. | Jeffrey Seyfried | -70/+23 |
| 2016-12-17 | Auto merge of #38279 - KalitaAlexey:issue-8521, r=jseyfried | bors | -1/+1 |
| 2016-12-17 | Auto merge of #38205 - jseyfried:fix_module_directory_regression, r=eddyb | bors | -9/+10 |
| 2016-12-16 | Allow path fragments to be parsed as type parameter bounds in macro expansion | Kalita Alexey | -1/+1 |
| 2016-12-12 | Auto merge of #38049 - frewsxcv:libunicode, r=alexcrichton | bors | -1/+1 |
| 2016-12-09 | Fix mistake. | Without Boats | -1/+1 |
| 2016-12-09 | Improve error message. | Without Boats | -1/+1 |
| 2016-12-09 | Prevent where < ident > from parsing. | Without Boats | -0/+17 |
| 2016-12-07 | macros: fix the expected paths for a non-inline module matched by an `item` f... | Jeffrey Seyfried | -9/+10 |
| 2016-12-06 | annotate stricter lifetimes on LateLintPass methods to allow them to forward ... | Oliver Schneider | -2/+2 |
| 2016-11-30 | Rename 'librustc_unicode' crate to 'libstd_unicode'. | Corey Farwell | -1/+1 |
| 2016-11-25 | Support `?Sized` in where clauses | Vadim Petrochenkov | -27/+10 |
| 2016-11-22 | Auto merge of #37487 - goffrie:break, r=nikomatsakis | bors | -5/+15 |
| 2016-11-21 | Implement the `loop_break_value` feature. | Geoffry Song | -5/+15 |
| 2016-11-22 | Start warning cycle. | Jeffrey Seyfried | -11/+37 |
| 2016-11-22 | Clean up directory ownership semantics. | Jeffrey Seyfried | -57/+66 |
| 2016-11-21 | Fix fallout in `rustdoc` and tests. | Jeffrey Seyfried | -32/+28 |
| 2016-11-21 | Cleanup `InternedString`. | Jeffrey Seyfried | -1/+1 |
| 2016-11-21 | Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p... | Jeffrey Seyfried | -75/+47 |
| 2016-11-20 | Move `syntax::util::interner` -> `syntax::symbol`, cleanup. | Jeffrey Seyfried | -309/+45 |
| 2016-11-20 | Refactor `P<ast::MetaItem>` -> `ast::MetaItem`. | Jeffrey Seyfried | -5/+4 |
| 2016-11-20 | Move `MetaItemKind`'s `Name` to a field of `MetaItem`. | Jeffrey Seyfried | -17/+9 |
| 2016-11-20 | Refactor `CrateConfig`. | Jeffrey Seyfried | -1/+2 |
| 2016-11-20 | Refactor `MetaItemKind` to use `Name`s instead of `InternedString`s. | Jeffrey Seyfried | -4/+3 |
| 2016-11-20 | Avoid clearing the string interner. | Jeffrey Seyfried | -4/+0 |
| 2016-11-20 | Refactor away `ast::Attribute_`. | Jeffrey Seyfried | -14/+10 |
| 2016-11-14 | Auto merge of #37278 - matklad:lone-lifetime, r=jseyfried | bors | -1/+1 |
| 2016-11-14 | Fix where clauses parsing | Aleksey Kladov | -1/+1 |
| 2016-11-13 | Auto merge of #37753 - est31:master, r=petrochenkov | bors | -3/+3 |
| 2016-11-13 | Fix empty lifetime list or one with trailing comma being rejected | est31 | -3/+3 |
| 2016-11-10 | syntax: don't fake a block around closures' bodies during parsing. | Eduard Burtescu | -16/+3 |
| 2016-11-04 | Remove field `TtReader::next_tok`. | Jeffrey Seyfried | -2/+2 |
| 2016-11-04 | Improve `tt`-heavy expansion performance. | Jeffrey Seyfried | -1/+8 |
| 2016-11-03 | Move doc comment desugaring into the parser. | Jeffrey Seyfried | -1/+12 |
| 2016-11-03 | Avoid recontructing the `Parser` in `macro_parser.rs`. | Jeffrey Seyfried | -21/+0 |
| 2016-11-03 | Reimplement "macros: Improve `tt` fragments" with better performance. | Jeffrey Seyfried | -18/+61 |
| 2016-11-03 | Reduce the size of `Token` and make it cheaper to clone by refactoring | Jeffrey Seyfried | -159/+68 |
| 2016-11-03 | Clean up `parser.parse_token_tree()`. | Jeffrey Seyfried | -22/+13 |