| Age | Commit message (Expand) | Author | Lines |
| 2012-08-06 | Fix log_syntax of unexpanded code. | Paul Stansifer | -9/+32 |
| 2012-08-06 | rustc: Implement pattern matching for structs | Patrick Walton | -0/+18 |
| 2012-08-06 | make `ref x` bindings produce region ptrs and fix various minor bugs | Niko Matsakis | -2/+6 |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -76/+76 |
| 2012-08-06 | rustc: Implement functional record update for structs | Patrick Walton | -2/+11 |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -249/+245 |
| 2012-08-03 | rustc: Merge fn& and fn in favor of fn&. | Patrick Walton | -1/+0 |
| 2012-08-03 | rustc: Parse and typecheck repeating vector expressions; e.g. [ 0, ..512 ] | Patrick Walton | -0/+16 |
| 2012-08-03 | rustc: Parse, serialize, and deserialize trait inheritance | Patrick Walton | -1/+6 |
| 2012-08-03 | rustc: Remove all fixed-length strings from our codebase | Patrick Walton | -2/+2 |
| 2012-08-02 | Purge placement new; Make borrowck know about unary move. | Niko Matsakis | -7/+0 |
| 2012-08-02 | Remove modes from map API and replace with regions. | Niko Matsakis | -6/+7 |
| 2012-08-01 | Convert ret to return | Brian Anderson | -34/+36 |
| 2012-08-01 | syntax: Allow any block-like expr to be used as alt arm w/o comma separator | Brian Anderson | -7/+11 |
| 2012-07-31 | rustc: Parse by-reference pattern bindings with the "ref" keyword | Patrick Walton | -3/+7 |
| 2012-07-31 | rustc: Implement unary move. Closes #917. | Patrick Walton | -0/+1 |
| 2012-07-31 | syntax: More tweaks to make alt arrows parse and print correctly | Brian Anderson | -1/+1 |
| 2012-07-31 | accept naked exprs with commas in pattern arms | Niko Matsakis | -4/+16 |
| 2012-07-31 | Change remaining "iface" occurrences to "trait"; deprecate "iface" | Lindsey Kuper | -1/+1 |
| 2012-07-30 | Fix pretty-printing of consecutive idents. | Paul Stansifer | -4/+8 |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -2/+2 |
| 2012-07-30 | Pretty-print token trees. | Paul Stansifer | -13/+38 |
| 2012-07-30 | Feed the interner to the pretty-printer, in anticipation of pretty-printing t... | Paul Stansifer | -4/+5 |
| 2012-07-30 | Impl-ize interner. | Paul Stansifer | -1/+6 |
| 2012-07-27 | Start killing off obsolete/unused quoters, and fix long lines. | Graydon Hoare | -10/+1 |
| 2012-07-24 | rustc: Don't require that structs have constructors | Patrick Walton | -11/+13 |
| 2012-07-23 | rustc: Max/min classes: Add struct literal syntax | Patrick Walton | -9/+17 |
| 2012-07-19 | Revert "accept naked exprs with commas in pattern arms" due to pretty-printin... | Patrick Walton | -16/+4 |
| 2012-07-18 | accept naked exprs with commas in pattern arms | Niko Matsakis | -4/+16 |
| 2012-07-18 | syntax: Parse multiple trait refs in a single implementation | Patrick Walton | -4/+6 |
| 2012-07-18 | prevent regions from escaping in ifaces; remove &r.T syntax | Niko Matsakis | -1/+1 |
| 2012-07-17 | Support attributes on class ctors and dtors | Tim Chevalier | -3/+9 |
| 2012-07-16 | introduce an owned kind for data that contains no borrowed ptrs | Niko Matsakis | -0/+1 |
| 2012-07-14 | remove typestate from code, tests, and docs | Niko Matsakis | -85/+2 |
| 2012-07-14 | Get rid of ast::ty_vstore, which was only used for fixed length. | Michael Sullivan | -12/+4 |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ... | Michael Sullivan | -254/+256 |
| 2012-07-13 | Change the pretty printer to print vstores for strs in prefix notation. | Michael Sullivan | -16/+10 |
| 2012-07-13 | Front-end support for default impls in traits. | Lindsey Kuper | -1/+9 |
| 2012-07-12 | Pretty-print regions in slices correctly | Tim Chevalier | -2/+11 |
| 2012-07-12 | Fix region printing in the prettyprinter | Tim Chevalier | -2/+2 |
| 2012-07-11 | infer when types are region parameterized rather than requiring /& | Niko Matsakis | -17/+5 |
| 2012-07-11 | We're going to have a hard time if we want to pretty-print token trees. | Paul Stansifer | -2/+25 |
| 2012-07-10 | Pretty print vectors as ~[] instead of []/~. Closes #2863. | Michael Sullivan | -10/+34 |
| 2012-07-10 | Don't pretty print unsafe pointers as carets, since #2826 is abandoned. | Michael Sullivan | -1/+1 |
| 2012-07-09 | syntax: Pretty-print view item attributes | Brian Anderson | -0/+1 |
| 2012-07-06 | First step on #2826, accept ^ for ty_ptr. | Graydon Hoare | -1/+1 |
| 2012-07-06 | For #2229, recognize 'again' in place of 'cont', final change pending snapshot. | Graydon Hoare | -1/+1 |
| 2012-07-06 | Plumbing and parsing for item-position macros. | Eric Holk | -0/+3 |
| 2012-07-05 | Change 'iface' to 'trait' internally; parse `trait` as `iface` synonym | Lindsey Kuper | -5/+5 |
| 2012-07-03 | Revert "Remove rule requiring non-nil block-style statements to be semi-termi... | Brian Anderson | -3/+5 |