| Age | Commit message (Expand) | Author | Lines |
| 2011-04-19 | Remove effect system from src. | Graydon Hoare | -193/+168 |
| 2011-04-19 | replace error logging with log_err in stdlib and rustc | Marijn Haverbeke | -33/+30 |
| 2011-04-19 | add log_err to rustc | Marijn Haverbeke | -3/+13 |
| 2011-04-18 | Support 0 flag in #fmt | Brian Anderson | -7/+14 |
| 2011-04-18 | collect crate meta info and ext crate names | Marijn Haverbeke | -6/+9 |
| 2011-04-17 | Support the space flag in #fmt | Brian Anderson | -19/+35 |
| 2011-04-17 | Support + flag in #fmt | Brian Anderson | -3/+27 |
| 2011-04-17 | Support #fmt precision for string types | Brian Anderson | -2/+8 |
| 2011-04-16 | Support left-justification in #fmt conversions | Brian Anderson | -9/+56 |
| 2011-04-16 | Make #fmt support explicit conversion widths | Brian Anderson | -4/+36 |
| 2011-04-14 | Work on destructors, not entirely functional yet (no tydesc integration). | Graydon Hoare | -4/+22 |
| 2011-04-13 | Add support for upper-case hex and binary output to #fmt. | Brian Anderson | -0/+3 |
| 2011-04-13 | Add more commentary about ExtFmt | Brian Anderson | -14/+7 |
| 2011-04-13 | Add support for printing uints as lower-case hex to ExtFmt. | Brian Anderson | -13/+78 |
| 2011-04-13 | Move #fmt conversion model into ExtFmt.CT namespace | Brian Anderson | -29/+28 |
| 2011-04-13 | Lex numeric escapes, needed for lib-str.rs (which now passes). | Graydon Hoare | -13/+77 |
| 2011-04-12 | typestate_check can now handle expr_block, expr_if, and expr_binary | Tim Chevalier | -2/+3 |
| 2011-04-12 | rustc: Switch to indices for type parameters | Patrick Walton | -18/+16 |
| 2011-04-12 | Further work on typestate. Handles expr_rec and expr_assign now. | Tim Chevalier | -9/+13 |
| 2011-04-11 | Factor out creation of calls into ExtFmt.RT | Brian Anderson | -12/+12 |
| 2011-04-11 | Add support for bool, char to extfmt. | Brian Anderson | -0/+10 |
| 2011-04-11 | Move ExtFmt compile-time functions into their own module | Brian Anderson | -1/+1 |
| 2011-04-11 | Make ExtFmt call its own functions instead of others defined in std | Brian Anderson | -6/+4 |
| 2011-04-11 | Move extfmt parsing into standard library | Brian Anderson | -210/+1 |
| 2011-04-11 | Move the extfmt data model into the standard library. | Brian Anderson | -48/+30 |
| 2011-04-09 | Fix codemap.lookup_pos | Marijn Haverbeke | -15/+12 |
| 2011-04-09 | Move to single-uint file-position representation. | Marijn Haverbeke | -319/+374 |
| 2011-04-09 | Make lexer buffer the whole file | Marijn Haverbeke | -59/+66 |
| 2011-04-07 | Support for self-calls that take arguments. | Lindsey Kuper | -4/+11 |
| 2011-04-07 | Add a very basic crate-dump utility | Marijn Haverbeke | -0/+66 |
| 2011-04-07 | Revise EBML reader API | Marijn Haverbeke | -191/+122 |
| 2011-04-06 | Continued sketching out code for checking states against preconditions. | Tim Chevalier | -10/+11 |
| 2011-04-05 | Last pieces of self-call support. | Lindsey Kuper | -1/+1 |
| 2011-04-05 | Further on the path toward self-awareness. | Lindsey Kuper | -2/+6 |
| 2011-04-04 | Make box prefix operator and box type carry mutability flag. | Graydon Hoare | -3/+7 |
| 2011-04-01 | Support for passing native types through metadata/creader. | Graydon Hoare | -0/+2 |
| 2011-04-01 | rustc: Get tag variants from the crate metadata | Patrick Walton | -6/+49 |
| 2011-04-01 | Started adding support for typestate checking. | Tim Chevalier | -28/+31 |
| 2011-03-31 | rustc: Add a type annotation to tag items | Patrick Walton | -4/+5 |
| 2011-03-31 | rustc: Use the path index. Speeds up compilation a lot. | Patrick Walton | -91/+48 |
| 2011-03-31 | rustc: Write out a path index as well | Patrick Walton | -8/+7 |
| 2011-03-31 | Couple minor bug fixes in creader, lib-bitv, int, rand, sort, sha1, uint and ... | Graydon Hoare | -0/+8 |
| 2011-03-31 | rustc: Use the crate index to look up defs | Patrick Walton | -29/+26 |
| 2011-03-31 | rustc: Write out an index of definition info in crate metadata | Patrick Walton | -10/+9 |
| 2011-03-31 | Remove redundant parser logic. | Brian Anderson | -33/+0 |
| 2011-03-31 | handle unterminated block comments and line comment at eof | Marijn Haverbeke | -4/+9 |
| 2011-03-31 | Improve line comment positioning | Marijn Haverbeke | -6/+11 |
| 2011-03-31 | Support break and cont in pretty-printer | Marijn Haverbeke | -0/+2 |
| 2011-03-31 | Add effect field to ast.ty_fn. | Marijn Haverbeke | -15/+13 |
| 2011-03-31 | Preserve comments when pretty-printing. | Marijn Haverbeke | -1/+83 |