| Age | Commit message (Expand) | Author | Lines |
| 2011-05-09 | rustc: Alias fix part 1 -- Separate out AST modes from typechecker modes, and... | Patrick Walton | -2/+2 |
| 2011-05-06 | Fix GenericOS.getenv returning a raw str, return an Option.t[str] instead. | Graydon Hoare | -2/+11 |
| 2011-05-06 | Rename std modules to be camelcased | Marijn Haverbeke | -256/+256 |
| 2011-05-05 | rustc: Add Rust intrinsic support to the crate metadata reader and writer | Patrick Walton | -3/+4 |
| 2011-05-05 | Bring back "pred" syntax for writing predicates for check | Tim Chevalier | -12/+31 |
| 2011-05-05 | Check well-formedness of constraints | Tim Chevalier | -0/+14 |
| 2011-05-05 | Remove 'deprecated mutable...' from our code | Marijn Haverbeke | -2/+2 |
| 2011-05-04 | Add #env syntax extension for plucking strings out of the compilation environ... | Graydon Hoare | -0/+75 |
| 2011-05-04 | Add a structure for passing option flags around the compiler, put it in sessi... | Graydon Hoare | -3/+2 |
| 2011-05-03 | rustc: Stub support for Rust intrinsics | Patrick Walton | -0/+3 |
| 2011-05-03 | Revert "Rename the "llvm" API to "llvm-intrinsic"" due to tinderbox bustage | Patrick Walton | -1/+1 |
| 2011-05-03 | Start sketching --depend support in rustc. | Graydon Hoare | -1/+18 |
| 2011-05-03 | Rename the "llvm" API to "llvm-intrinsic" | Patrick Walton | -1/+1 |
| 2011-05-02 | Extract ast.is_exported from the resolve module | Brian Anderson | -0/+22 |
| 2011-05-02 | Un-revert "Use different syntax for checks that matter to typestate", fixing ... | Patrick Walton | -28/+38 |
| 2011-05-02 | Revert "Use different syntax for checks that matter to typestate" | Graydon Hoare | -38/+28 |
| 2011-05-02 | Use different syntax for checks that matter to typestate | Tim Chevalier | -28/+38 |
| 2011-04-29 | Intern metadata while writing, shrink stage1 from 12mb to 5.7mb. | Graydon Hoare | -16/+49 |
| 2011-04-26 | Support octal #fmt conversions | Brian Anderson | -0/+7 |
| 2011-04-25 | rustc: Pass a "type context" around instead of directly passing the type stor... | Patrick Walton | -45/+43 |
| 2011-04-22 | rustc: Thread the type store through everything that needs to access type str... | Patrick Walton | -1/+1 |
| 2011-04-22 | rustc: Switch @ty.t to ty.t so that we can change it to a uint | Patrick Walton | -8/+8 |
| 2011-04-22 | rustc: Eliminate the direct use of ty.t.struct | Patrick Walton | -1/+1 |
| 2011-04-22 | Switch to binary search in codemap.lookup_pos | Marijn Haverbeke | -19/+15 |
| 2011-04-21 | Fix the signature of expr_ext | Brian Anderson | -4/+4 |
| 2011-04-21 | rustc: Pass a type store around, which does nothing yet | Patrick Walton | -43/+45 |
| 2011-04-21 | rustc: Make the parser never assign any types, not even ty_nil | Patrick Walton | -5/+4 |
| 2011-04-20 | rustc: Remove all manual type construction outside ty.rs | Patrick Walton | -56/+51 |
| 2011-04-19 | Remove half-baked 'opacity' layer qualifier. | Graydon Hoare | -27/+0 |
| 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 |