| Age | Commit message (Expand) | Author | Lines |
| 2013-03-18 | Fix pretty printer for fixed length vectors. | Luqman Aden | -4/+3 |
| 2013-03-18 | Now actually allow using constants in those constant expressions for [T * n]. | Luqman Aden | -3/+6 |
| 2013-03-18 | Allow constant expressions in [Type * n]. | Luqman Aden | -21/+8 |
| 2013-03-18 | librustc: Make the compiler ignore purity. | Patrick Walton | -41/+75 |
| 2013-03-18 | libsyntax: Stop parsing old lifetimes, except for the ones on data type decla... | Patrick Walton | -0/+11 |
| 2013-03-18 | librustc: Convert all uses of old lifetime notation to new lifetime notation.... | Patrick Walton | -6/+12 |
| 2013-03-18 | Make &self permit explicit lifetimes, but don't really use them | Niko Matsakis | -24/+90 |
| 2013-03-16 | auto merge of #5374 : z0w0/rust/rustdoc-explicit-self, r=z0w0 | bors | -2/+3 |
| 2013-03-16 | syntax: Fix fun_to_str test | Zack Corr | -1/+1 |
| 2013-03-15 | auto merge of #5359 : luqmana/rust/inline-asm, r=pcwalton | bors | -7/+47 |
| 2013-03-15 | auto merge of #5404 : bstrie/rust/decopy, r=pcwalton | bors | -1/+1 |
| 2013-03-15 | Fix type_use for inline asm. | Luqman Aden | -2/+2 |
| 2013-03-15 | Tidy. | Luqman Aden | -1/+1 |
| 2013-03-15 | Implicitly use addr_of for output operands in asm. | Luqman Aden | -0/+7 |
| 2013-03-15 | Actually pass inline asm operands around. | Luqman Aden | -7/+40 |
| 2013-03-15 | impl Clone for ~T, ~[T], ~str | Ben Striegel | -1/+1 |
| 2013-03-15 | Update test case to conform to new restrictions on casting | John Clements | -3/+2 |
| 2013-03-15 | Test case fixup (old one tested the old bad behavior). | John Clements | -12/+12 |
| 2013-03-15 | add nonempty encoding for spans | John Clements | -1/+1 |
| 2013-03-14 | rustdoc: Document explicit self in methods. Closes #5254 | Zack Corr | -1/+2 |
| 2013-03-13 | libsyntax: Remove a use of deprecated Encodable from libsyntax. rs=burningtree | Patrick Walton | -1/+1 |
| 2013-03-13 | test: Fix tests. rs=tests | Patrick Walton | -2/+1 |
| 2013-03-13 | librustc: Don't require the "static" keyword to define a static method | Patrick Walton | -10/+10 |
| 2013-03-13 | librustc: Remove implicit self from the language, except for old-style drop b... | Patrick Walton | -1/+15 |
| 2013-03-13 | librustc: Remove "base types" from the language. | Patrick Walton | -4/+8 |
| 2013-03-13 | librustc: Remove overloaded operator autoderef. | Patrick Walton | -1/+1 |
| 2013-03-13 | librustc: Don't accept `as Trait` anymore; fix all occurrences of it. | Patrick Walton | -310/+325 |
| 2013-03-13 | Remove `++` mode from the compiler (it is parsed as `+` mode) | Niko Matsakis | -11/+19 |
| 2013-03-13 | auto merge of #5293 : brson/rust/logging, r=brson | bors | -24/+23 |
| 2013-03-12 | auto merge of #5320 : apasel422/rust/metaderive, r=graydon | bors | -0/+45 |
| 2013-03-12 | syntax: implement #[deriving] meta-attribute | Andrew Paseltiner | -0/+45 |
| 2013-03-12 | Add alignstack option for inline asm. | Luqman Aden | -4/+7 |
| 2013-03-12 | Keep everything tidy. | Luqman Aden | -10/+9 |
| 2013-03-12 | Parse operands properly and add a way to indicate volatile asm. | Luqman Aden | -14/+137 |
| 2013-03-12 | Stop parsing __asm__. | Luqman Aden | -9/+0 |
| 2013-03-12 | Create asm! syntax extension. | Luqman Aden | -1/+58 |
| 2013-03-12 | Parse inline assembly. | Luqman Aden | -1/+22 |
| 2013-03-11 | Remove the log keyword (by renaming it to __log) | Brian Anderson | -10/+10 |
| 2013-03-11 | core: Remove logging constants | Brian Anderson | -8/+8 |
| 2013-03-11 | Remove uses of log | Brian Anderson | -14/+13 |
| 2013-03-11 | auto merge of #5304 : jld/rust/const-adjustments, r=graydon | bors | -0/+5 |
| 2013-03-11 | librustc: Lint the old `drop` destructor notation off | Patrick Walton | -27/+2 |
| 2013-03-11 | libsyntax: Stop parsing newtype enums | Patrick Walton | -10/+9 |
| 2013-03-11 | libsyntax: Remove newtype enums from libsyntax. rs=deenum | Patrick Walton | -40/+14 |
| 2013-03-11 | libsyntax: Stop parsing bare functions in preparation for switching them over | Patrick Walton | -1/+16 |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -42/+42 |
| 2013-03-11 | Implement vector destructuring from tail | Seo Sanghyeon | -31/+56 |
| 2013-03-09 | Don't print addr_of(addr_of(e)) as `&&e`, which means something else. | Jed Davis | -0/+5 |
| 2013-03-09 | Remove @ast::Region and replace with @ast::Lifetime. | Niko Matsakis | -160/+117 |
| 2013-03-08 | auto merge of #5278 : brson/rust/logplusplus, r=brson | bors | -8/+32 |