| Commit message (Expand) | Author | Age | Files | Lines |
| * | rustc: Number everything with an annotation | Patrick Walton | 2011-05-10 | 4 | -148/+166 |
| * | Alias-ify fold and its users, remove another 85kb. | Graydon Hoare | 2011-05-09 | 1 | -3/+4 |
| * | Remove boxes from token.t. | Graydon Hoare | 2011-05-09 | 3 | -42/+79 |
| * | rustc: Alias fix part 1 -- Separate out AST modes from typechecker modes, and... | Patrick Walton | 2011-05-09 | 1 | -2/+2 |
| * | Fix GenericOS.getenv returning a raw str, return an Option.t[str] instead. | Graydon Hoare | 2011-05-06 | 1 | -2/+11 |
| * | Rename std modules to be camelcased | Marijn Haverbeke | 2011-05-06 | 9 | -256/+256 |
| * | rustc: Add Rust intrinsic support to the crate metadata reader and writer | Patrick Walton | 2011-05-05 | 1 | -3/+4 |
| * | Bring back "pred" syntax for writing predicates for check | Tim Chevalier | 2011-05-05 | 4 | -12/+31 |
| * | Check well-formedness of constraints | Tim Chevalier | 2011-05-05 | 1 | -0/+14 |
| * | Remove 'deprecated mutable...' from our code | Marijn Haverbeke | 2011-05-05 | 2 | -2/+2 |
| * | Add #env syntax extension for plucking strings out of the compilation environ... | Graydon Hoare | 2011-05-04 | 2 | -0/+75 |
| * | Add a structure for passing option flags around the compiler, put it in sessi... | Graydon Hoare | 2011-05-04 | 1 | -3/+2 |
| * | rustc: Stub support for Rust intrinsics | Patrick Walton | 2011-05-03 | 2 | -0/+3 |
| * | Revert "Rename the "llvm" API to "llvm-intrinsic"" due to tinderbox bustage | Patrick Walton | 2011-05-03 | 1 | -1/+1 |
| * | Start sketching --depend support in rustc. | Graydon Hoare | 2011-05-03 | 2 | -1/+18 |
| * | Rename the "llvm" API to "llvm-intrinsic" | Patrick Walton | 2011-05-03 | 1 | -1/+1 |
| * | Extract ast.is_exported from the resolve module | Brian Anderson | 2011-05-02 | 1 | -0/+22 |
| * | Un-revert "Use different syntax for checks that matter to typestate", fixing ... | Patrick Walton | 2011-05-02 | 5 | -28/+38 |
| * | Revert "Use different syntax for checks that matter to typestate" | Graydon Hoare | 2011-05-02 | 5 | -38/+28 |
| * | Use different syntax for checks that matter to typestate | Tim Chevalier | 2011-05-02 | 5 | -28/+38 |
| * | Intern metadata while writing, shrink stage1 from 12mb to 5.7mb. | Graydon Hoare | 2011-04-29 | 1 | -16/+49 |
| * | Support octal #fmt conversions | Brian Anderson | 2011-04-26 | 1 | -0/+7 |
| * | rustc: Pass a "type context" around instead of directly passing the type stor... | Patrick Walton | 2011-04-25 | 1 | -45/+43 |
| * | rustc: Thread the type store through everything that needs to access type str... | Patrick Walton | 2011-04-22 | 1 | -1/+1 |
| * | rustc: Switch @ty.t to ty.t so that we can change it to a uint | Patrick Walton | 2011-04-22 | 2 | -8/+8 |
| * | rustc: Eliminate the direct use of ty.t.struct | Patrick Walton | 2011-04-22 | 1 | -1/+1 |
| * | Switch to binary search in codemap.lookup_pos | Marijn Haverbeke | 2011-04-22 | 1 | -19/+15 |
| * | Fix the signature of expr_ext | Brian Anderson | 2011-04-21 | 3 | -4/+4 |
| * | rustc: Pass a type store around, which does nothing yet | Patrick Walton | 2011-04-21 | 1 | -43/+45 |
| * | rustc: Make the parser never assign any types, not even ty_nil | Patrick Walton | 2011-04-21 | 1 | -5/+4 |
| * | rustc: Remove all manual type construction outside ty.rs | Patrick Walton | 2011-04-20 | 1 | -56/+51 |
| * | Remove half-baked 'opacity' layer qualifier. | Graydon Hoare | 2011-04-19 | 4 | -27/+0 |
| * | Remove effect system from src. | Graydon Hoare | 2011-04-19 | 6 | -193/+168 |
| * | replace error logging with log_err in stdlib and rustc | Marijn Haverbeke | 2011-04-19 | 4 | -33/+30 |
| * | add log_err to rustc | Marijn Haverbeke | 2011-04-19 | 4 | -3/+13 |
| * | Support 0 flag in #fmt | Brian Anderson | 2011-04-18 | 1 | -7/+14 |
| * | collect crate meta info and ext crate names | Marijn Haverbeke | 2011-04-18 | 2 | -6/+9 |
| * | Support the space flag in #fmt | Brian Anderson | 2011-04-17 | 1 | -19/+35 |
| * | Support + flag in #fmt | Brian Anderson | 2011-04-17 | 1 | -3/+27 |
| * | Support #fmt precision for string types | Brian Anderson | 2011-04-17 | 1 | -2/+8 |
| * | Support left-justification in #fmt conversions | Brian Anderson | 2011-04-16 | 1 | -9/+56 |
| * | Make #fmt support explicit conversion widths | Brian Anderson | 2011-04-16 | 1 | -4/+36 |
| * | Work on destructors, not entirely functional yet (no tydesc integration). | Graydon Hoare | 2011-04-14 | 2 | -4/+22 |
| * | Add support for upper-case hex and binary output to #fmt. | Brian Anderson | 2011-04-13 | 1 | -0/+3 |
| * | Add more commentary about ExtFmt | Brian Anderson | 2011-04-13 | 1 | -14/+7 |
| * | Add support for printing uints as lower-case hex to ExtFmt. | Brian Anderson | 2011-04-13 | 1 | -13/+78 |
| * | Move #fmt conversion model into ExtFmt.CT namespace | Brian Anderson | 2011-04-13 | 1 | -29/+28 |
| * | Lex numeric escapes, needed for lib-str.rs (which now passes). | Graydon Hoare | 2011-04-13 | 1 | -13/+77 |
| * | typestate_check can now handle expr_block, expr_if, and expr_binary | Tim Chevalier | 2011-04-12 | 2 | -2/+3 |
| * | rustc: Switch to indices for type parameters | Patrick Walton | 2011-04-12 | 3 | -18/+16 |