| Age | Commit message (Expand) | Author | Lines |
| 2011-08-15 | rustc: Add a few type-related methods to unique pointers; add typestate support | Patrick Walton | -1/+15 |
| 2011-08-15 | Remove a FIXME that I just made obsolete... | Michael Sullivan | -1/+1 |
| 2011-08-15 | Make bind glue do an llvm tail call to the target. Closes #2. | Michael Sullivan | -1/+1 |
| 2011-08-15 | Test case for issue #115. | Lindsey Kuper | -0/+19 |
| 2011-08-15 | Test cases for issue #822. | Lindsey Kuper | -1/+28 |
| 2011-08-15 | Make GEPi use InBoundsGEP. | Michael Sullivan | -1/+1 |
| 2011-08-15 | Simple example of anonymous objects from nothing. Closes #812. | Lindsey Kuper | -0/+38 |
| 2011-08-15 | Tests for type inferred lambda-blocks. | Michael Sullivan | -6/+15 |
| 2011-08-15 | Pretty print lambda-blocks. | Michael Sullivan | -10/+41 |
| 2011-08-15 | Change arg typechecking procedure to make blocks more useful. | Michael Sullivan | -11/+28 |
| 2011-08-15 | Implement type inference for type-inferred blocks. | Michael Sullivan | -4/+14 |
| 2011-08-15 | Parse type inferred lambda-block expressions. | Michael Sullivan | -7/+41 |
| 2011-08-15 | Add operator 'copy', translates as fall-through. | Graydon Hoare | -9/+51 |
| 2011-08-15 | XFAIL run-pass/task-killjoin | Brian Anderson | -0/+4 |
| 2011-08-15 | Implement an untyped version of the AST, with a coversion back to the typed A... | Paul Stansifer | -0/+817 |
| 2011-08-15 | Use span stacks to track macro expansion for less troublesome error messages. | Paul Stansifer | -37/+63 |
| 2011-08-15 | Make spans into stacks (to store expansion backtraces). | Paul Stansifer | -50/+79 |
| 2011-08-15 | Allow `[a, b, ..., c]` transcription patterns in MBE. | Paul Stansifer | -24/+47 |
| 2011-08-15 | Rename a field (so that macros can mention it). | Paul Stansifer | -13/+13 |
| 2011-08-15 | Change `node_id`s when expanding, to avoid duplicates. | Paul Stansifer | -9/+23 |
| 2011-08-15 | Add a syntax extension to log syntax, for debugging macros. | Paul Stansifer | -3/+22 |
| 2011-08-15 | Add a layer of boxing as a hack; this code can segfault otherwise. | Paul Stansifer | -5/+6 |
| 2011-08-15 | Add backtraces for syntax problems. | Paul Stansifer | -65/+61 |
| 2011-08-15 | Check for nonconsistent macro names. | Paul Stansifer | -1/+11 |
| 2011-08-15 | Fix compilation of paths containing ".". Closes #821. | Michael Sullivan | -17/+12 |
| 2011-08-15 | rustc: Parse and typecheck unique pointers | Patrick Walton | -1/+14 |
| 2011-08-15 | Reducing the chances for race conditions in join. | Eric Holk | -3/+20 |
| 2011-08-15 | rustc: Unbreak "3 as uint < 5u" | Patrick Walton | -49/+59 |
| 2011-08-15 | rustc: Accept <T> for type parameters in type and item declarations | Patrick Walton | -4/+14 |
| 2011-08-15 | Fixing win32 build. | Eric Holk | -1/+1 |
| 2011-08-15 | Syntax updates. | Eric Holk | -10/+11 |
| 2011-08-15 | Properly ref counting to fix valgrind issues on linux. | Eric Holk | -15/+44 |
| 2011-08-15 | Converted over benchmarks. | Eric Holk | -82/+59 |
| 2011-08-15 | Removed spawn and task from the parser. Updated all the tests except for the ... | Eric Holk | -265/+367 |
| 2011-08-15 | Porting a bunch of tests over. | Eric Holk | -80/+86 |
| 2011-08-15 | Removed old object-based chans. | Eric Holk | -126/+89 |
| 2011-08-15 | Converted two more spawn tests. | Eric Holk | -3/+11 |
| 2011-08-15 | Fixed memory accounting and task stack creation bugs. | Eric Holk | -35/+81 |
| 2011-08-15 | Working on more spawn test cases. | Eric Holk | -20/+55 |
| 2011-08-15 | Updating to build on Linux and Mac, and hopefully Windows too. | Eric Holk | -0/+4 |
| 2011-08-15 | Added a library version of spawn. Before long, we can remove the old version. | Eric Holk | -30/+161 |
| 2011-08-15 | Move mode for lib comm, converted a few tests. | Eric Holk | -24/+29 |
| 2011-08-15 | Port ID-based channels. | Eric Holk | -7/+96 |
| 2011-08-15 | First step towards port handles. | Eric Holk | -3/+37 |
| 2011-08-15 | Fix bad argument type of pprust::print_type | Marijn Haverbeke | -29/+27 |
| 2011-08-15 | Re-add some deleted tuple tests | Marijn Haverbeke | -0/+65 |
| 2011-08-15 | Add tuple patterns | Marijn Haverbeke | -35/+130 |
| 2011-08-15 | Make tuples constructable | Marijn Haverbeke | -11/+26 |
| 2011-08-15 | Tuple fields are immutable | Marijn Haverbeke | -138/+93 |
| 2011-08-15 | Tuple types back, not constructable yet | Marijn Haverbeke | -16/+278 |