| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-11 | Remove obsolete FIXME | Tim Chevalier | -1/+0 | |
| 2012-10-09 | Remove old serialization2 vestigial code | Erick Tryzelaar | -2/+2 | |
| 2012-10-07 | Remove the old serializers (needs snapshot) | Erick Tryzelaar | -162/+163 | |
| 2012-10-07 | migrate libsyntax/rustc to auto_serialize2 | Erick Tryzelaar | -167/+172 | |
| 2012-10-05 | Remove by-mutable-ref mode from the compiler | Tim Chevalier | -2/+0 | |
| and test cases. Closes #3513 | ||||
| 2012-10-05 | Remove uses of mutable ref mode. | Tim Chevalier | -1/+1 | |
| It's still in the compiler right now, but warned about | ||||
| 2012-10-05 | rustc: Implement simple uses of &trait | Patrick Walton | -0/+12 | |
| 2012-10-05 | Revert "wip" | Tim Chevalier | -1/+3 | |
| This reverts commit ca49fd402af8e7bf613c43e996274b5a017958d2. | ||||
| 2012-10-05 | wip | Tim Chevalier | -3/+1 | |
| 2012-10-02 | rustc: Add a side table for legacy boxed traits, not filled in. | Patrick Walton | -1/+2 | |
| This is part of the transition to "@int as @Trait". | ||||
| 2012-10-01 | rename vec::raw::form_slice to buf_as_slice | Erick Tryzelaar | -2/+2 | |
| This matches the str::raw function. | ||||
| 2012-09-28 | Demoding in iter: any, all, map_to_vec, flat_map_to_vec, filter_to_vec | Tim Chevalier | -2/+2 | |
| 2012-09-28 | demode vec | Niko Matsakis | -3/+3 | |
| 2012-09-27 | core: More option demoding | Brian Anderson | -3/+3 | |
| 2012-09-26 | core: Replace map/map_default with map_ref/map_default_ref | Brian Anderson | -3/+3 | |
| 2012-09-26 | core: Fix mode warnings in str | Brian Anderson | -1/+1 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -66/+65 | |
| 2012-09-26 | turn ast::ident into a struct | Erick Tryzelaar | -28/+28 | |
| This will help with the auto_serialize2 migration. We have to change ident from a type alias to uint into a unique type. We need to use a struct instead of a "enum ident = token::str_num" because structs support constants, but newtypes do not. | ||||
| 2012-09-26 | Allow hashmaps to infer their types | Erick Tryzelaar | -4/+4 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -9/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -10/+10 | |
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -7/+5 | |
| 2012-09-21 | libcore: De-mode str | Patrick Walton | -1/+1 | |
| 2012-09-20 | Revert "syntax: Make attributes sendable for rustdoc's benefit" | Brian Anderson | -22/+22 | |
| This reverts commit 90e3665fa79d32c3188169cfa992516fb36b81a8. | ||||
| 2012-09-20 | syntax: Make attributes sendable for rustdoc's benefit | Brian Anderson | -22/+22 | |
| 2012-09-20 | Remove export_map from resolve, just use export_map2. | Graydon Hoare | -3/+0 | |
| 2012-09-20 | libcore: Make BytesWriters not require shared boxes. | Patrick Walton | -1/+1 | |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+9 | |
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -29/+29 | |
| 2012-09-19 | Remove redundant hashmap constructor functions. | Graydon Hoare | -8/+7 | |
| 2012-09-19 | Remove hokey-hashes from metadata indexes. | Graydon Hoare | -18/+10 | |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -5/+7 | |
| Note that the method foo.each() is not de-moded, nor the other vec routines. | ||||
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -11/+9 | |
| demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready. | ||||
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -9/+11 | |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -1/+1 | |
| 2012-09-18 | libcore: make a copyless io::BytesWriter | Erick Tryzelaar | -26/+24 | |
| 2012-09-15 | int/uint parse_buf => parse_bytes (#3444) | Erick Tryzelaar | -3/+3 | |
| 2012-09-15 | libcore: rename *flate_buf to *flate_bytes (#3444) | Erick Tryzelaar | -3/+3 | |
| 2012-09-12 | Rename str::unsafe to str::raw | Brian Anderson | -1/+1 | |
| 2012-09-12 | Rename vec::unsafe to vec::raw | Brian Anderson | -2/+2 | |
| 2012-09-11 | Introduce auto adjustment table to subsume autoderef/autoref/borrowings. | Niko Matsakis | -17/+46 | |
| Fixes #3261 Fixes #3443 | ||||
| 2012-09-11 | Promote 'struct' from a restricted keyword to a strict keyword | Brian Anderson | -4/+4 | |
| 2012-09-11 | Make moves explicit in rustc | Tim Chevalier | -1/+1 | |
| 2012-09-10 | Convert 'import' to 'use'. Remove 'import' keyword. | Brian Anderson | -1/+1 | |
| 2012-09-10 | Camel case std::serialization | Brian Anderson | -2/+0 | |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -19/+19 | |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -2/+2 | |
| 2012-09-07 | Convert 'again' to 'loop'. Remove 'again' keyword | Brian Anderson | -1/+1 | |
| 2012-09-07 | Remove support for multiple traits in a single impl | Tim Chevalier | -5/+2 | |
| There was half-working support for them, but they were never fully implemented or even approved. Remove them altogether. Closes #3410 | ||||
| 2012-09-07 | rustc: Add a str_eq lang item for pattern matching | Patrick Walton | -0/+1 | |
