| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-02 | std: warn(non_camel_case_types) everywhere. still some exceptions | Brian Anderson | -2/+0 | |
| 2012-09-01 | Remove the 'to' keyword | Brian Anderson | -9/+9 | |
| 2012-08-31 | Various JSON pretty printing tweaks | Kevin Cantu | -9/+31 | |
| 2012-08-31 | Fix JSON parsing of unicode escapes | Kevin Cantu | -5/+13 | |
| 2012-08-31 | Pretty print JSON: sorting object keys | Kevin Cantu | -6/+19 | |
| 2012-08-31 | Pretty print JSON: indentation and newlines | Kevin Cantu | -0/+68 | |
| 2012-08-30 | Fix json test. | Graydon Hoare | -9/+7 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -1/+16 | |
| 2012-08-28 | CamelCasify lots of std | Ben Striegel | -178/+180 | |
| 2012-08-27 | Convert core::result to camel case | Brian Anderson | -108/+108 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -5/+5 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -1/+1 | |
| 2012-08-14 | Convert more core types to camel case | Brian Anderson | -4/+4 | |
| 2012-08-13 | core: Camel case some lesser-used modules | Brian Anderson | -2/+2 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -30/+29 | |
| 2012-08-07 | syntax: Make match arm parsing more restrictive again | Brian Anderson | -1/+1 | |
| Require comma separators for all expression types except the plain block | ||||
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -28/+28 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -94/+85 | |
| 2012-08-02 | Remove modes from map API and replace with regions. | Niko Matsakis | -6/+12 | |
| API is (for now) mostly by value, there are options to use it by reference if you like. Hash and equality functions must be pure and by reference (forward looking to the day when something like send_map becomes the standard map). | ||||
| 2012-08-01 | Convert ret to return | Brian Anderson | -26/+26 | |
| 2012-07-31 | Change remaining "iface" occurrences to "trait"; deprecate "iface" | Lindsey Kuper | -1/+1 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -1/+1 | |
| 2012-07-17 | rustc: Implement and enforce instance coherence | Patrick Walton | -3/+8 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -216/+217 | |
| #2907. | ||||
| 2012-07-13 | Support prefix notation for vstore strings. Closes #2906. | Michael Sullivan | -52/+52 | |
| 2012-07-13 | More consistent use of backticks and "expected" in error messages. | Lindsey Kuper | -6/+6 | |
| Got some of the debug messages, here, too. I figure it doesn't hurt to get used to doing this even in places where users won't ever see it. | ||||
| 2012-07-12 | Accept prefix notation for writing the types of str/~ and friends. | Michael Sullivan | -4/+4 | |
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -7/+7 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-07-02 | rustc: Implement a new resolve pass behind a compile flag | Patrick Walton | -0/+1 | |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -9/+9 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -4/+4 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -44/+44 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -35/+35 | |
| 2012-06-13 | Add a couple more to_json impls. | Erick Tryzelaar | -0/+12 | |
| 2012-06-12 | Fix json no-implicit-copy warnings | Erick Tryzelaar | -105/+118 | |
| 2012-06-12 | std: Add a to_str impl for json::error. | Erick Tryzelaar | -0/+6 | |
| 2012-05-28 | std: add json::to_str and json::to_json iface. | Erick Tryzelaar | -0/+105 | |
| 2012-04-23 | Move map iface over to more `for`-friendly iteration methods | Marijn Haverbeke | -2/+2 | |
| 2012-03-26 | Bulk-edit mutable -> mut. | Graydon Hoare | -6/+6 | |
| 2012-03-16 | core: Store reexporting result and either. Closes #1997 | Brian Anderson | -1/+1 | |
| 2012-03-14 | std: Rename the hashmap constructors to conform to new standards | Brian Anderson | -2/+2 | |
| Instead of using the new_ prefix just name them after their type | ||||
| 2012-03-14 | annotate libstd and start enforcing mutability | Niko Matsakis | -17/+18 | |
| 2012-03-13 | Name types after their modules instead of 't' | Brian Anderson | -13/+13 | |
| 2012-03-10 | Use loop instead of while(true) in libraries and compiler itself | Tim Chevalier | -5/+5 | |
| And remove spurious fails/unreachable() calls. | ||||
| 2012-03-09 | std: Convert to rustdoc | Brian Anderson | -37/+8 | |
| 2012-03-07 | stdlib: Stop incurring vtable dispatch costs when hashmaps are used | Patrick Walton | -1/+2 | |
| This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict. | ||||
| 2012-03-07 | Revert "stdlib: Stop incurring vtable dispatch costs when hashmaps are used" | Patrick Walton | -2/+1 | |
| This reverts commit f0250a23d3fa2f8b4a4a4113ca89e41945a4cfed. | ||||
| 2012-03-07 | stdlib: Stop incurring vtable dispatch costs when hashmaps are used | Patrick Walton | -1/+2 | |
| This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict. | ||||
| 2012-03-05 | std: export json::error. | Erick Tryzelaar | -0/+1 | |
| 2012-03-02 | std: add a io::with_str_reader fn to remove a str copy | Erick Tryzelaar | -1/+1 | |
