| Age | Commit message (Expand) | Author | Lines |
| 2017-05-12 | Fix some clippy warnings in libsyntax | Andre Bogus | -165/+144 |
| 2017-05-07 | fix the easy features in libsyntax | ubsan | -1/+1 |
| 2017-04-24 | support `default impl` for specialization | Gianni Ciccarelli | -3/+10 |
| 2017-04-15 | update print_visibility for new pub(restricted) syntax | Alex Burka | -8/+6 |
| 2017-04-15 | Implementation of the `vis` macro matcher. | Daniel Keep | -0/+5 |
| 2017-04-12 | First attempt at global_asm! macro | A.J. Gardner | -0/+5 |
| 2017-04-02 | Introduce `TyErr` independent from `TyInfer` | Esteban Küber | -0/+3 |
| 2017-03-19 | Auto merge of #40346 - jseyfried:path_and_tokenstream_attr, r=nrc | bors | -41/+59 |
| 2017-03-14 | Refactor `Attribute` to use `Path` and `TokenStream` instead of `MetaItem`. | Jeffrey Seyfried | -41/+59 |
| 2017-03-11 | Temporarily prefix catch block with do keyword | Taylor Cramer | -1/+1 |
| 2017-03-11 | Add catch expr to AST and disallow catch as a struct name | Taylor Cramer | -0/+5 |
| 2017-03-10 | Avoid using `Mark` and `Invocation` for macro defs. | Jeffrey Seyfried | -1/+1 |
| 2017-03-10 | Refactor out `ast::ItemKind::MacroDef`. | Jeffrey Seyfried | -1/+10 |
| 2017-03-03 | Integrate `TokenStream`. | Jeffrey Seyfried | -12/+12 |
| 2017-02-28 | Remove `Token::MatchNt`. | Jeffrey Seyfried | -1/+0 |
| 2017-02-28 | Add `syntax::ext::tt::quoted::{TokenTree, ..}` and remove `tokenstream::Token... | Jeffrey Seyfried | -14/+0 |
| 2017-02-06 | A few documentation improvements for `syntax::print::pp` | bjorn3 | -78/+89 |
| 2017-02-04 | Auto merge of #36320 - GuillaumeGomez:rustdoc_test_info, r=alexcrichton | bors | -2/+3 |
| 2017-02-03 | Bump version, upgrade bootstrap | Alex Crichton | -2/+0 |
| 2017-02-03 | Switch logic to Span instead of HashMap | Guillaume Gomez | -2/+3 |
| 2017-01-25 | Auto merge of #35712 - oli-obk:exclusive_range_patterns, r=nikomatsakis | bors | -3/+6 |
| 2017-01-20 | Rollup merge of #39118 - jseyfried:token_tree_based_parser, r=nrc | Alex Crichton | -15/+6 |
| 2017-01-19 | add exclusive range patterns under a feature gate | Oliver Schneider | -3/+6 |
| 2017-01-17 | Auto merge of #39110 - petrochenkov:sum, r=eddyb | bors | -10/+8 |
| 2017-01-17 | Give the `StringReader` a `sess: &ParseSess`. | Jeffrey Seyfried | -15/+6 |
| 2017-01-17 | Rename ObjectSum into TraitObject in AST/HIR | Vadim Petrochenkov | -1/+1 |
| 2017-01-17 | Use resizable Vec instead of P<[T]> in AST | Vadim Petrochenkov | -2/+2 |
| 2017-01-17 | AST/HIR: Merge ObjectSum and PolyTraitRef | Vadim Petrochenkov | -5/+1 |
| 2017-01-16 | AST/HIR: Replace Path with Type in WhereEqPredicate | Vadim Petrochenkov | -3/+5 |
| 2017-01-16 | Rename ExprKind::Vec to Array in HIR and HAIR. | Scott Olson | -1/+1 |
| 2017-01-01 | Auto merge of #38692 - estebank:remove-try-from-pprust, r=petrochenkov | bors | -857/+857 |
| 2016-12-30 | Such large. Very 128. Much bits. | Simonas Kazlauskas | -2/+3 |
| 2016-12-29 | Use `?` instead of `try!` macro in `print::pprust` | Esteban Küber | -857/+857 |
| 2016-12-22 | Pretty-print `$crate::foo::bar` as `::foo::bar`. | Jeffrey Seyfried | -1/+2 |
| 2016-12-22 | Refactor how global paths are represented (for both ast and hir). | Jeffrey Seyfried | -31/+36 |
| 2016-12-19 | Optimize `ast::PathSegment`. | Jeffrey Seyfried | -6/+7 |
| 2016-11-21 | Implement the `loop_break_value` feature. | Geoffry Song | -1/+5 |
| 2016-11-21 | Fix fallout in `rustdoc` and tests. | Jeffrey Seyfried | -3/+2 |
| 2016-11-21 | Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p... | Jeffrey Seyfried | -13/+11 |
| 2016-11-20 | Move `syntax::util::interner` -> `syntax::symbol`, cleanup. | Jeffrey Seyfried | -4/+5 |
| 2016-11-20 | Move `MetaItemKind`'s `Name` to a field of `MetaItem`. | Jeffrey Seyfried | -6/+6 |
| 2016-11-20 | Refactor `MetaItemKind` to use `Name`s instead of `InternedString`s. | Jeffrey Seyfried | -8/+7 |
| 2016-11-20 | Refactor away `ast::Attribute_`. | Jeffrey Seyfried | -3/+3 |
| 2016-11-10 | syntax: don't fake a block around closures' bodies during parsing. | Eduard Burtescu | -20/+2 |
| 2016-11-03 | Reduce the size of `Token` and make it cheaper to clone by refactoring | Jeffrey Seyfried | -1/+1 |
| 2016-10-31 | Changed most vec! invocations to use square braces | iirelu | -1/+1 |
| 2016-10-27 | Implement field shorthands in struct literal expressions. | Eduard Burtescu | -2/+4 |
| 2016-10-19 | Rollup merge of #37241 - zackmdavis:if_let_over_none_spaced_empty_block_arm, ... | Guillaume Gomez | -7/+4 |
| 2016-10-19 | Improve `$crate`. | Jeffrey Seyfried | -2/+0 |
| 2016-10-19 | Rollup merge of #37202 - petrochenkov:pretty, r=nrc | Eduard-Mihai Burtescu | -18/+15 |