| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-11 | Export VecUnboxedRepr from vec so a test case can use it | Tim Chevalier | -10/+11 | |
| 2012-10-11 | Fix from_buf in test cases | Tim Chevalier | -2/+2 | |
| 2012-10-11 | Remove comment that is now false | Tim Chevalier | -22/+36 | |
| 2012-10-11 | Update FIXME number | Tim Chevalier | -4/+4 | |
| 2012-10-11 | Update FIXME number | Tim Chevalier | -1/+1 | |
| 2012-10-11 | Exports are fixed, hooray | Tim Chevalier | -2/+0 | |
| 2012-10-11 | Remove invalid FIXME | Tim Chevalier | -1/+0 | |
| 2012-10-11 | Write option::chain and result::chain with `match move` | Tim Chevalier | -10/+6 | |
| Closes #3590 | ||||
| 2012-10-11 | Make to_str pure and fix const parameters for str-mutating functions | Tim Chevalier | -47/+51 | |
| Two separate changes that got intertwined (sorry): Make to_str pure. Closes #3691 In str, change functions like push_char to take an &mut str instead of an &str. Closes #3710 | ||||
| 2012-10-09 | core::str - making StrSlice trait functions pure | Daniel Patterson | -53/+55 | |
| 2012-10-08 | libcore: add pop/swap/consume to SendMap | Erick Tryzelaar | -29/+126 | |
| 2012-10-08 | libcore: include the trim methods in the StrSlice trait | Erick Tryzelaar | -0/+3 | |
| 2012-10-08 | libcore: str trim functions can be applied to &strs | Erick Tryzelaar | -0/+10 | |
| 2012-10-07 | libcore Fix the tuple first_ref test | Erick Tryzelaar | -1/+1 | |
| 2012-10-07 | libcore: add first_ref and second_ref to tuples | Erick Tryzelaar | -3/+28 | |
| 2012-10-05 | Finally removing all uses of by-mut-ref | Tim Chevalier | -64/+0 | |
| The code for the mode itself is still there. | ||||
| 2012-10-05 | Remove uses of mutable ref mode. | Tim Chevalier | -8/+8 | |
| It's still in the compiler right now, but warned about | ||||
| 2012-10-05 | Revert "wip" | Tim Chevalier | -8/+8 | |
| This reverts commit ca49fd402af8e7bf613c43e996274b5a017958d2. | ||||
| 2012-10-05 | wip | Tim Chevalier | -8/+8 | |
| 2012-10-05 | Demode some code using by-mutbl-ref; warn about by-mutbl-ref | Tim Chevalier | -1/+66 | |
| The parser now warns about use of mutbl-ref mode, though it's kind of a lie since this commit doesn't remove support for the mode. Changed move_val_init to have stage0 and stage1/2 versions, the latter of which is demoded. Changed the type that the typechecker expects the move_val_init intrinsic to have. After this is pushed, I can make a new snapshot, which will remove the need for the stage0 versions. | ||||
| 2012-10-05 | Silence most of the remaining warnings | Brian Anderson | -2/+2 | |
| 2012-10-05 | core: Correct description of cast::forget | Brian Anderson | -1/+1 | |
| 'managed' means something different now | ||||
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -26/+26 | |
| One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes. | ||||
| 2012-10-04 | Fix FIXME that's no longer blocked by #2611 | Tim Chevalier | -4/+3 | |
| 2012-10-04 | Kill bootstrapping code in ptr | Tim Chevalier | -6/+0 | |
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -23/+48 | |
| Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else. | ||||
| 2012-10-04 | De-mode comm::Chan | Tim Chevalier | -58/+58 | |
| 2012-10-04 | Remove code that was waiting for a snapshot | Tim Chevalier | -196/+3 | |
| extfmt is now demoded | ||||
| 2012-10-04 | Remove some residue, core is effectively de-exported now. Close #3583. | Graydon Hoare | -45/+3 | |
| 2012-10-04 | core: Improve option docs a little | Brian Anderson | -31/+105 | |
| 2012-10-04 | De-export extfmt. Part of #3583. | Graydon Hoare | -70/+69 | |
| 2012-10-03 | core: Make some parts of task private | Brian Anderson | -36/+36 | |
| 2012-10-03 | libcore: De-export core.rc and core.rs | Patrick Walton | -137/+113 | |
| 2012-10-03 | Sub-uses from libc should be pub. | Graydon Hoare | -24/+24 | |
| 2012-10-03 | Attempt to fix os::args errors on various platforms. | Graydon Hoare | -13/+21 | |
| 2012-10-02 | rustc: Only allow imports marked with "pub" to be imported from other modules | Patrick Walton | -6/+7 | |
| 2012-10-02 | Fix long line. | Graydon Hoare | -1/+2 | |
| 2012-10-02 | De-export the submodules of task. Part of #3583. | Graydon Hoare | -60/+54 | |
| 2012-10-02 | libcore: Implement os::args() on Windows | Patrick Walton | -1/+46 | |
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -265/+264 | |
| This removes most explicit uses of the + argument mode. Pending a snapshot, I had to remove the forbid(deprecated_modes) pragma from a bunch of files. I'll put it back! + mode still has to be used in a few places for functions that get moved (see task.rs) The changes outside core and std are due to the to_bytes trait and making the compiler (with legacy modes on) agree with the libraries (with legacy modes off) about modes. | ||||
| 2012-10-02 | core::rand - adding rand::random(), a shortcut to generate a uint with ↵ | Daniel Patterson | -0/+13 | |
| task-local rng | ||||
| 2012-10-02 | libstd: Switch off legacy modes in both core and std. | Patrick Walton | -12/+12 | |
| 2012-10-02 | De-export comm, task. Part of #3583. | Graydon Hoare | -70/+23 | |
| 2012-10-02 | core::rand - adding test for task_rng() | Daniel Patterson | -0/+8 | |
| 2012-10-02 | core::rand - adding task local lazily initialized rng, as per #3439 | Daniel Patterson | -0/+27 | |
| 2012-10-02 | core: Add implementation of real_args for FreeBSD | Brian Anderson | -0/+5 | |
| 2012-10-01 | silence warning | Niko Matsakis | -1/+1 | |
| 2012-10-01 | rename vec::raw::form_slice to buf_as_slice | Erick Tryzelaar | -5/+5 | |
| This matches the str::raw function. | ||||
| 2012-10-01 | Merge pull request #3638 from dbp/typo | Brian Anderson | -1/+1 | |
| core::task - typo in comment | ||||
| 2012-10-01 | core::task - typo in comment | Daniel Patterson | -1/+1 | |
