| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-12-12 | core: Remove some uses of 'move' | Brian Anderson | -31/+31 | |
| 2012-12-10 | Add license boilerplate to more files. | Graydon Hoare | -0/+10 | |
| 2012-12-09 | Remove transitional code | Brian Anderson | -9/+0 | |
| 2012-12-04 | librustc: Implement explicit self for Add and Index; add a hack in the ↵ | Patrick Walton | -0/+9 | |
| borrow checker to support this. r=nmatsakis | ||||
| 2012-11-30 | core: Make core.rc more readable. Cleanup | Brian Anderson | -0/+6 | |
| 2012-11-28 | core: Convert some records to structs | Brian Anderson | -21/+26 | |
| 2012-11-28 | Register snapshots | Brian Anderson | -78/+0 | |
| 2012-11-20 | Remove parentheses from closure argument types | Erick Tryzelaar | -1/+1 | |
| 2012-11-19 | rustc: Implement explicit self for Eq and Ord. r=graydon | Patrick Walton | -0/+78 | |
| 2012-11-03 | Remove stage0 stuff that was awaiting snapshot | Tim Chevalier | -36/+0 | |
| and re-register snapshots Just removing unneeded code, no review | ||||
| 2012-10-24 | Implement proper subtyping for region fn types (part of #2263) | Niko Matsakis | -1/+37 | |
| 2012-10-23 | Remove uses of binary move - <- - from tests and libraries | Tim Chevalier | -1/+1 | |
| 2012-10-19 | Renaming trait name UniqueStr to Trimmable | Mahmut Bulut | -2/+2 | |
| 2012-10-18 | Revert "Simplify str::to_managed" | Erick Tryzelaar | -2/+3 | |
| This reverts commit ac50046a111a1ef6fb58b7e5f368ff6b9b55f89c. | ||||
| 2012-10-18 | Rename str::to_unique to str::to_owned. | Erick Tryzelaar | -2/+2 | |
| 2012-10-18 | Simplify str::to_managed | Erick Tryzelaar | -3/+2 | |
| 2012-10-17 | libsyntax: refactor the parser to consider foreign items as items | Philipp Brüschweiler | -1/+1 | |
| parse_item_or_view_item() would drop visibility if none of the conditions following it would hold. This was the case when parsing extern {} blocks, where the function was only used to parse view items, but discarded the visibility of the first not-view item. | ||||
| 2012-10-17 | Fix copy warnings in str | Tim Chevalier | -3/+4 | |
| 2012-10-17 | Fix copy warnings in str | Tim Chevalier | -8/+8 | |
| 2012-10-17 | Merge pull request #3739 from killerswan/usagemsg | Tim Chevalier | -0/+62 | |
| Add a module to getopts for verbose option group declaration (and use it in rustc) | ||||
| 2012-10-17 | Add a module to getopts to support verbose option definition | Kevin Cantu | -0/+62 | |
| This is built on top of the existing functionality, but adds a `groups` module which defines functions allowing the user to specify whole short/long/description groups at once and provides a usage message. | ||||
| 2012-10-17 | Merge pull request #3706 from erickt/str-with-capacity | Tim Chevalier | -0/+5 | |
| libcore: add a str::with_capacity to match the fn in vec | ||||
| 2012-10-13 | Implement to_managed without using an upcall function, as suggested by brson. | Gareth Daniel Smith | -9/+4 | |
| 2012-10-13 | Add an &str.to_managed method to allow creating non-constant @str values ↵ | Gareth Daniel Smith | -0/+20 | |
| (for issue #3433). | ||||
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -16/+16 | |
| 2012-10-11 | Make to_str pure and fix const parameters for str-mutating functions | Tim Chevalier | -11/+11 | |
| 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-09 | libcore: add a str::with_capacity to match the fn in vec | Erick Tryzelaar | -0/+5 | |
| 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-04 | Forbid deprecated modes again in core | Tim Chevalier | -2/+2 | |
| Sadly, there's only one file that requires deprecated modes (stackwalk)... So, forbid them everywhere else. | ||||
| 2012-10-02 | Removing explicit uses of + mode | Tim Chevalier | -1/+1 | |
| 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-01 | rename vec::raw::form_slice to buf_as_slice | Erick Tryzelaar | -1/+1 | |
| This matches the str::raw function. | ||||
| 2012-10-01 | Move over to calling ptr::addr_of | Tim Chevalier | -1/+1 | |
| Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that. | ||||
| 2012-09-28 | Add a demoded version of ptr::addr_of | Tim Chevalier | -2/+2 | |
| Currently, the new version is ptr::p2::addr_of and the old one is ptr::addr_of. This is kind of cheesy, but I need a snapshot before I can ditch the old version, since the pipe compiler generates calls to addr_of. core is converted over to use the new version, std is not. | ||||
| 2012-09-28 | Fix long line. | Graydon Hoare | -2/+5 | |
| 2012-09-28 | De-export str. Part of #3583. | Graydon Hoare | -250/+124 | |
| 2012-09-28 | demode vec | Niko Matsakis | -4/+4 | |
| 2012-09-26 | core: Fix mode warnings in str | Brian Anderson | -4/+4 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -12/+11 | |
| 2012-09-25 | Demode iter-trait | Tim Chevalier | -2/+2 | |
| 2012-09-25 | Demode Num trait and impls | Tim Chevalier | -1/+1 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -81/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -2/+2 | |
| 2012-09-23 | Make it illegal to use modes in a fn signature with providing | Niko Matsakis | -1/+2 | |
| an explicit variable name. (Step one to changing the defaults) First step to #3535 | ||||
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -9/+6 | |
| 2012-09-21 | libcore: De-mode str | Patrick Walton | -67/+84 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -1/+5 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | libcore: Fix level-of-indirection problem in str::buf_as_slice | Patrick Walton | -1/+1 | |
| 2012-09-20 | rustc: Fix buf_as_slice export | Patrick Walton | -1/+1 | |
