| Age | Commit message (Expand) | Author | Lines |
| 2012-01-19 | rustc: ";" to "," in enums | Patrick Walton | -60/+60 |
| 2012-01-19 | rustc: "tag" -> "enum" | Patrick Walton | -14/+14 |
| 2012-01-19 | Remove support for the '.' after a nullary tag in a pattern | Tim Chevalier | -1/+1 |
| 2012-01-18 | Remove '.' after nullary tags in patterns | Tim Chevalier | -159/+159 |
| 2012-01-18 | remove align_mode and rewrite GEP_tup_like to align correctly | Niko Matsakis | -2/+3 |
| 2012-01-18 | correct use of GEP_tup_like in closure constr | Niko Matsakis | -6/+2 |
| 2012-01-17 | Merge pull request #1544 from kevina/issue-1393 | Graydon Hoare | -2/+2 |
| 2012-01-17 | encode variant names and have log print them out. | Niko Matsakis | -2/+3 |
| 2012-01-17 | Allow omission of the '.' after nullary tag patterns | Tim Chevalier | -14/+23 |
| 2012-01-16 | Minor cleanups to custom discriminator code. | Kevin Atkinson | -2/+2 |
| 2012-01-16 | Store type names in crate metadata | Marijn Haverbeke | -1/+5 |
| 2012-01-16 | Don't evaluate discriminator value constants when parsing. | Kevin Atkinson | -1/+14 |
| 2012-01-13 | distinguish "any closure" and "stack closure" (block) | Niko Matsakis | -1/+3 |
| 2012-01-13 | make blocks fn& and fn stand for "any closure" | Niko Matsakis | -0/+2 |
| 2012-01-13 | deprecate fn exprs and the fn() type, preferring fn@ and native fn | Niko Matsakis | -15/+19 |
| 2012-01-13 | Obj system? What obj system? | Marijn Haverbeke | -103/+6 |
| 2012-01-12 | Make driver::session::session no longer an object | Marijn Haverbeke | -1/+2 |
| 2012-01-12 | Cleanups to previous commits for issue #1393. | Kevin Atkinson | -2/+2 |
| 2012-01-10 | Add support for casting enum-like tags to scalar values. | Kevin Atkinson | -0/+22 |
| 2012-01-10 | Support explicit discriminant numbers on tag variants. | Kevin Atkinson | -2/+5 |
| 2012-01-10 | rename sendfn to fn~, lambda to fn@ | Niko Matsakis | -15/+15 |
| 2012-01-09 | Change all uses of 'when' in alt-patterns to 'if' | Austin Seipp | -4/+4 |
| 2012-01-09 | Remove proto_sugar and 'lambda' as keyword, commit to fn@. | Graydon Hoare | -4/+3 |
| 2012-01-09 | Iface types are not structural | Marijn Haverbeke | -2/+1 |
| 2012-01-08 | First barely-working version of casting to iface | Marijn Haverbeke | -1/+1 |
| 2012-01-06 | rejigger impl to have an opaque closure ptr rather than | Niko Matsakis | -28/+23 |
| 2012-01-06 | collapse sizeof, alignof into metrics, pass along an instance if avail | Niko Matsakis | -0/+10 |
| 2012-01-06 | make size_of and align_of take an optional value | Niko Matsakis | -1/+4 |
| 2012-01-05 | require a non-semi expr acting as a stmt to have unit return type | Niko Matsakis | -2/+3 |
| 2012-01-05 | Merge branch 'master' into kmath | Stefan Plantikow | -1/+1 |
| 2012-01-05 | Moved generic float::min, max to core::math and cleaned up some imports | Stefan Plantikow | -1/+1 |
| 2012-01-05 | Switch to new param kind bound syntax | Marijn Haverbeke | -1/+1 |
| 2012-01-05 | Get external interfaces / impls working | Marijn Haverbeke | -1/+1 |
| 2012-01-05 | Write the iface type of an impl in the crate data | Marijn Haverbeke | -1/+9 |
| 2012-01-05 | Remove ty::bind_params_in_type | Marijn Haverbeke | -18/+0 |
| 2012-01-04 | Properly typecheck and compile invocations of generic methods. | Marijn Haverbeke | -32/+14 |
| 2012-01-03 | Add missing ty_constr cases to trans::type_of_inner and ty::fold_ty. | Tim Chevalier | -0/+6 |
| 2012-01-03 | Wire in resolution of param bounds for method calls | Marijn Haverbeke | -2/+0 |
| 2012-01-02 | Key tcx.ty_param_bounds on node_ids, not def_ids | Marijn Haverbeke | -3/+5 |
| 2012-01-02 | Box arrays of parameter bounds | Marijn Haverbeke | -2/+2 |
| 2012-01-02 | Pass bounds to trans::type_of_fn | Marijn Haverbeke | -5/+7 |
| 2012-01-02 | More resolving and typechecking of bounded type parameters. | Marijn Haverbeke | -9/+25 |
| 2012-01-02 | Check that type parameter bounds are interface types | Marijn Haverbeke | -23/+22 |
| 2011-12-29 | Box ty_param_bounds_and_ty | Marijn Haverbeke | -1/+1 |
| 2011-12-28 | Move the kind datatype to middle::ty | Marijn Haverbeke | -19/+49 |
| 2011-12-28 | Change representation of type params to handle interface bounds | Marijn Haverbeke | -13/+38 |
| 2011-12-28 | Made matching machine types equal to float, int, uint (fixes #1376) | Stefan Plantikow | -1/+22 |
| 2011-12-23 | Check impls methods against the type of their iface. | Marijn Haverbeke | -20/+35 |
| 2011-12-23 | Parse `iface` items and interface references in `impl` items. | Marijn Haverbeke | -35/+56 |
| 2011-12-23 | Use the same type of record in ty::ty_fn and ty::method | Marijn Haverbeke | -173/+120 |