| Age | Commit message (Expand) | Author | Lines |
| 2015-08-09 | Use https URLs to refer to rust-lang.org where appropriate. | Eli Friedman | -3/+3 |
| 2015-08-10 | Avoid adding extra paren with two casts | Garming Sam | -1/+5 |
| 2015-08-09 | Casts are a type of binop | Garming Sam | -1/+1 |
| 2015-08-09 | Add operator precedence for pretty printer | Garming Sam | -2/+25 |
| 2015-08-09 | Binary ops should add parenthesis to each side | Garming Sam | -2/+2 |
| 2015-08-08 | rustc: rename multiple imports in a list | Sean McArthur | -19/+65 |
| 2015-08-07 | improve span of erroneous empty macro invocation | Tim Neumann | -22/+27 |
| 2015-08-06 | Auto merge of #27296 - jroesch:type-macros, r=huonw | bors | -2/+105 |
| 2015-08-04 | Fix last nits | Jared Roesch | -1/+2 |
| 2015-08-04 | Address final nits | Jared Roesch | -2/+4 |
| 2015-08-04 | Actually commit tests | Jared Roesch | -1/+1 |
| 2015-08-04 | Address nits | Jared Roesch | -1/+0 |
| 2015-08-04 | Add feature gate | Jared Roesch | -21/+35 |
| 2015-08-04 | Update and add test case | Jared Roesch | -1/+6 |
| 2015-08-04 | Extend macro machinery to expand macros in types | Jared Roesch | -0/+58 |
| 2015-08-04 | Make parser recognize macro invocations in types | Jared Roesch | -2/+15 |
| 2015-08-04 | Add a macro invocation to the type AST | Jared Roesch | -0/+11 |
| 2015-08-04 | syntax: Don't assume `std` exists for tests | Alex Crichton | -14/+9 |
| 2015-08-03 | syntax: Implement #![no_core] | Alex Crichton | -206/+107 |
| 2015-08-03 | Auto merge of #27134 - fhartwig:derive, r=huonw | bors | -0/+11 |
| 2015-08-01 | Auto merge of #27447 - eefriedman:parser-cleanup, r=alexcrichton | bors | -31/+0 |
| 2015-07-31 | Auto merge of #27432 - sanxiyn:impl-dotdot, r=sfackler | bors | -1/+1 |
| 2015-07-31 | Fix `impl A .. {}` | Seo Sanghyeon | -1/+1 |
| 2015-07-30 | Remove unused code in parser. | Eli Friedman | -31/+0 |
| 2015-07-29 | Feature gate associated type defaults | Brian Anderson | -1/+8 |
| 2015-07-29 | Formatting | Brian Anderson | -1/+2 |
| 2015-07-29 | Rollup merge of #27313 - nagisa:illegal-to-invalid, r=pnkfelix | Steve Klabnik | -17/+17 |
| 2015-07-29 | Auto merge of #26846 - P1start:print-maybe-styled-macro, r=pnkfelix | bors | -20/+38 |
| 2015-07-29 | Replace illegal with invalid in most diagnostics | Simonas Kazlauskas | -17/+17 |
| 2015-07-28 | Auto merge of #27234 - oli-obk:move_get_name_get_ident_to_impl, r=eddyb | bors | -192/+164 |
| 2015-07-28 | remove `get_ident` and `get_name`, make `as_str` sound | Oliver Schneider | -192/+164 |
| 2015-07-27 | Turn on `box(PLACE) expr` deprecation warning post-snapshot. | Eduard Burtescu | -11/+7 |
| 2015-07-26 | Auto merge of #27297 - mitaa:cleanup_E0005, r=alexcrichton | bors | -18/+3 |
| 2015-07-26 | Remove `ast::LocalSource` with only one used variant | mitaa | -18/+3 |
| 2015-07-25 | Add omitted trailing comma | Jared Roesch | -1/+1 |
| 2015-07-25 | Add feature gate | Jared Roesch | -2/+7 |
| 2015-07-25 | Auto merge of #26630 - eefriedman:recursive-static, r=pnkfelix | bors | -0/+6 |
| 2015-07-25 | Auto merge of #27253 - bossmc:unbalanced-delimiters-cause-ice, r=nikomatsakis | bors | -2/+2 |
| 2015-07-24 | Add static_recursion feature gate. | Eli Friedman | -0/+6 |
| 2015-07-24 | Auto merge of #27215 - pnkfelix:fsk-placer-take-5-just-in, r=nikomatsakis | bors | -12/+371 |
| 2015-07-24 | Make ICE an error and use a sensible error message | Andy Caldwell | -2/+2 |
| 2015-07-23 | review feedback: common-subexpression-elim across functions in pushpop_safe i... | Felix S. Klock II | -4/+4 |
| 2015-07-23 | add `#[allow(unused_qualifications)]` to derived impls | Andrew Paseltiner | -1/+7 |
| 2015-07-23 | Auto merge of #27203 - marcusklaas:fix-range-span, r=alexcrichton | bors | -4/+5 |
| 2015-07-22 | placate `make tidy`. | Felix S. Klock II | -3/+9 |
| 2015-07-22 | Added support for parsing `in PLACE { BLOCK_CONTENT }`. | Felix S. Klock II | -8/+33 |
| 2015-07-22 | Instrumentation in effort to understand treatment of `allow_internal_unstable`. | Felix S. Klock II | -0/+4 |
| 2015-07-22 | Allow unstable code to be injected by placement-`in` expansion. | Felix S. Klock II | -3/+23 |
| 2015-07-22 | Add feature-gates for desugaring-based `box` and placement-`in`. | Felix S. Klock II | -1/+63 |
| 2015-07-22 | Revise placement-in expansion to use `push/pop_unsafe` and `move_val_init`. | Felix S. Klock II | -24/+37 |