| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-08-17 | Purge vecs from the std::test interface | Brian Anderson | -6/+2 | |
| 2011-08-17 | Convert rustc main to ivecs | Brian Anderson | -4/+3 | |
| 2011-08-16 | rt: Implement obstacks, untested as of yet | Patrick Walton | -1/+136 | |
| 2011-08-16 | Fix some comments. | Graydon Hoare | -14/+4 | |
| 2011-08-16 | Remove dead send/recv operator tokens. | Graydon Hoare | -6/+0 | |
| 2011-08-16 | Updating to new type parameter syntax. | Eric Holk | -5/+5 | |
| 2011-08-16 | New channel-based task status notifications. | Eric Holk | -18/+128 | |
| 2011-08-16 | Make a call with the wrong number of arguments non-fatal. Closes #784. | Michael Sullivan | -20/+22 | |
| 2011-08-16 | Make fewer typechecker errors immediately fatal. | Michael Sullivan | -25/+25 | |
| 2011-08-16 | Remove support for expr[T] syntax. | Erick Tryzelaar | -11/+1 | |
| 2011-08-16 | Remove support for foo[T] declaration syntax. | Erick Tryzelaar | -5/+1 | |
| 2011-08-16 | Remove type parameter and vec/port/chan foo[T] syntax. | Erick Tryzelaar | -19/+6 | |
| 2011-08-16 | Port the tests to the expr foo::<T> syntax. | Erick Tryzelaar | -190/+198 | |
| 2011-08-16 | Port the compiler to the expr foo::<T> syntax. | Erick Tryzelaar | -329/+335 | |
| 2011-08-16 | Port the stdlib to the expr foo::<T> syntax. | Erick Tryzelaar | -141/+147 | |
| 2011-08-16 | Port the tests to the decl foo<T> syntax. | Erick Tryzelaar | -161/+161 | |
| 2011-08-16 | Port the compiler to foo<T> decl syntax. | Erick Tryzelaar | -77/+77 | |
| 2011-08-16 | Port the stdlib to the decl foo<T> syntax. | Erick Tryzelaar | -144/+144 | |
| 2011-08-16 | Port the tests to the typaram foo<T> syntax. | Erick Tryzelaar | -298/+299 | |
| 2011-08-16 | Port the compiler to the typaram foo<T> syntax. | Erick Tryzelaar | -568/+568 | |
| 2011-08-16 | Port the stdlib to the typaram foo<T> syntax. | Erick Tryzelaar | -144/+144 | |
| 2011-08-16 | Register new snapshots. | Graydon Hoare | -0/+5 | |
| 2011-08-16 | Change expr foo[T] syntax to foo::<T>. | Erick Tryzelaar | -8/+38 | |
| This preserves the old syntax for now. | ||||
| 2011-08-16 | Change declaration type parameter syntax to foo<T>. | Erick Tryzelaar | -2/+5 | |
| 2011-08-16 | Change type parameter syntax to foo<T>. | Erick Tryzelaar | -17/+64 | |
| This preserves the old syntax for now. | ||||
| 2011-08-16 | fuzzer: Remove send and recv | Patrick Walton | -2/+0 | |
| 2011-08-16 | rustc: Implement unique pointer allocation and deallocation | Patrick Walton | -9/+36 | |
| 2011-08-16 | Remove partial DPS back-end | Marijn Haverbeke | -823/+12 | |
| It won't be finished on the short term, and it's already bit-rotting fast. We can fetch this from git's autumn annals if we need it. | ||||
| 2011-08-16 | Removing port, chan and task shapes. | Eric Holk | -9/+0 | |
| 2011-08-16 | Don't put the target in the bind closure if it is statically known. Closes #177. | Michael Sullivan | -19/+33 | |
| 2011-08-16 | Add pp test for interleaving comments through vectors. Closes #679 | Brian Anderson | -0/+60 | |
| 2011-08-16 | Removing task, chan and port upcalls. | Eric Holk | -231/+0 | |
| 2011-08-16 | Removing tasks, ports and chans from the compiler. | Eric Holk | -341/+7 | |
| 2011-08-16 | Rename std::ivec to std::vec | Brian Anderson | -745/+740 | |
| 2011-08-16 | Replace std::ufind with std::ufindivec. Remove std::ufindivec | Brian Anderson | -79/+26 | |
| 2011-08-16 | Rename bitv::to_ivec to to_vec | Brian Anderson | -5/+5 | |
| 2011-08-16 | Continue migrating the std #fmt interface to ivecs | Brian Anderson | -29/+21 | |
| Only thing left is to remove some duplicate interfaces in std::extfmt::rt after the next snapshot | ||||
| 2011-08-16 | Revert "Revert "Make [] and ~[] both construct ivecs"" | Brian Anderson | -1/+1 | |
| This reverts commit 28bf19021981bd41a365aaa684c71afd2cf079d7. Should work now that tests are all using ivecs | ||||
| 2011-08-16 | Convert most main functions to the ivec signature | Brian Anderson | -48/+39 | |
| Converting rustc will still take a snapshot | ||||
| 2011-08-16 | Add and use an ivec interface to std::test | Brian Anderson | -8/+11 | |
| 2011-08-16 | Accept main(args: [str]) as main signature | Brian Anderson | -19/+221 | |
| 2011-08-16 | Disabling TRACK_ALLOCATIONS | Eric Holk | -2/+2 | |
| 2011-08-16 | Updating sio tests. | Eric Holk | -16/+21 | |
| 2011-08-16 | Removed trans_comm.rs from the compiler. Updating aio/sio to work with the ↵ | Eric Holk | -599/+325 | |
| new chan and port system, started on a networking module for the standard library. | ||||
| 2011-08-16 | Make let bindings' scope start at their definition | Marijn Haverbeke | -28/+70 | |
| Also, allow let bindings in a block to shadow each other. | ||||
| 2011-08-16 | Clean up zip and unzip in std::ivec | Marijn Haverbeke | -30/+25 | |
| 2011-08-16 | Register new snapshot | Marijn Haverbeke | -0/+5 | |
| 2011-08-15 | The wonky for...in... whitespace was bothering me. Sorry! | Lindsey Kuper | -565/+565 | |
| 2011-08-15 | XFAIL task-comm-15 | Brian Anderson | -0/+4 | |
| Fails consistently on windows | ||||
| 2011-08-15 | Abort abruptly on failure on windows | Brian Anderson | -0/+6 | |
| Trying to shutdown cleanly results in wierd failures | ||||
