| Commit message (Expand) | Author | Age | Files | Lines |
| * | Teach rustc lexer about changes to stratum, opacity and effect keywords. | Graydon Hoare | 2010-11-03 | 2 | -5/+21 |
| * | Split out stratum-checking pass, implement more-strict (overly aggressive) im... | Graydon Hoare | 2010-11-02 | 1 | -16/+16 |
| * | First pass on splitting stratum and opacity off of effects. WIP. | Graydon Hoare | 2010-11-02 | 4 | -57/+57 |
| * | Long line police. | Graydon Hoare | 2010-10-22 | 1 | -3/+5 |
| * | Pass outptr as in rustboot. Probably need to revisit this ABI. Also disgustin... | Graydon Hoare | 2010-10-22 | 1 | -5/+18 |
| * | Collect all fns first so decl order doesn't matter to translation. | Graydon Hoare | 2010-10-22 | 1 | -13/+41 |
| * | Extremely broken hacked-up incorrect attempt at 'ret'. | Graydon Hoare | 2010-10-22 | 2 | -0/+36 |
| * | Don't use string == in x86.rs, doesn't work. | Graydon Hoare | 2010-10-22 | 1 | -1/+1 |
| * | rustc: Add an "_" prefix to assembler-generated symbols on Mac | Patrick Walton | 2010-10-22 | 1 | -0/+5 |
| * | Implement check-exprs, un-xfail 5 rustc tests. | Graydon Hoare | 2010-10-22 | 5 | -2/+57 |
| * | Add makefile bits to run rustc on the testsuite as part of 'make check'. Most... | Graydon Hoare | 2010-10-22 | 1 | -11/+0 |
| * | Give rustc the beginnings of an option-processing loop (at least -nowarn, -h ... | Graydon Hoare | 2010-10-22 | 2 | -11/+99 |
| * | Make append take a mutable &. Not even checked at present, tsk tsk. | Graydon Hoare | 2010-10-22 | 1 | -1/+1 |
| * | Add support for passing args to fns in rustc. | Graydon Hoare | 2010-10-21 | 1 | -18/+49 |
| * | Support basic function calls in rustc. | Graydon Hoare | 2010-10-21 | 1 | -8/+39 |
| * | Teach rustc to parse call exprs. | Graydon Hoare | 2010-10-21 | 1 | -0/+13 |
| * | line length police; moved comp.util.bits to std.bitv | Dave Herman | 2010-10-21 | 2 | -464/+0 |
| * | oops, removed bits.test() from main | Dave Herman | 2010-10-21 | 1 | -4/+0 |
| * | tests and bugfixes: fns take aliases, fixed binary arithmetic in create, elim... | Dave Herman | 2010-10-21 | 2 | -29/+322 |
| * | simpler computation of uint_bits(), plus whitespace police | Dave Herman | 2010-10-20 | 1 | -13/+2 |
| * | created a first draft of the bit-set library needed for typestate | Dave Herman | 2010-10-20 | 2 | -0/+186 |
| * | Translate lazy && and || operators in rustc. | Graydon Hoare | 2010-10-19 | 1 | -7/+58 |
| * | Parse and translate assignments. | Graydon Hoare | 2010-10-19 | 2 | -18/+50 |
| * | Teach trans to allocate, initialize and load from local variables. | Graydon Hoare | 2010-10-19 | 6 | -18/+174 |
| * | Add a type slot to the AST | Patrick Walton | 2010-10-19 | 4 | -93/+98 |
| * | Partial work on adding types to the AST | Patrick Walton | 2010-10-19 | 2 | -54/+71 |
| * | Store items and decls in vecs to preserve input order, index externally. Impl... | Graydon Hoare | 2010-10-18 | 6 | -137/+232 |
| * | More work on resolving names in rustc. Basic expr_name lookup working on item... | Graydon Hoare | 2010-10-18 | 6 | -93/+123 |
| * | Rewrite session formatting to use #fmt extension. | Graydon Hoare | 2010-10-18 | 1 | -19/+7 |
| * | Begin sketching name lookup in rustc. | Graydon Hoare | 2010-10-18 | 1 | -6/+74 |
| * | Expand rustc's fold to update env on block boundaries. | Graydon Hoare | 2010-10-18 | 1 | -1/+14 |
| * | Roll back the expr->lval change. We're now LL(1) again. | Patrick Walton | 2010-10-18 | 3 | -128/+39 |
| * | Encode and decode tag types in dwarf properly. Add list module to std. Shift ... | Graydon Hoare | 2010-10-15 | 5 | -21/+12 |
| * | Finish the fold drivers in fold.rs. | Graydon Hoare | 2010-10-14 | 2 | -12/+110 |
| * | rustc: Parse field and vector indexing expressions | Patrick Walton | 2010-10-14 | 1 | -34/+53 |
| * | Enable resolve pass in rustc. Doesn't do much yet aside from an incomplete id... | Graydon Hoare | 2010-10-14 | 1 | -0/+2 |
| * | Stop using bound refs (don't work; leak) and work around auto-deref vec-appen... | Graydon Hoare | 2010-10-14 | 1 | -23/+33 |
| * | rustc: Start work on lvals | Patrick Walton | 2010-10-14 | 3 | -59/+137 |
| * | rustc: Lex identifiers that have numbers in them too | Patrick Walton | 2010-10-13 | 1 | -2/+6 |
| * | rustc: Parse vector types | Patrick Walton | 2010-10-13 | 2 | -0/+8 |
| * | rustc: Add mutability to tuple literals | Patrick Walton | 2010-10-12 | 3 | -10/+30 |
| * | rustc: Parse box types | Patrick Walton | 2010-10-12 | 1 | -0/+2 |
| * | rustc: Parse tuple types | Patrick Walton | 2010-10-12 | 1 | -0/+21 |
| * | rustc: Add the tuple type to the AST | Patrick Walton | 2010-10-11 | 1 | -0/+1 |
| * | Parse autos | Patrick Walton | 2010-10-11 | 1 | -9/+22 |
| * | rustc: Parse lets | Patrick Walton | 2010-10-11 | 3 | -6/+33 |
| * | rustc: Say "expected expression" instead of "expected literal" when we expect... | Patrick Walton | 2010-10-11 | 1 | -8/+14 |
| * | rustc: Make functions output a type, not a slot | Patrick Walton | 2010-10-08 | 3 | -9/+8 |
| * | Add a little code to resolve, to check that the fold interface works. | Graydon Hoare | 2010-10-07 | 2 | -5/+27 |
| * | Revise folds to be much-less-polymorphic after some discussion; flesh out stm... | Graydon Hoare | 2010-10-07 | 1 | -172/+309 |