| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-26 | Refactoring ReaderUtil trait, combining it with the traitless impl on Reader. | Eric Holk | -6/+17 | |
| 2012-09-26 | libcore: De-export box, cast, and dlist | Patrick Walton | -54/+44 | |
| 2012-09-26 | Pass stage1 for relevant portion of "stage0" cross compile | Graydon Hoare | -0/+9 | |
| 2012-09-26 | libcore: De-export bool | Patrick Walton | -20/+16 | |
| 2012-09-26 | Make impl of Add for @[] public | Niko Matsakis | -4/+6 | |
| It's not clear that impls should have to be public to be used from outside the crate; in particular, I don't know whether they have to be public to be used from other modules within the same crate. | ||||
| 2012-09-26 | libcore: De-mode at_vec | Patrick Walton | -18/+19 | |
| 2012-09-26 | Revert "Revert "libcore: De-mode at_vec"" | Patrick Walton | -16/+20 | |
| This reverts commit fe09451a5a34931e11fa67ee83ac8deaa8d585be. | ||||
| 2012-09-26 | Revert "fix modes on dtors" | Tim Chevalier | -7/+1 | |
| This reverts commit d38b97a170eaea47933c30937cee5f525573116d. (Accidentally checked this in, oops) | ||||
| 2012-09-26 | Demode some of core::io | Tim Chevalier | -42/+44 | |
| 2012-09-26 | fix modes on dtors | Tim Chevalier | -1/+7 | |
| 2012-09-26 | Demode tuple | Tim Chevalier | -3/+3 | |
| 2012-09-26 | fix issue #3535 and add colon between mode and type when dumping funcion ↵ | Vincent Belliard | -18/+54 | |
| prototype | ||||
| 2012-09-25 | Fix borked tests | Tim Chevalier | -2/+2 | |
| 2012-09-25 | Demode iter-trait | Tim Chevalier | -68/+70 | |
| 2012-09-25 | Fix long lines | Tim Chevalier | -4/+5 | |
| 2012-09-25 | Fix long line | Tim Chevalier | -1/+1 | |
| 2012-09-25 | Demode pipes::set_buffer | Tim Chevalier | -1/+1 | |
| 2012-09-25 | Comment out at_vec test that fails | Tim Chevalier | -1/+2 | |
| 2012-09-25 | Revert "libcore: De-mode at_vec" | Tim Chevalier | -20/+16 | |
| This reverts commit ab6318803e1764e6e894441c2829f9b47acbf298. | ||||
| 2012-09-25 | Demode dvec | Tim Chevalier | -16/+16 | |
| 2012-09-25 | libcore: De-mode at_vec | Patrick Walton | -16/+20 | |
| 2012-09-25 | libcore: De-export core::at_vec | Patrick Walton | -31/+21 | |
| 2012-09-25 | Demode core::result | Brian Anderson | -145/+153 | |
| 2012-09-25 | Check more things with deprecated_modes | Brian Anderson | -36/+110 | |
| 2012-09-25 | rustc: Reduce shape.rs to the bare minimum needed to not trigger bugs | Patrick Walton | -163/+6 | |
| 2012-09-25 | test: Remove various box annihilator tests | Patrick Walton | -36/+0 | |
| 2012-09-25 | rustc: Remove most of the code that generates shapes | Patrick Walton | -376/+0 | |
| 2012-09-25 | rustc: Stop generating shape tables | Patrick Walton | -59/+4 | |
| 2012-09-25 | Demode Num trait and impls | Tim Chevalier | -59/+59 | |
| 2012-09-25 | Fix combine-tests.py to emit #[legacy_exports]; | Graydon Hoare | -0/+2 | |
| 2012-09-25 | Respect privacy qualifiers on view items, add to import resolutions. | Graydon Hoare | -54/+90 | |
| 2012-09-25 | Change method res to try autoref more often. Fixes #3585. | Niko Matsakis | -53/+48 | |
| 2012-09-25 | rustc: Move generally useful functions out of shape.rs in preparation for ↵ | Patrick Walton | -143/+150 | |
| its destruction | ||||
| 2012-09-25 | docs: Only display one level of hierarchy in the TOC | Brian Anderson | -0/+5 | |
| 2012-09-25 | docs: Fix style sheet for tables | Brian Anderson | -1/+1 | |
| 2012-09-25 | rustc: Fix calls to the logging function when the must_cast flag is true; ↵ | Patrick Walton | -17/+69 | |
| stop using shape code for logging | ||||
| 2012-09-25 | use + mode for (almost) everything when not using legacy modes | Niko Matsakis | -68/+133 | |
| 2012-09-25 | core: Mark more mods as demoded | Brian Anderson | -0/+12 | |
| 2012-09-25 | Revert "rustc: Stop using shape code for logging" due to ICEs | Patrick Walton | -48/+15 | |
| This reverts commit ac822a52be47579ffa59d5ca3e125680a79545d0. | ||||
| 2012-09-25 | rt: Remove the cycle collector | Patrick Walton | -610/+0 | |
| 2012-09-25 | rustc: Stop using shape code for logging | Patrick Walton | -15/+48 | |
| 2012-09-24 | rt: Add a logging function for strings (only). | Patrick Walton | -0/+8 | |
| This will be the shape-free replacement for upcall_log_type. | ||||
| 2012-09-24 | rt: Call the Rust box annihilator; stop calling the cycle collector | Patrick Walton | -12/+11 | |
| This reverts commit 991cbfe42c8836e8b4adfcaf288d5c0b8d57397c. | ||||
| 2012-09-24 | libcore: Fix 32 bit Rust task structure offsets for unwinding | Patrick Walton | -3/+32 | |
| 2012-09-24 | tutorial: Merge discussion of patterns and let bindings | Brian Anderson | -12/+8 | |
| 2012-09-24 | tutorial: A little more explanation of why managed boxes are useful | Brian Anderson | -1/+29 | |
| 2012-09-24 | tutorial: Expand borrowed ptr discussion. Misc | Brian Anderson | -45/+94 | |
| 2012-09-24 | tutorial: Swap order of data type/function sections. Add method discussion | Brian Anderson | -58/+100 | |
| 2012-09-24 | tutorial: More generics cleanup | Brian Anderson | -26/+24 | |
| 2012-09-24 | tutorial: Overhaul the generics section | Brian Anderson | -138/+167 | |
