| Age | Commit message (Expand) | Author | Lines |
| 2012-07-30 | Frontend bits for #2317, general const-expr classification. | Graydon Hoare | -1/+195 |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -1142/+1142 |
| 2012-07-30 | Feed the interner to the pretty-printer, in anticipation of pretty-printing t... | Paul Stansifer | -1/+2 |
| 2012-07-30 | Impl-ize interner. | Paul Stansifer | -3/+3 |
| 2012-07-30 | rustc: "iface" -> "trait" in comments, error messages, and identifiers. | Lindsey Kuper | -22/+22 |
| 2012-07-30 | rustc: "ifce" -> "trt" in identifiers | Lindsey Kuper | -14/+14 |
| 2012-07-30 | Fix #2979: inference for lifetimes of & expressions | Niko Matsakis | -247/+572 |
| 2012-07-30 | rustc: Make option<&foo> no longer cause LLVM asserts by getting rid of regio... | Patrick Walton | -0/+4 |
| 2012-07-30 | LONG LINES\! | Brian Anderson | -3/+7 |
| 2012-07-30 | rustc: use new siphash impl instead of sha1 | Damian Gryski | -28/+28 |
| 2012-07-29 | Rewrite bitv to use classes and optimize its representation | Tim Chevalier | -241/+217 |
| 2012-07-27 | rustc: Use coherence for operator overloading. | Patrick Walton | -60/+140 |
| 2012-07-27 | Forbid duplicate fields in record types and exprs | Tim Chevalier | -1/+39 |
| 2012-07-27 | Correctly forbid upvars in nested impls, traits and classes | Tim Chevalier | -12/+72 |
| 2012-07-27 | change region inference to not consider & that appears in a fn | Niko Matsakis | -1/+10 |
| 2012-07-27 | core: Trait-ify various overloaded operators | Patrick Walton | -0/+1 |
| 2012-07-27 | In resolve, check for duplicate pattern-bound vars | Tim Chevalier | -10/+21 |
| 2012-07-27 | Make alts on uninhabited enum types typecheck and translate properly | Tim Chevalier | -10/+55 |
| 2012-07-26 | Removed the rest of the vec::view calls that were marked with #2880. Fixes #2... | Eric Holk | -12/+6 |
| 2012-07-26 | Use iteration protocol for ebml, use vec::view in more places (issue #2880) | Eric Holk | -44/+38 |
| 2012-07-26 | Nomenclature fixes in the lint checker. Fewer double-negatives. | Graydon Hoare | -131/+177 |
| 2012-07-26 | rustc: Fix cross-crate max/min-class-style constructors | Patrick Walton | -20/+38 |
| 2012-07-25 | rustc: Introduce a lang_items pass, part of coherence and operator overloading. | Patrick Walton | -0/+236 |
| 2012-07-25 | 3x faster typechecking | Eric Holk | -7/+7 |
| 2012-07-25 | Add #[inline(never)], and also fixed inlining on vec::push | Eric Holk | -2/+3 |
| 2012-07-25 | Added debug flag to enable LLVM debug output. | Elliott Slaughter | -1/+10 |
| 2012-07-25 | adjust deprecated_use not to warn about sugared closures | Niko Matsakis | -0/+8 |
| 2012-07-25 | fix oversight in ty_decode. | Niko Matsakis | -0/+5 |
| 2012-07-25 | add new deprecated_mode lint pass | Niko Matsakis | -21/+161 |
| 2012-07-25 | avoid capture of bound regions when infering types for closure | Niko Matsakis | -16/+73 |
| 2012-07-25 | comment various region-related things better | Niko Matsakis | -148/+60 |
| 2012-07-25 | make unique pointers inherit mutability from owner | Niko Matsakis | -9/+37 |
| 2012-07-25 | correct treatment of mutability for deref'd components | Niko Matsakis | -7/+18 |
| 2012-07-24 | Remove rustllvm functions which have moved upstream. | Elliott Slaughter | -4/+0 |
| 2012-07-24 | rustc: Write impl attributes into the metadata | Patrick Walton | -0/+1 |
| 2012-07-24 | rustc: Don't require that structs have constructors | Patrick Walton | -81/+117 |
| 2012-07-24 | rustc: Translate struct literals | Patrick Walton | -0/+87 |
| 2012-07-24 | Merge pull request #3003 from elliottslaughter/free-cant-fail | Graydon Hoare | -21/+34 |
| 2012-07-24 | Fix whitespace. | Graydon Hoare | -1/+1 |
| 2012-07-24 | Update some str functions to slices, merge as_buf and unpack_slice. | Graydon Hoare | -1/+1 |
| 2012-07-24 | Don't emit invoke instructions inside landing pads. | Elliott Slaughter | -21/+34 |
| 2012-07-24 | rustc: Typecheck struct literals | Patrick Walton | -3/+134 |
| 2012-07-23 | rustc: Resolve struct names in struct literals | Patrick Walton | -9/+49 |
| 2012-07-23 | Merge pull request #2998 from elliottslaughter/no-landing-pads | Graydon Hoare | -1/+8 |
| 2012-07-23 | rustc: Max/min classes: Add struct literal syntax | Patrick Walton | -4/+14 |
| 2012-07-23 | Merge pull request #3000 from dgryski/master | Tim Chevalier | -1/+1 |
| 2012-07-23 | Fix formatting of multi-line blocks in asm-comments | Damian Gryski | -1/+1 |
| 2012-07-23 | rustc: Make vtables use the coherence tables | Patrick Walton | -76/+107 |
| 2012-07-23 | Add debug flag to turn off landing pads. | Elliott Slaughter | -1/+8 |
| 2012-07-23 | Moved malloc and free upcalls into rust runtime. | Elliott Slaughter | -44/+56 |