| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-10 | Move the description of -(W|A|D|F) into the `-W help` message | Kevin Cantu | -10/+10 | |
| 2012-10-10 | Touchup the debug flag description printing | Kevin Cantu | -1/+1 | |
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -10/+10 | |
| One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes. | ||||
| 2012-10-04 | De-mode comm::Chan | Tim Chevalier | -1/+1 | |
| 2012-10-04 | Remove arg vectors from main functions. Stop supporting them. | Brian Anderson | -1/+2 | |
| 2012-10-03 | rustc man page and usage text update. | Orphée Lafond-Lummis | -1/+1 | |
| * Mark --static as experimental; * Remove --stats, as the option isn't implemented. * Bold and surround by pointy brackets (<>) all the URLs of rustc man page, for consistency. | ||||
| 2012-09-28 | Demode extfmt | Tim Chevalier | -1/+1 | |
| Needs a snapshot before this can be completed, because I changed the mode for conv_poly. | ||||
| 2012-09-28 | demode vec | Niko Matsakis | -1/+1 | |
| 2012-09-26 | core: Replace map/map_default with map_ref/map_default_ref | Brian Anderson | -3/+3 | |
| 2012-09-26 | Refactoring ReaderUtil trait, combining it with the traitless impl on Reader. | Eric Holk | -0/+1 | |
| 2012-09-25 | Demode iter-trait | Tim Chevalier | -2/+2 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -9/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -3/+3 | |
| 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 | -2/+2 | |
| 2012-09-18 | rustc: Remove legacy mode inference, unless #[legacy_modes] is used | Patrick Walton | -0/+1 | |
| 2012-09-18 | Add allow(non_camel_case_types) to unconverted crates | Brian Anderson | -0/+1 | |
| 2012-09-12 | Make moves in arguments explicit in libsyntax and rustc | Tim Chevalier | -1/+1 | |
| 2012-09-11 | Convert 'use' to 'extern mod'. Remove old 'use' syntax | Brian Anderson | -4/+4 | |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -1/+1 | |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -1/+1 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+1 | |
| 2012-09-06 | Remove struct ctors | Brian Anderson | -2/+1 | |
| 2012-09-04 | rustc: "import" -> "use" | Patrick Walton | -10/+10 | |
| 2012-08-31 | Make utility funs in core::int, core::uint, etc. not by-reference | Tim Chevalier | -2/+2 | |
| Closes #3302 | ||||
| 2012-08-31 | jit: Correct formatting and argv[0] for JITted programs | Zack Corr | -1/+1 | |
| 2012-08-31 | Add experimental JIT compiler | Zack Corr | -0/+1 | |
| 2012-08-30 | Bump version to 0.4 | Brian Anderson | -4/+4 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -5/+11 | |
| 2012-08-29 | core: Demode int/uint mods | Brian Anderson | -1/+1 | |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -2/+2 | |
| 2012-08-27 | Convert core::result to camel case | Brian Anderson | -5/+5 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -5/+5 | |
| 2012-08-24 | Start using core::path2::Path in a lot of places. | Graydon Hoare | -3/+5 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -13/+13 | |
| 2012-08-17 | Remove the class keyword | Brian Anderson | -1/+1 | |
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -2/+2 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -1/+0 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -6/+6 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -15/+15 | |
| 2012-08-01 | Convert ret to return | Brian Anderson | -7/+10 | |
| 2012-08-01 | Clean out transitional lint. | Graydon Hoare | -5/+0 | |
| 2012-07-31 | Introduce 'return', 'match' and 'module' as synonyms | Brian Anderson | -13/+13 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -13/+13 | |
| 2012-07-26 | Nomenclature fixes in the lint checker. Fewer double-negatives. | Graydon Hoare | -8/+18 | |
| New style is allow(foo), warn(foo), deny(foo) and forbid(foo), mirrored by -A foo, -W foo, -D foo and -F foo on command line. These replace -W no-foo, -W foo, -W err-foo, respectively. Forbid is new, and means "deny, and you can't override it". | ||||
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -33/+33 | |
| #2907. | ||||
| 2012-07-11 | Fix some version numbers. | Graydon Hoare | -4/+4 | |
| 2012-07-04 | Remove empty argument lists from do expressions | Ben Striegel | -1/+1 | |
| 2012-07-02 | Mark -g as experimental (#2767) | Brian Anderson | -1/+1 | |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -7/+7 | |
