| Age | Commit message (Expand) | Author | Lines |
| 2012-07-31 | rustc: Implement unary move. Closes #917. | Patrick Walton | -7/+15 |
| 2012-07-31 | Introduce 'return', 'match' and 'module' as synonyms | Brian Anderson | -13/+27 |
| 2012-07-31 | syntax: Rename 'module' extension to 'module_path' | Brian Anderson | -1/+1 |
| 2012-07-31 | rustc: Check self types in method lookup; allow required trait methods to hav... | Patrick Walton | -1/+3 |
| 2012-07-31 | syntax: More tweaks to make alt arrows parse and print correctly | Brian Anderson | -42/+47 |
| 2012-07-31 | accept naked exprs with commas in pattern arms | Niko Matsakis | -6/+42 |
| 2012-07-31 | Now you can use whatever delimiter you want to invoke syntax extensions. | Paul Stansifer | -17/+34 |
| 2012-07-31 | Change remaining "iface" occurrences to "trait"; deprecate "iface" | Lindsey Kuper | -9/+10 |
| 2012-07-31 | Avoid accidentally printing floating point numbers as `10.f`. | Paul Stansifer | -1/+7 |
| 2012-07-31 | Fix pretty-printer breakage: `1000f` -> `1000`. | Paul Stansifer | -1/+1 |
| 2012-07-31 | Build fix: debug![ to debug!{ | Ben Blum | -1/+1 |
| 2012-07-30 | libsyntax: Parse self types in methods | Patrick Walton | -17/+174 |
| 2012-07-30 | Frontend bits for #2317, general const-expr classification. | Graydon Hoare | -0/+13 |
| 2012-07-30 | Fix pretty-printing of consecutive idents. | Paul Stansifer | -6/+12 |
| 2012-07-30 | Allow single quote to be escaped in strings. | Paul Stansifer | -0/+1 |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -219/+219 |
| 2012-07-30 | Pretty-print token trees. | Paul Stansifer | -13/+38 |
| 2012-07-30 | Improve some documentation. | Paul Stansifer | -14/+20 |
| 2012-07-30 | Feed the interner to the pretty-printer, in anticipation of pretty-printing t... | Paul Stansifer | -4/+5 |
| 2012-07-30 | Work around bug #2935 by unautounboxing. | Paul Stansifer | -7/+10 |
| 2012-07-30 | Let's give that binder a name that's not incredibly confusing. | Paul Stansifer | -2/+2 |
| 2012-07-30 | Impl-ize interner. | Paul Stansifer | -49/+47 |
| 2012-07-30 | Rename `#mod` -> `#module` to not collide with the keyword. | Paul Stansifer | -3/+6 |
| 2012-07-30 | syntax: Fix semicolon printing. Closes #3036 | Brian Anderson | -1/+1 |
| 2012-07-29 | Rewrite bitv to use classes and optimize its representation | Tim Chevalier | -2/+2 |
| 2012-07-27 | rustc: Use coherence for operator overloading. | Patrick Walton | -18/+70 |
| 2012-07-27 | Kill off another couple uses of the term 'mtcs'. | Graydon Hoare | -2/+2 |
| 2012-07-27 | early => earley. Oops. | Graydon Hoare | -1/+1 |
| 2012-07-27 | Make macro-system type and constructor names more uniform; more comments. | Graydon Hoare | -195/+231 |
| 2012-07-27 | Start killing off obsolete/unused quoters, and fix long lines. | Graydon Hoare | -76/+9 |
| 2012-07-27 | Comments in the new macro system, reflecting conversation with pauls. | Graydon Hoare | -6/+125 |
| 2012-07-27 | Correctly forbid upvars in nested impls, traits and classes | Tim Chevalier | -1/+3 |
| 2012-07-26 | Nomenclature fixes in the lint checker. Fewer double-negatives. | Graydon Hoare | -0/+5 |
| 2012-07-26 | diagnostic: only print color if output is for the screen | Damian Gryski | -2/+4 |
| 2012-07-26 | Merge branch 'incoming' of github.com:mozilla/rust | Paul Stansifer | -4/+2 |
| 2012-07-26 | rustc: Fix cross-crate max/min-class-style constructors | Patrick Walton | -2/+2 |
| 2012-07-26 | Make parsing about 0.3 seconds faster. | Eric Holk | -13/+14 |
| 2012-07-26 | Add #[inline(never)], and also fixed inlining on vec::push | Eric Holk | -1/+5 |
| 2012-07-26 | Comments Only: Remove outdated FIXMEs. Fixes #2886. | Eric Holk | -2/+0 |
| 2012-07-26 | Change `#macro` to `macro_rules!` in some cases. | Paul Stansifer | -38/+29 |
| 2012-07-26 | Allow old-style syntax extensions to be called with new syntax. | Paul Stansifer | -0/+61 |
| 2012-07-26 | Make parsing about 0.3 seconds faster. | Eric Holk | -13/+14 |
| 2012-07-25 | Add #[inline(never)], and also fixed inlining on vec::push | Eric Holk | -1/+5 |
| 2012-07-25 | Polymorphic protocols work well enough to do MapReduce. | Eric Holk | -6/+8 |
| 2012-07-25 | Bounded protocols work well enough to compile core, but map reduce has too ma... | Eric Holk | -15/+37 |
| 2012-07-25 | Thread spans through the pipe compiler. They aren't perfect, but they make de... | Eric Holk | -70/+90 |
| 2012-07-25 | Compiled a bounded version of pingpong. | Eric Holk | -43/+244 |
| 2012-07-25 | Generate buffer type for bounded protocols | Eric Holk | -0/+31 |
| 2012-07-25 | Refactor the bounded pingpong example to avoid needing to generate unsafe code. | Eric Holk | -19/+30 |
| 2012-07-25 | Refactoring pipes to allow implementing bounded protocols. | Eric Holk | -2/+5 |