| Age | Commit message (Expand) | Author | Lines |
| 2018-05-19 | rustc: introduce {ast,hir}::AnonConst to consolidate so-called "embedded cons... | Eduard-Mihai Burtescu | -6/+18 |
| 2018-05-18 | rustc: Fix joint-ness of stringified token-streams | Alex Crichton | -17/+42 |
| 2018-05-18 | Make `Directory::path` a `Cow`. | Nicholas Nethercote | -10/+12 |
| 2018-05-18 | Auto merge of #50307 - petrochenkov:keyhyg2, r=nikomatsakis | bors | -45/+7 |
| 2018-05-18 | Auto merge of #50566 - nnethercote:bump, r=petrochenkov | bors | -65/+55 |
| 2018-05-17 | Turn some functions from `token.rs` into methods on `Ident` | Vadim Petrochenkov | -51/+8 |
| 2018-05-17 | Add two keywords specific to editions 2015 and 2018 respectively | Vadim Petrochenkov | -2/+7 |
| 2018-05-16 | Auto merge of #50045 - est31:label_break_value, r=eddyb | bors | -8/+16 |
| 2018-05-16 | label-break-value: Parsing and AST/HIR changes | est31 | -8/+16 |
| 2018-05-15 | Represent lifetimes as two joint tokens in proc macros | Vadim Petrochenkov | -4/+7 |
| 2018-05-15 | proc_macro: Validate inputs to `Punct::new` and `Ident::new` | Vadim Petrochenkov | -0/+9 |
| 2018-05-14 | Remove `StringReader::col`. | Nicholas Nethercote | -7/+13 |
| 2018-05-14 | Make `nextnextch()` more closely resemble `nextch()`. | Nicholas Nethercote | -8/+7 |
| 2018-05-13 | Macros: Add a 'literal' fragment specifier | Dan Aloni | -10/+29 |
| 2018-05-13 | Remove `StringReader::terminator`. | Nicholas Nethercote | -20/+11 |
| 2018-05-13 | Rename some stuff in `StringReader`. | Nicholas Nethercote | -29/+24 |
| 2018-05-13 | Tweak naming and ordering in `StringReader::bump()`. | Nicholas Nethercote | -16/+15 |
| 2018-05-10 | Fix tuple struct field spans | Esteban Küber | -1/+1 |
| 2018-05-09 | Optimize string handling in lit_token(). | Nicholas Nethercote | -6/+17 |
| 2018-05-03 | Auto merge of #50413 - kennytm:rollup, r=kennytm | bors | -1/+1 |
| 2018-05-03 | Auto merge of #50030 - flip1995:rfc2103, r=petrochenkov | bors | -6/+7 |
| 2018-05-03 | check if the token is a lifetime before parsing | rleungx | -1/+1 |
| 2018-05-03 | Remove parse::escape_default(). | Nicholas Nethercote | -6/+2 |
| 2018-05-02 | make it compile again | flip1995 | -6/+6 |
| 2018-05-02 | Remove Option from the return type of Attribute::name() | Seiichi Uchida | -4/+4 |
| 2018-05-02 | Allow Path for name of MetaItem | Seiichi Uchida | -3/+4 |
| 2018-04-28 | Auto merge of #50155 - est31:label_expressions, r=petrochenkov | bors | -1/+2 |
| 2018-04-26 | rustc_target: move in syntax::abi and flip dependency. | Irina Popa | -2/+2 |
| 2018-04-23 | 'label can start expressions | est31 | -1/+2 |
| 2018-04-23 | Auto merge of #48946 - PramodBisht:issues/48636, r=estebank | bors | -1/+16 |
| 2018-04-22 | 1) Addresses #48636 | Pramod Bisht | -1/+16 |
| 2018-04-22 | parser: Do not override syntactic context for dummy spans | Vadim Petrochenkov | -1/+2 |
| 2018-04-20 | Auto merge of #50052 - nnethercote:char_lit, r=Mark-Simulacrum | bors | -2/+10 |
| 2018-04-18 | proc_macro: Stay on the "use the cache" path more | Alex Crichton | -9/+91 |
| 2018-04-19 | Avoid allocating when parsing \u{...} literals. | Nicholas Nethercote | -2/+10 |
| 2018-04-18 | Auto merge of #49993 - nnethercote:shrink-Token, r=alexcrichton | bors | -5/+5 |
| 2018-04-14 | Rollup merge of #49852 - alexcrichton:fix-more-proc-macros, r=nrc | kennytm | -9/+22 |
| 2018-04-14 | macros: Do not match on "complex" nonterminals requiring AST comparisons | Vadim Petrochenkov | -1/+17 |
| 2018-04-12 | Avoid comparing fields by name when possible | Vadim Petrochenkov | -3/+2 |
| 2018-04-12 | AST/HIR: Merge field access expressions for named and numeric fields | Vadim Petrochenkov | -32/+5 |
| 2018-04-12 | Change the hashcounts in raw `Lit` variants from usize to u16. | Nicholas Nethercote | -5/+5 |
| 2018-04-12 | Auto merge of #49698 - SimonSapin:unicode-for-everyone, r=alexcrichton | bors | -1/+1 |
| 2018-04-12 | Deprecate the std_unicode crate | Simon Sapin | -1/+1 |
| 2018-04-11 | Rollup merge of #49525 - varkor:sort_by_cached_key-conversion, r=scottmcm | kennytm | -1/+1 |
| 2018-04-10 | proc_macro: Avoid cached TokenStream more often | Alex Crichton | -9/+22 |
| 2018-04-10 | Auto merge of #49390 - Zoxc:sync-syntax, r=michaelwoerister | bors | -29/+18 |
| 2018-04-09 | in which `!` is suggested for erroneous identifier `not` | Zack M. Davis | -2/+52 |
| 2018-04-09 | don't suggest placing code in block if next token is open-brace | Zack M. Davis | -0/+5 |
| 2018-04-09 | Convert sort_by to sort_by_cached_key | varkor | -1/+1 |
| 2018-04-06 | Use `Ident` instead of `Name` in `MetaItem` | Vadim Petrochenkov | -5/+4 |