| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-11-03 | library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as ↵ | Daniel Patterson | -628/+0 | |
| per #3543 | ||||
| 2012-10-19 | Remove superfluous by-ref in option::get, option::get_default, option::expect | Tim Chevalier | -1/+1 | |
| Superficial change, no review. | ||||
| 2012-10-15 | rustc: Merge module and type namespaces. r=brson | Patrick Walton | -9/+9 | |
| 2012-10-04 | Remove arg vectors from main functions. Stop supporting them. | Brian Anderson | -1/+2 | |
| 2012-10-02 | libstd: Switch off legacy modes in both core and std. | Patrick Walton | -1/+1 | |
| 2012-09-28 | demode vec | Niko Matsakis | -1/+1 | |
| 2012-09-26 | Fix fuzzer/cargo breakage | Brian Anderson | -1/+1 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -2/+2 | |
| 2012-09-26 | turn ast::ident into a struct | Erick Tryzelaar | -1/+1 | |
| 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-25 | Demode core::result | Brian Anderson | -3/+3 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -9/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -1/+1 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+2 | |
| #[legacy_exports]; | ||||
| 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 | -14/+16 | |
| 2012-09-18 | libcore: make a copyless io::BytesWriter | Erick Tryzelaar | -5/+1 | |
| 2012-09-18 | make filetype() include the "." (fixes #3412) | Niko Matsakis | -1/+1 | |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -1/+1 | |
| 2012-09-07 | Convert 'again' to 'loop'. Remove 'again' keyword | Brian Anderson | -4/+4 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+1 | |
| 2012-09-05 | fuzzer: "import" -> "use" | Patrick Walton | -5/+5 | |
| 2012-09-04 | Remove 'with' | Brian Anderson | -8/+8 | |
| 2012-08-31 | Make utility funs in core::int, core::uint, etc. not by-reference | Tim Chevalier | -5/+5 | |
| Closes #3302 | ||||
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -0/+6 | |
| 2012-08-29 | Fix breakage | Brian Anderson | -2/+2 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -12/+12 | |
| 2012-08-24 | Start using core::path2::Path in a lot of places. | Graydon Hoare | -48/+55 | |
| 2012-08-23 | libcore: update bytes/str reader to work with regions. | Erick Tryzelaar | -5/+6 | |
| This optimizes away a copy. | ||||
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -18/+18 | |
| 2012-08-22 | intern identifiers | Paul Stansifer | -6/+8 | |
| 2012-08-22 | Centralize ident interner generation. | Paul Stansifer | -6/+3 | |
| 2012-08-22 | Eliminate many match checks in rustc | Tim Chevalier | -10/+6 | |
| 2012-08-15 | rustc: Parse labeled loop, break, and again | Patrick Walton | -2/+2 | |
| 2012-08-15 | rustc: "as Trait" can now be written "as @Trait". | Patrick Walton | -3/+3 | |
| There is also code for ~Trait and &Trait, but these are currently (incorrectly) synonyms for "as @Trait" and "as &Trait". | ||||
| 2012-08-14 | Convert more core types to camel case | Brian Anderson | -4/+4 | |
| 2012-08-07 | syntax: Rename expr_alt to expr_match | Brian Anderson | -1/+1 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -9/+9 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -38/+38 | |
| 2012-08-01 | Convert ret to return | Brian Anderson | -11/+11 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -18/+18 | |
| 2012-07-30 | Feed the interner to the pretty-printer, in anticipation of pretty-printing ↵ | Paul Stansifer | -14/+26 | |
| token trees. | ||||
| 2012-07-14 | remove typestate from code, tests, and docs | Niko Matsakis | -12/+2 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -100/+105 | |
| #2907. | ||||
| 2012-07-13 | Support prefix notation for vstore strings. Closes #2906. | Michael Sullivan | -1/+1 | |
| 2012-07-12 | Obliterate the callee_id hack | Tim Chevalier | -1/+1 | |
| Exprs that could be applications of overloaded operators (expr_unary, expr_binary, expr_index) relied on the previous node ID being "reserved" to carry extra typechecking info. This was incredibly error-prone. Fixed it; now all exprs have two node IDs (which will be wasted in some cases; future work could make this an option instead if the extra int field ends up being a performance problem). Closes #2804 | ||||
| 2012-07-12 | Accept prefix notation for writing the types of str/~ and friends. | Michael Sullivan | -2/+2 | |
| 2012-07-09 | Switch 'cont' to 'again' everywhere. Close #2229. | Graydon Hoare | -4/+4 | |
| 2012-07-06 | For #2229, recognize 'again' in place of 'cont', final change pending snapshot. | Graydon Hoare | -1/+1 | |
| 2012-07-03 | Switch 'native' to 'extern' (or 'foreign' in some descriptions) | Graydon Hoare | -1/+1 | |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -28/+31 | |
