| Age | Commit message (Expand) | Author | Lines |
| 2012-09-07 | Add an ignore! macro, remove support for nested block comments, re: #2755. | Graydon Hoare | -11/+16 |
| 2012-09-07 | Remove module keyword | Brian Anderson | -3/+3 |
| 2012-09-07 | Convert field terminators to commas. Stop parsing semis. | Brian Anderson | -45/+45 |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -43/+43 |
| 2012-09-07 | Don't check impl ty params for equality with trait ty params | Tim Chevalier | -0/+58 |
| 2012-09-07 | In typeck, don't assume traits with default methods are in the same crate | Tim Chevalier | -0/+7 |
| 2012-09-06 | Another test for #2587 | Tim Chevalier | -0/+21 |
| 2012-09-06 | Use callee ID when kind-checking expressions that may be overloaded | Tim Chevalier | -0/+29 |
| 2012-09-06 | Remove struct ctors | Brian Anderson | -133/+158 |
| 2012-09-06 | Refactor trans to replace lvalue and friends with Datum. | Niko Matsakis | -2/+28 |
| 2012-09-05 | rustc: Make "priv" work on enum variants | Patrick Walton | -0/+11 |
| 2012-09-05 | Mark crate metadata with a version tag. Close #3390. | Graydon Hoare | -1/+1 |
| 2012-09-05 | rustc: Fix double-reporting of private item errors. Un-XFAIL private-item-sim... | Patrick Walton | -5/+0 |
| 2012-09-05 | test: "import" -> "use" | Patrick Walton | -66/+61 |
| 2012-09-04 | rustc: Don't allow private fields to be named in constructors or destructured | Patrick Walton | -0/+28 |
| 2012-09-04 | rustc: Implement private methods. | Patrick Walton | -0/+15 |
| 2012-09-04 | Remove 'with' | Brian Anderson | -4/+4 |
| 2012-09-04 | rustc: Implement private fields for max/min classes | Patrick Walton | -17/+15 |
| 2012-09-02 | Camel case core::ops | Brian Anderson | -1/+1 |
| 2012-09-01 | Remove the 'to' keyword | Brian Anderson | -12/+12 |
| 2012-08-31 | Make utility funs in core::int, core::uint, etc. not by-reference | Tim Chevalier | -1/+3 |
| 2012-08-30 | Fix some more test breakage. | Graydon Hoare | -3/+6 |
| 2012-08-30 | test: Fix compile-fail tests | Patrick Walton | -0/+11 |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -3/+4 |
| 2012-08-29 | std: Camel case some constructors | Brian Anderson | -12/+12 |
| 2012-08-28 | CamelCasify lots of std | Ben Striegel | -1/+1 |
| 2012-08-28 | Add lint modes for uses of @ and ~ pointers, in general. | Graydon Hoare | -0/+33 |
| 2012-08-28 | Convert core::pipes to camel case | Brian Anderson | -1/+1 |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -3/+3 |
| 2012-08-26 | Camel case the option type | Brian Anderson | -154/+154 |
| 2012-08-25 | Add test case for #2356 | Tim Chevalier | -0/+4 |
| 2012-08-24 | Infer purity for || style closures. Closes #3023. | Michael Sullivan | -0/+6 |
| 2012-08-24 | Add a compile-fail test for #3255 | Ben Blum | -0/+9 |
| 2012-08-24 | extend liveness to treat bindings more like other variables | Niko Matsakis | -2/+15 |
| 2012-08-23 | Add a test case for helpful errors when copying into closures (#2942) | Ben Blum | -0/+39 |
| 2012-08-23 | More complete fix to #3162 (borrowck bug related to access to rec fields) | Niko Matsakis | -0/+8 |
| 2012-08-23 | don't consider use of `@fn` to be region-param'd | Niko Matsakis | -0/+22 |
| 2012-08-23 | don't infer region paramaterization for ids in a bound context | Niko Matsakis | -0/+21 |
| 2012-08-23 | Remove match check from test cases | Tim Chevalier | -7/+13 |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -54/+54 |
| 2012-08-23 | Infer variance of types with respect to the region parameter. | Niko Matsakis | -2/+175 |
| 2012-08-22 | Add compile-fail tests for unsound moving out of enums (#2329) | Ben Blum | -0/+67 |
| 2012-08-21 | more sound treatment of fn& regions; change all & to be distinct | Niko Matsakis | -21/+29 |
| 2012-08-20 | new region inference, seperate infer into modules, improve error msgs | Niko Matsakis | -42/+64 |
| 2012-08-20 | Disallow deconstructing destructing structs (fixes #3147) | Ben Blum | -0/+17 |
| 2012-08-20 | Do vtable resolution for *all* method calls, not just statically resolved one... | Michael Sullivan | -0/+23 |
| 2012-08-17 | rustc: Implement "priv" for simple items. | Patrick Walton | -0/+13 |
| 2012-08-17 | forgotten tests for #3217, #2977, #3067 | Niko Matsakis | -0/+33 |
| 2012-08-17 | test: Fix unused variable warning in repeat-to-run-dtor-twice.rs. | Patrick Walton | -1/+1 |
| 2012-08-17 | rustc: Prevent destructors from being run twice with the repeated vector syntax | Patrick Walton | -0/+16 |