| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-08 | Revert "remove ctor from ast" | Tim Chevalier | -15/+64 | |
| This reverts commit ed3689d57c988e1dd477930d957c4308c37d1a64. | ||||
| 2012-10-08 | remove ctor from ast | Niko Matsakis | -64/+15 | |
| 2012-10-05 | rustc: Implement simple trait inheritance. | Patrick Walton | -3/+3 | |
| Generic trait inheritance, cross-crate trait inheritance, and vtable-based trait inheritance don't work yet. | ||||
| 2012-10-02 | rustc: Only allow imports marked with "pub" to be imported from other modules | Patrick Walton | -4/+19 | |
| 2012-09-28 | demode vec | Niko Matsakis | -1/+1 | |
| 2012-09-27 | core: More option demoding | Brian Anderson | -1/+1 | |
| 2012-09-27 | rustc: Make enum export visibility inherit properly | Patrick Walton | -5/+10 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -3/+3 | |
| 2012-09-26 | replace resolve::Atom with ast::ident. | Erick Tryzelaar | -142/+129 | |
| 2012-09-26 | turn ast::ident into a struct | Erick Tryzelaar | -3/+3 | |
| 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-26 | Allow hashmaps to infer their types | Erick Tryzelaar | -1/+1 | |
| 2012-09-25 | Respect privacy qualifiers on view items, add to import resolutions. | Graydon Hoare | -54/+76 | |
| 2012-09-24 | Build the export_map2 from visibility markers, unless #[legacy_exports]; | Graydon Hoare | -11/+60 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -54/+0 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -2/+2 | |
| 2012-09-21 | rustc: Make x-ray resolution work with non-legacy-exports | Brian Anderson | -1/+1 | |
| Code generated for the test runner needs to break visibility rules | ||||
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -10/+10 | |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -21/+69 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | Remove export_map from resolve, just use export_map2. | Graydon Hoare | -20/+1 | |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+54 | |
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -30/+30 | |
| 2012-09-19 | Remove redundant hashmap constructor functions. | Graydon Hoare | -11/+11 | |
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵ | Niko Matsakis | -3/+3 | |
| 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 | -3/+3 | |
| 2012-09-11 | Make moves explicit in rustc | Tim Chevalier | -1/+1 | |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -18/+18 | |
| 2012-09-10 | Convert class methods to impl methods. Stop parsing class methods | Brian Anderson | -12/+24 | |
| 2012-09-10 | rustc: Make shape-based compare glue never called for comparison operators. | Patrick Walton | -4/+18 | |
| Only called for string patterns. | ||||
| 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 | -2/+2 | |
| 2012-09-07 | Migrate std::map to use core::hash::Hash trait. Disable many hokey hashes. | Graydon Hoare | -1/+1 | |
| 2012-09-07 | Remove support for multiple traits in a single impl | Tim Chevalier | -7/+7 | |
| There was half-working support for them, but they were never fully implemented or even approved. Remove them altogether. Closes #3410 | ||||
| 2012-09-07 | Convert field terminators to commas. Stop parsing semis. | Brian Anderson | -7/+7 | |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -51/+51 | |
| 2012-09-07 | rustc: Make "ne" use traits | Patrick Walton | -1/+1 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+6 | |
| 2012-09-06 | Remove struct ctors | Brian Anderson | -113/+135 | |
| 2012-09-05 | rustc: Make "priv" work on enum variants | Patrick Walton | -3/+4 | |
| 2012-09-05 | rustc: Fix double-reporting of private item errors. Un-XFAIL ↵ | Patrick Walton | -10/+0 | |
| private-item-simple.rs. | ||||
| 2012-09-04 | Remove 'with' | Brian Anderson | -4/+4 | |
| 2012-09-04 | std: Camel case list | Brian Anderson | -1/+1 | |
| 2012-09-04 | rustc: "import" -> "use" | Patrick Walton | -63/+63 | |
| 2012-08-31 | Make utility funs in core::int, core::uint, etc. not by-reference | Tim Chevalier | -1/+1 | |
| Closes #3302 | ||||
| 2012-08-31 | rustc: Implement "use mod" | Patrick Walton | -64/+229 | |
| 2012-08-29 | rustc: Make `<=`, `>=`, and `>` use traits as well | Patrick Walton | -1/+2 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -7/+61 | |
| 2012-08-29 | Rename resolve3 -> resolve. | Graydon Hoare | -0/+4611 | |
| 2012-07-20 | Remove what's left of resolve1 | Tim Chevalier | -67/+0 | |
| 2012-07-17 | Remove most of old resolve | Tim Chevalier | -2331/+2 | |
| resolve has a few type definitions in it that are used, so I left those and deleted everything else. Also, I switched rustdoc to use resolve3 instead of the old resolve. In a future commit I'll remove the type definitions entirely, as they're just duplicates of types defined in resolve3. | ||||
| 2012-07-14 | remove typestate from code, tests, and docs | Niko Matsakis | -15/+0 | |
