| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 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 | Add allow(deprecated_\*) to syntax, rustc, rustdoc, et al | Brian Anderson | -0/+2 | |
| 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 | -9/+9 | |
| 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/+3 | |
| #[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 | rustc: Remove legacy mode inference, unless #[legacy_modes] is used | Patrick Walton | -0/+2 | |
| 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-18 | Add allow(non_camel_case_types) to unconverted crates | Brian Anderson | -0/+1 | |
| 2012-09-11 | Convert 'use' to 'extern mod'. Remove old 'use' syntax | Brian Anderson | -3/+3 | |
| 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 | rustc: "import" -> "use" in .rc files | Patrick Walton | -1/+1 | |
| 2012-09-05 | fuzzer: "import" -> "use" | Patrick Walton | -16/+13 | |
| 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-30 | Bump version to 0.4 | Brian Anderson | -3/+3 | |
| 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 | -19/+19 | |
| 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 | -19/+19 | |
| 2012-08-01 | Clean out transitional lint. | Graydon Hoare | -5/+0 | |
| 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 | -19/+19 | |
| 2012-07-30 | Feed the interner to the pretty-printer, in anticipation of pretty-printing ↵ | Paul Stansifer | -14/+26 | |
| token trees. | ||||
| 2012-07-26 | Nomenclature fixes in the lint checker. Fewer double-negatives. | Graydon Hoare | -1/+5 | |
| 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 | 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 | |
