| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-10-24 | move sys fns into c-stack-cdecl and get_type_desc() into rusti | Niko Matsakis | -91/+96 | |
| there is one test failure, stdtest/sys.rs, which inexplicably (thus far) fails to compile because it invokes sys::rustrt::last_os_error() instead of invoking sys::last_os_error(). If stdtest/sys.rs is updated to invoke the wrapper, it passes. Still tracing the source of this error. | ||||
| 2011-10-24 | migrate leak | Niko Matsakis | -2/+2 | |
| 2011-10-24 | migrate rust_run_program | Niko Matsakis | -1/+1 | |
| 2011-10-24 | migrate debugging funcs | Niko Matsakis | -34/+36 | |
| 2011-10-24 | migrate sched_threads call | Niko Matsakis | -1/+1 | |
| 2011-10-24 | convert str methods to c-stack-cdecl | Niko Matsakis | -1/+1 | |
| 2011-10-24 | make time module use c-stack-cdecl | Niko Matsakis | -1/+1 | |
| 2011-10-24 | move rand functions into c-stack-cdecl mode | Niko Matsakis | -1/+11 | |
| 2011-10-24 | remove unnecessary && from various file routines | Niko Matsakis | -3/+3 | |
| 2011-10-24 | move more native "rust" to native "c-stack-cdecl" | Niko Matsakis | -3/+3 | |
| 2011-10-24 | move io.rs natives from "rust" to "c-stack-stdlib" | Niko Matsakis | -1/+1 | |
| 2011-10-24 | move fs routines to c-stack-stdlib | Niko Matsakis | -6/+6 | |
| 2011-10-24 | rip out unused task pointers | Niko Matsakis | -12/+12 | |
| 2011-10-24 | move comm functions out of rust abi | Niko Matsakis | -14/+34 | |
| 2011-10-24 | purge log_err | Niko Matsakis | -1/+0 | |
| 2011-10-24 | update vec libs to use c-stack-cdecl calling convention | Niko Matsakis | -6/+23 | |
| 2011-10-24 | Register snapshots | Brian Anderson | -0/+5 | |
| 2011-10-23 | Revert "Register snapshots" | Brian Anderson | -5/+0 | |
| This reverts commit 6e40f705c167860a976aed9c6a69ed70cf56e6a7. | ||||
| 2011-10-23 | Revert "Register snapshots" | Brian Anderson | -5/+0 | |
| This reverts commit 24a6d334b7e2e7fd2f6f4aa67e3f717af2c93999. | ||||
| 2011-10-23 | Register snapshots | Brian Anderson | -0/+5 | |
| 2011-10-23 | Register snapshots | Brian Anderson | -0/+5 | |
| 2011-10-23 | Fix an insane rt build error running 'make check -j3' | Austin Seipp | -3/+1 | |
| 2011-10-23 | Remove a test binary that shouldn't exist | Brian Anderson | -0/+0 | |
| 2011-10-22 | Update src/etc/gyp-uv | Brian Anderson | -7/+9 | |
| Make instructions more accurate. Make the sed commands work on linux. | ||||
| 2011-10-22 | Upgrade libuv to 179f475b2ad64729feb0422f06ce133cb364482a | Brian Anderson | -1777/+19397 | |
| 2011-10-21 | Remove hack to break the AST fold cycle. Closes #998 | Brian Anderson | -38/+2 | |
| 2011-10-21 | Get 'make tidy' to work rustllvm and rt again | Brian Anderson | -141/+142 | |
| 2011-10-21 | Register snapshots | Brian Anderson | -0/+5 | |
| 2011-10-21 | Cycle-collect objects | Brian Anderson | -2/+18 | |
| 2011-10-21 | update trans_c_stack_native_call() to use type_of_explicit_args() | Niko Matsakis | -28/+18 | |
| currently trans_c_stack_native_call() had some ad-hoc code for determining the type of the arguments. this code was not in agreement with the rest of trans. now it uses the same code path. | ||||
| 2011-10-21 | add get_type_desc to list of exported funcs | Niko Matsakis | -0/+1 | |
| 2011-10-21 | add get_type_desc function to library | Niko Matsakis | -0/+5 | |
| 2011-10-21 | avoid extra load for by_mutable_ref parameters | Niko Matsakis | -4/+7 | |
| 2011-10-21 | Free vectors during cc sweep | Brian Anderson | -3/+136 | |
| 2011-10-21 | Record the internal reference count of environment boxes. Closes #981 | Brian Anderson | -19/+38 | |
| 2011-10-21 | Clean up character pattern in float.rs | Marijn Haverbeke | -1/+1 | |
| This is actually a test to see if I fixed the bot. | ||||
| 2011-10-21 | Be more careful when parsing block calls | Marijn Haverbeke | -1/+2 | |
| Previously, the parser would try to interpret this as a block call: if true {} // No semicolon {|i, am, a, block|}; Which, though unlikely, might come up in practice. | ||||
| 2011-10-21 | Remove some semicolons after block calls | Marijn Haverbeke | -41/+41 | |
| The remaining ones can be removed after the next snapshot. (Or we can let the next pretty-print pass take care of them.) | ||||
| 2011-10-21 | Change the way block calls are parsed, mark them as block-calls. | Marijn Haverbeke | -46/+56 | |
| This makes it possible to omit the semicolon after the block, and will cause the pretty-printer to properly print such calls (if pretty-printing of blocks wasn't so broken). Block calls (with the block outside of the parentheses) can now only occur at statement level, and their value can not be used. When calling a block-style function that returns a useful value, the block must be put insde the parentheses. Issue #1054 | ||||
| 2011-10-21 | Drop support for iter, put, and for-each | Marijn Haverbeke | -494/+66 | |
| Closes #1056 | ||||
| 2011-10-21 | Remove remaining uses of iter and for-each | Marijn Haverbeke | -223/+126 | |
| Issue #1056 | ||||
| 2011-10-21 | Move ast_util::pat_bindings over to new iter system. | Marijn Haverbeke | -50/+41 | |
| Issue #1056 | ||||
| 2011-10-21 | Remove last uses of iterators from stdlib | Marijn Haverbeke | -57/+46 | |
| Issue #1056 | ||||
| 2011-10-21 | Move hash table iteration over to block-taking functions | Marijn Haverbeke | -86/+82 | |
| Issue #1056 | ||||
| 2011-10-21 | Register new snapshot | Marijn Haverbeke | -0/+5 | |
| (For block argument syntax.) | ||||
| 2011-10-21 | Support Ruby-style block argument syntax | Marijn Haverbeke | -12/+21 | |
| Issue #1054 | ||||
| 2011-10-20 | Restore broken tests in stdtest::test | Brian Anderson | -9/+6 | |
| 2011-10-20 | Remove unused empty_fn_ty from rustc::front::test | Brian Anderson | -9/+0 | |
| 2011-10-20 | Give native functions proto_bare | Brian Anderson | -1/+1 | |
| 2011-10-20 | Remove temporary fn# syntax | Brian Anderson | -122/+111 | |
