| Age | Commit message (Expand) | Author | Lines |
| 2014-12-20 | Allow use of `[_ ; n]` syntax for fixed length and repeating arrays. | Nick Cameron | -1/+10 |
| 2014-12-20 | Drop the Match prefix from the MatchSource variants | Barosl Lee | -2/+2 |
| 2014-12-19 | libsyntax: use `#[deriving(Copy)]` | Jorge Aparicio | -3/+1 |
| 2014-12-18 | librustc: Always parse `macro!()`/`macro![]` as expressions if not | Patrick Walton | -43/+108 |
| 2014-12-16 | AST refactor: make the place in ExprBox an option. | Felix S. Klock II | -1/+4 |
| 2014-12-15 | auto merge of #19742 : vhbit/rust/copy-for-bitflags, r=alexcrichton | bors | -1/+0 |
| 2014-12-14 | Parse `unsafe impl` but don't do anything particularly interesting with the r... | Niko Matsakis | -3/+19 |
| 2014-12-14 | Parse `unsafe trait` but do not do anything with it beyond parsing and integr... | Niko Matsakis | -3/+21 |
| 2014-12-14 | Rename FnStyle trait to Unsafety. | Niko Matsakis | -29/+19 |
| 2014-12-14 | Remove `proc` types/expressions from the parser, compiler, and | Niko Matsakis | -32/+19 |
| 2014-12-13 | libsyntax: use tuple indexing | Jorge Aparicio | -2/+2 |
| 2014-12-13 | libsyntax: use unboxed closures | Jorge Aparicio | -58/+74 |
| 2014-12-13 | Add `Copy` to bitflags-generated structures | Valerii Hiora | -1/+0 |
| 2014-12-12 | Add support for equality constraints on associated types | Nick Cameron | -42/+135 |
| 2014-12-08 | librustc: Make `Copy` opt-in. | Niko Matsakis | -0/+4 |
| 2014-12-05 | rollup merge of #19494: P1start/better-expected | Corey Richardson | -68/+115 |
| 2014-12-05 | rollup merge of #19413: P1start/more-trailing-commas | Corey Richardson | -0/+5 |
| 2014-12-04 | Make the parser’s ‘expected <foo>, found <bar>’ errors more accurate | P1start | -68/+115 |
| 2014-12-02 | auto merge of #19427 : scialex/rust/doc-attr-macros, r=sfackler | bors | -0/+6 |
| 2014-12-01 | auto merge of #19405 : jfager/rust/de-match-pyramid, r=bstrie | bors | -44/+19 |
| 2014-11-30 | allow macro expansions in attributes | Alexander Light | -0/+6 |
| 2014-11-30 | Allow trailing commas in array patterns and attributes | P1start | -0/+5 |
| 2014-11-30 | Fix the ordering of `unsafe` and `extern` in methods | P1start | -7/+8 |
| 2014-11-29 | Replace some verbose match statements with their `if let` equivalent. | jfager | -44/+19 |
| 2014-11-26 | rollup merge of #19329: steveklabnik/doc_style_cleanup2 | Alex Crichton | -13/+8 |
| 2014-11-26 | /*! -> //! | Steve Klabnik | -13/+8 |
| 2014-11-26 | Implement the new parsing rules for types in the parser, modifying the AST ap... | Niko Matsakis | -107/+85 |
| 2014-11-25 | Deprecate MaybeOwned[Vector] in favor of Cow | Jorge Aparicio | -2/+2 |
| 2014-11-23 | Remove type parameters from ExprField and ExprTupField | Adolfo Ochagavía | -17/+11 |
| 2014-11-23 | libsyntax: Forbid type parameters in tuple indices | Adolfo Ochagavía | -16/+8 |
| 2014-11-20 | auto merge of #19113 : nikomatsakis/rust/unboxed-boxed-closure-unification, r... | bors | -18/+8 |
| 2014-11-19 | rollup merge of #19103: huonw/literal-suffixes | Jakub Bukaj | -30/+92 |
| 2014-11-19 | Merge the ExprFnBlock and ExprUnboxedClosure into one ExprClosure with an opt... | Niko Matsakis | -18/+8 |
| 2014-11-20 | Switch numeric suffix parsing to use the new system. | Huon Wilson | -6/+19 |
| 2014-11-20 | Parse and store suffixes on literals. | Huon Wilson | -30/+79 |
| 2014-11-19 | Refactor QPath to take an ast::TraitRef | Niko Matsakis | -5/+5 |
| 2014-11-19 | Switch to an independent enum for `Lit*` subtokens. | Huon Wilson | -14/+14 |
| 2014-11-18 | auto merge of #19044 : murarth/rust/libsyntax-view-item, r=alexcrichton | bors | -0/+8 |
| 2014-11-18 | Convert TyPolyTraitRef to accept arbitary bounds, so that things like | Niko Matsakis | -3/+14 |
| 2014-11-17 | libsyntax: Add `parse_view_item` method to Parser | Murarth | -0/+8 |
| 2014-11-18 | rollup merge of #19020: Gankro/better-warn | Jakub Bukaj | -1/+2 |
| 2014-11-18 | rollup merge of #19018: tomjakubowski/fix-issue-19003 | Jakub Bukaj | -1/+9 |
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -0/+3 |
| 2014-11-17 | slightly better deprecation message for fn syntax | Alexis Beingessner | -1/+2 |
| 2014-11-16 | Disallow parsing of struct variants with 0 fields | Tom Jakubowski | -1/+9 |
| 2014-11-16 | auto merge of #18994 : sfackler/rust/struct-variants-pt2, r=jakub- | bors | -4/+8 |
| 2014-11-16 | Complete the removal of ty_nil, ast::LitNil, ast::TyBot and ast::TyUniq | Jakub Bukaj | -96/+60 |
| 2014-11-15 | Un-feature gate struct variants | Steven Fackler | -4/+8 |
| 2014-11-14 | auto merge of #18840 : huonw/rust/tweaks, r=alexcrichton | bors | -24/+40 |
| 2014-11-14 | auto merge of #18827 : bjz/rust/rfc369-numerics, r=alexcrichton | bors | -0/+1 |