| Age | Commit message (Expand) | Author | Lines |
| 2016-07-17 | Auto merge of #34789 - jonathandturner:simplify_liberror, r=alexcrichton | bors | -2/+6 |
| 2016-07-15 | Auto merge of #34676 - aravind-pg:inner-attr, r=brson | bors | -14/+56 |
| 2016-07-15 | syntax: Better error message for inner attr following doc comment | Aravind Gollakota | -14/+56 |
| 2016-07-15 | Added tokenstream parser procedure | cgswords | -1/+9 |
| 2016-07-15 | Auto merge of #34570 - jseyfried:no_rename, r=nrc | bors | -30/+0 |
| 2016-07-14 | Remove BasicEmitter | Jonathan Turner | -2/+6 |
| 2016-07-14 | Remove irrelevant tests | Jeffrey Seyfried | -18/+0 |
| 2016-07-14 | Instead of renaming, treat differently marked identifiers as unequal | Jeffrey Seyfried | -12/+0 |
| 2016-07-13 | Auto merge of #34772 - jseyfried:cleanup_interner, r=eddyb | bors | -21/+20 |
| 2016-07-13 | Start a best-effort warning cycle. | Jeffrey Seyfried | -5/+36 |
| 2016-07-13 | cleanup: Refactor parser method `finish_parsing_statement` -> `parse_full_stmt`. | Jeffrey Seyfried | -6/+12 |
| 2016-07-13 | Allow macro-expanded macros in trailing expression positions to expand into s... | Jeffrey Seyfried | -1/+2 |
| 2016-07-12 | Parse macro-expanded statements like ordinary statements. | Jeffrey Seyfried | -2/+2 |
| 2016-07-12 | Clean up statement parsing without changing the semantics of `parse_stmt`. | Jeffrey Seyfried | -104/+45 |
| 2016-07-11 | Factor the `RefCell` out of the `Interner`. | Jeffrey Seyfried | -6/+7 |
| 2016-07-11 | Refactor `get_ident_interner` -> `with_ident_interner`. | Jeffrey Seyfried | -12/+13 |
| 2016-07-11 | Remove `Interner<T>` and rename `StrInterner` to `Interner`. | Jeffrey Seyfried | -3/+3 |
| 2016-07-11 | Encapsulate `RcStr` in `syntax::util::interner`. | Jeffrey Seyfried | -6/+5 |
| 2016-07-11 | Remove unused field `interner` from the parser. | Jeffrey Seyfried | -2/+0 |
| 2016-07-08 | Rollup merge of #34691 - jseyfried:remove_erroneous_unit_struct_checks, r=nrc | Manish Goregaokar | -72/+11 |
| 2016-07-06 | Auto merge of #34652 - jseyfried:fix_expansion_perf, r=nrc | bors | -15/+17 |
| 2016-07-06 | Remove outdated checks for empty braced struct expressions (i.e. `UnitStruct ... | Jeffrey Seyfried | -72/+11 |
| 2016-07-06 | Auto merge of #34546 - jseyfried:cfg_attr_path, r=nrc | bors | -2/+9 |
| 2016-07-05 | Specific error message for missplaced doc comments | Esteban Küber | -17/+45 |
| 2016-07-04 | Revert "Change `fold_tt` and `fold_tts` to take token trees by value (instead... | Jeffrey Seyfried | -15/+17 |
| 2016-07-03 | prefer `if let` to match with `None => {}` arm in some places | Zack M. Davis | -26/+16 |
| 2016-06-29 | Support `cfg_attr` on `path` attributes | Jeffrey Seyfried | -2/+9 |
| 2016-06-29 | Refactor away `parser.commit_stmt_expecting()` | Jeffrey Seyfried | -5/+1 |
| 2016-06-26 | Rollup merge of #34436 - jseyfried:no_block_expr, r=eddyb | Jeffrey Seyfried | -18/+10 |
| 2016-06-26 | Rollup merge of #34339 - jseyfried:thin_vec, r=petrochenkov,Manishearth | Jeffrey Seyfried | -88/+82 |
| 2016-06-26 | Rollup merge of #34316 - jseyfried:refactor_ast_stmt, r=eddyb | Jeffrey Seyfried | -103/+110 |
| 2016-06-26 | Rollup merge of #33943 - jseyfried:libsyntax_cleanup, r=nrc | Jeffrey Seyfried | -28/+26 |
| 2016-06-26 | Rollup merge of #34385 - cgswords:tstream, r=nrc | Jeffrey Seyfried | -14/+19 |
| 2016-06-25 | Rollup merge of #34403 - jonathandturner:move_liberror, r=alexcrichton | Jeffrey Seyfried | -45/+54 |
| 2016-06-25 | Rollup merge of #34368 - petrochenkov:astqpath, r=Manishearth | Jeffrey Seyfried | -6/+1 |
| 2016-06-25 | Rollup merge of #34213 - josephDunne:trait_item_macros, r=jseyfried | Jeffrey Seyfried | -67/+91 |
| 2016-06-24 | Add `ecx.stmt_semi()` and fix issues with the pretty-printer | Jeffrey Seyfried | -1/+0 |
| 2016-06-23 | make old school mode a bit more configurable | Jonathan Turner | -1/+4 |
| 2016-06-23 | Remove field `expr` of `ast::Block` | Jeffrey Seyfried | -22/+8 |
| 2016-06-23 | Address more travis errors | Jonathan Turner | -2/+3 |
| 2016-06-23 | Address comments and fix travis warning | Jonathan Turner | -2/+2 |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -44/+49 |
| 2016-06-21 | Refactored tokentrees into their own files in preparation for tokenstreams. M... | cgswords | -14/+19 |
| 2016-06-20 | Merge PatKind::QPath into PatKind::Path in AST | Vadim Petrochenkov | -6/+1 |
| 2016-06-19 | Generalize and abstract `ThinAttributes` | Jeffrey Seyfried | -88/+82 |
| 2016-06-17 | Rename `ast::ExprKind::Again` -> `ast::ExprKind::Continue` | Jeffrey Seyfried | -2/+2 |
| 2016-06-17 | Fix fallout | Jeffrey Seyfried | -99/+106 |
| 2016-06-16 | Add an abs_path member to FileMap, use it when writing debug info. | Ted Mielczarek | -3/+3 |
| 2016-06-15 | prefer `if let` to match with `None => ()` arm in some places | Zack M. Davis | -12/+9 |
| 2016-06-14 | Remove the type parameter from `syntax::visit::Visitor` | Jeffrey Seyfried | -2/+2 |