| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-07 | Migrate std::map to use core::hash::Hash trait. Disable many hokey hashes. | Graydon Hoare | -35/+115 | |
| 2012-09-07 | Remove support for multiple traits in a single impl | Tim Chevalier | -11/+12 | |
| There was half-working support for them, but they were never fully implemented or even approved. Remove them altogether. Closes #3410 | ||||
| 2012-09-07 | Implement &-patterns | Tim Chevalier | -4/+30 | |
| Closes #2855 | ||||
| 2012-09-07 | Add an ignore! macro, remove support for nested block comments, re: #2755. | Graydon Hoare | -12/+8 | |
| 2012-09-07 | Remove module keyword | Brian Anderson | -18/+6 | |
| 2012-09-07 | Convert field terminators to commas. Stop parsing semis. | Brian Anderson | -5/+5 | |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -21/+20 | |
| 2012-09-07 | rustc: Make "ne" use traits | Patrick Walton | -1/+2 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+32 | |
| 2012-09-06 | Remove struct ctors | Brian Anderson | -63/+50 | |
| 2012-09-06 | Refactor trans to replace lvalue and friends with Datum. | Niko Matsakis | -21/+30 | |
| Also: - report illegal move/ref combos whether or not ref comes first - commented out fix for #3387, too restrictive and causes an ICE | ||||
| 2012-09-05 | Accept Copy, Send, Const, Owned, as kind bounds | Brian Anderson | -0/+24 | |
| 2012-09-05 | libsyntax: Make "pub use" mean the same thing as the former "import" in all ↵ | Patrick Walton | -5/+5 | |
| circumstances | ||||
| 2012-09-05 | rustc: "import" -> "use" in .rc files | Patrick Walton | -1/+1 | |
| 2012-09-04 | rustc: Implement private methods. | Patrick Walton | -3/+3 | |
| Doesn't work cross-crate yet. | ||||
| 2012-09-04 | Allow anonymous extern mods | Tim Chevalier | -1/+8 | |
| Now you can write: extern { f() -> int; } and f will be accessible in the enclosing scope. | ||||
| 2012-09-04 | Remove 'with' | Brian Anderson | -61/+46 | |
| 2012-09-04 | syntax: Remove 'of' and 'check' from keyword table | Brian Anderson | -2/+1 | |
| 2012-09-04 | Parse 'loop' and 'again' the same | Brian Anderson | -19/+38 | |
| 2012-09-04 | libsyntax: "import" -> "use" | Patrick Walton | -208/+203 | |
| 2012-09-02 | Camel case core::intrinsic | Brian Anderson | -2/+2 | |
| 2012-09-01 | Remove the 'to' keyword | Brian Anderson | -2/+1 | |
| 2012-08-31 | Make utility funs in core::int, core::uint, etc. not by-reference | Tim Chevalier | -3/+3 | |
| Closes #3302 | ||||
| 2012-08-31 | libsyntax: Get "extern mod foo;" working in .rc files | Patrick Walton | -5/+20 | |
| 2012-08-31 | rustc: Implement "use mod" | Patrick Walton | -37/+54 | |
| 2012-08-31 | Fix anon-extern-mod pretty print test. | Graydon Hoare | -3/+5 | |
| 2012-08-30 | rustc: "extern mod { ... }" should be written "extern { ... }" instead | Patrick Walton | -4/+23 | |
| 2012-08-30 | Bump version to 0.4 | Brian Anderson | -3/+3 | |
| 2012-08-29 | rustc: Make `<=`, `>=`, and `>` use traits as well | Patrick Walton | -1/+4 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -20/+828 | |
| 2012-08-29 | core: Demode int/uint mods | Brian Anderson | -3/+3 | |
| 2012-08-29 | Allow extern mods to be anonymous | Tim Chevalier | -9/+27 | |
| extern mod { f(); } is now allowed, and puts f in the enclosing scope. (Requires a link_name attribute to be really useful...) | ||||
| 2012-08-28 | CamelCasify lots of std | Ben Striegel | -3/+3 | |
| 2012-08-28 | Convert core::pipes to camel case | Brian Anderson | -11/+25 | |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -22/+22 | |
| 2012-08-27 | Convert core::result to camel case | Brian Anderson | -9/+9 | |
| 2012-08-27 | rustc: more pattern cleanup | Erick Tryzelaar | -9/+9 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -723/+723 | |
| 2012-08-25 | libsyntax: Accept ',' to separate struct fields. Closes #3263. | Patrick Walton | -2/+14 | |
| 2012-08-25 | rustc: Implement foreign constants. | Patrick Walton | -29/+62 | |
| This is needed for a lot of Apple libraries, as Apple tends to put a lot of globals in dynamic libraries. | ||||
| 2012-08-24 | Remove match check | Tim Chevalier | -11/+8 | |
| 2012-08-24 | "earley_parser" -> "macro_parser" Let's be less confusing. | Paul Stansifer | -7/+7 | |
| 2012-08-24 | Document the macro parser a little more. | Paul Stansifer | -2/+60 | |
| 2012-08-24 | Start using core::path2::Path in a lot of places. | Graydon Hoare | -49/+48 | |
| 2012-08-24 | fix some unused pattern binding warnings | Niko Matsakis | -19/+19 | |
| 2012-08-24 | extend liveness to treat bindings more like other variables | Niko Matsakis | -1/+3 | |
| This results in a lot of warnings in rustc. I left them in because many are bugs and we should fix our code, but Graydon asked that I not touch every file in the codebase. | ||||
| 2012-08-24 | Use a faked-up function as a key, because functions aren't identical ↵ | Paul Stansifer | -6/+20 | |
| cross-crate in Windows. | ||||
| 2012-08-23 | Remove purity from fn_decl and move it out to containing AST elements. | Michael Sullivan | -84/+86 | |
| 2012-08-23 | More complete fix to #3162 (borrowck bug related to access to rec fields) | Niko Matsakis | -15/+9 | |
| 2012-08-23 | Parenthesize unary move exprs in prettyprinter | Tim Chevalier | -1/+6 | |
| Closes #3220 | ||||
