| Age | Commit message (Expand) | Author | Lines |
| 2018-06-03 | restore emplacement syntax (obsolete) | Niko Matsakis | -0/+7 |
| 2018-05-06 | Fix assertion message generation | Shotaro Yamada | -1/+1 |
| 2018-05-03 | Auto merge of #50030 - flip1995:rfc2103, r=petrochenkov | bors | -16/+21 |
| 2018-05-03 | Remove parse::escape_default(). | Nicholas Nethercote | -1/+1 |
| 2018-05-02 | make it compile again | flip1995 | -8/+8 |
| 2018-05-02 | Remove Option from the return type of Attribute::name() | Seiichi Uchida | -0/+1 |
| 2018-05-02 | Allow Path for name of MetaItem | Seiichi Uchida | -16/+20 |
| 2018-04-26 | rustc_target: move in syntax::abi and flip dependency. | Irina Popa | -1/+1 |
| 2018-04-18 | Auto merge of #49993 - nnethercote:shrink-Token, r=alexcrichton | bors | -3/+3 |
| 2018-04-12 | AST/HIR: Merge field access expressions for named and numeric fields | Vadim Petrochenkov | -7/+1 |
| 2018-04-12 | Change the hashcounts in raw `Lit` variants from usize to u16. | Nicholas Nethercote | -3/+3 |
| 2018-04-07 | Inject the `compiler_builtins` crate whenever the `core` crate is injected | Oliver Schneider | -1/+1 |
| 2018-04-06 | Use `Ident` instead of `Name` in `MetaItem` | Vadim Petrochenkov | -7/+7 |
| 2018-04-06 | Make lifetime nonterminals closer to identifier nonterminals | Vadim Petrochenkov | -1/+1 |
| 2018-04-06 | Rename `ast::Variant_::name` into `ident` + Fix rebase | Vadim Petrochenkov | -2/+2 |
| 2018-04-06 | Get rid of `SpannedIdent` | Vadim Petrochenkov | -26/+26 |
| 2018-04-06 | Rename `PathSegment::identifier` to `ident` | Vadim Petrochenkov | -12/+12 |
| 2018-04-06 | Use `Span` instead of `SyntaxContext` in `Ident` | Vadim Petrochenkov | -2/+2 |
| 2018-04-05 | Rollup merge of #49350 - abonander:macros-in-extern, r=petrochenkov | Alex Crichton | -0/+9 |
| 2018-04-03 | expand macro invocations in `extern {}` blocks | Austin Bonander | -0/+9 |
| 2018-04-03 | Remove all unstable placement features | Aidan Hobson Sayers | -13/+0 |
| 2018-03-27 | Fix pretty-printing for raw identifiers | Vadim Petrochenkov | -1/+5 |
| 2018-03-18 | Initial implementation of RFC 2151, Raw Identifiers | Lymia Aluysia | -19/+21 |
| 2018-03-18 | Auto merge of #48917 - petrochenkov:import, r=oli-obk | bors | -38/+27 |
| 2018-03-17 | Rename `Span::empty` to `Span::shrink_to_lo`, add `Span::shrink_to_hi` | Vadim Petrochenkov | -2/+2 |
| 2018-03-17 | AST: Keep distinction between `path` and `::path` in imports and visibilities | Vadim Petrochenkov | -24/+19 |
| 2018-03-17 | AST: Make renames in imports closer to the source | Vadim Petrochenkov | -4/+3 |
| 2018-03-17 | AST/HIR: Clarify what the optional name in extern crate items mean | Vadim Petrochenkov | -8/+3 |
| 2018-03-17 | syntax: Make `_` an identifier | Vadim Petrochenkov | -1/+0 |
| 2018-03-14 | Remove syntax and syntax_pos thread locals | John Kåre Alsaker | -23/+28 |
| 2018-03-01 | Support parentheses in patterns under feature gate | Vadim Petrochenkov | -0/+5 |
| 2018-02-24 | Implement multiple patterns with `|` in `if let` and `while let` | Vadim Petrochenkov | -18/+23 |
| 2018-02-18 | Replace dummy spans with empty spans | Seiichi Uchida | -2/+2 |
| 2018-02-18 | Change ast::Visibility to Spanned type | Seiichi Uchida | -11/+19 |
| 2018-01-25 | Rollup merge of #47502 - petrochenkov:label, r=eddyb | Alex Crichton | -18/+18 |
| 2018-01-23 | Adds support for immovable generators. Move checking of invalid borrows acros... | John Kåre Alsaker | -1/+10 |
| 2018-01-22 | AST/HIR: Add a separate structure for labels | Vadim Petrochenkov | -18/+18 |
| 2018-01-15 | Use single source of truth for expr precedence | Esteban Küber | -1/+1 |
| 2018-01-13 | Remove `impl Foo for ..` in favor of `auto trait Foo` | leonardo.yvens | -12/+0 |
| 2017-12-28 | Resurrecting #33135 | Michael Hewson | -0/+1 |
| 2017-12-21 | Add GenericParam, refactor Generics in ast, hir, rustdoc | Jonas Platte | -67/+44 |
| 2017-12-20 | Fix whitespacing issues in pretty-printing of bounds | Vadim Petrochenkov | -17/+18 |
| 2017-12-14 | add trait aliases to AST | Alex Burka | -0/+21 |
| 2017-12-14 | Use PathBuf instead of String where applicable | Oliver Schneider | -3/+3 |
| 2017-12-12 | Improve pretty printing `$crate::` paths. | Jeffrey Seyfried | -1/+19 |
| 2017-11-30 | Implement RFC 2128 (use_nested_groups) | Pietro Albini | -28/+22 |
| 2017-11-10 | Auto merge of #45773 - Badel2:dotdoteq, r=petrochenkov | bors | -1/+1 |
| 2017-11-07 | Rollup merge of #45784 - harpocrates:fix/print-parens-cast-lt, r=kennytm | kennytm | -0/+9 |
| 2017-11-06 | Inclusive range updated to `..=` syntax | Badel2 | -1/+1 |
| 2017-11-05 | Pretty print parens around casts on the LHS of '<' | Alec Theriault | -0/+9 |