| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 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 | |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -2/+2 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+1 | |
| 2012-09-07 | Refactor fn_ty, working towards #3320 | Niko Matsakis | -13/+20 | |
| 2012-09-06 | Refactor ty_var and ty_var_integral into one ty_infer variant | Niko Matsakis | -3/+3 | |
| 2012-09-06 | Remove struct ctors | Brian Anderson | -3/+5 | |
| 2012-09-05 | Mark crate metadata with a version tag. Close #3390. | Graydon Hoare | -4/+42 | |
| 2012-09-04 | Allow anonymous extern mods | Tim Chevalier | -19/+28 | |
| Now you can write: extern { f() -> int; } and f will be accessible in the enclosing scope. | ||||
| 2012-09-04 | Remove 'with' | Brian Anderson | -3/+3 | |
| 2012-09-04 | rustc: "import" -> "use" | Patrick Walton | -86/+86 | |
| 2012-09-01 | Demode reinterpret_cast | Brian Anderson | -1/+1 | |
| 2012-08-30 | rustc: "extern mod { ... }" should be written "extern { ... }" instead | Patrick Walton | -1/+0 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -0/+6 | |
| 2012-08-29 | std: Camel case some constructors | Brian Anderson | -11/+11 | |
| 2012-08-29 | Rename resolve3 -> resolve. | Graydon Hoare | -3/+3 | |
| 2012-08-28 | CamelCasify lots of std | Ben Striegel | -70/+70 | |
| 2012-08-28 | Compress metadata section. Seems a minor speed win, major space win. | Graydon Hoare | -2/+4 | |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -5/+5 | |
| 2012-08-27 | Add some counters to metadata. | Graydon Hoare | -1/+58 | |
| 2012-08-27 | Convert core::result to camel case | Brian Anderson | -18/+18 | |
| 2012-08-27 | rustc: fix the unused pattern vars warnings. | Erick Tryzelaar | -7/+7 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -140/+140 | |
| 2012-08-25 | Fix more unused variable warnings | Brian Anderson | -1/+1 | |
| 2012-08-25 | rustc: Implement foreign constants. | Patrick Walton | -0/+8 | |
| This is needed for a lot of Apple libraries, as Apple tends to put a lot of globals in dynamic libraries. | ||||
| 2012-08-24 | Start using core::path2::Path in a lot of places. | Graydon Hoare | -65/+64 | |
| 2012-08-23 | Remove purity from fn_decl and move it out to containing AST elements. | Michael Sullivan | -32/+28 | |
| 2012-08-23 | Rename str::bytes to str::to_bytes | Tim Chevalier | -15/+16 | |
| Closes #3245 | ||||
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -89/+89 | |
| 2012-08-23 | Infer variance of types with respect to the region parameter. | Niko Matsakis | -11/+21 | |
| A similar approach could be used for type parameters. Fixes #2282. | ||||
| 2012-08-22 | Represent "item families" in the decoder as an enum | Tim Chevalier | -92/+157 | |
| This eliminates some match checks. Also get rid of other match checks in metadata code. | ||||
| 2012-08-22 | Dead code elimination | Tim Chevalier | -9/+1 | |
