| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-09 | Merge pull request #3700 from erickt/cargo-interner | Tim Chevalier | -21/+26 | |
| allow interner cache to be shared across parsers (#3699) | ||||
| 2012-10-08 | Revert "Revert "Remove old auto_serialize2 code (needs snapshot)"" | Tim Chevalier | -1233/+2 | |
| This reverts commit a33535e441dc5461fec0489069a1491367ad1c91. | ||||
| 2012-10-08 | Revert "Remove old auto_serialize2 code (needs snapshot)" | Tim Chevalier | -2/+1233 | |
| This reverts commit 0bd6da8a8c93143325cb45e8a074ccf7121ca168. | ||||
| 2012-10-08 | allow interner cache to be shared across parsers (#3699) | Erick Tryzelaar | -21/+26 | |
| 2012-10-08 | remove ctor from ast | Niko Matsakis | -148/+23 | |
| 2012-10-07 | Remove old auto_serialize2 code (needs snapshot) | Erick Tryzelaar | -1233/+2 | |
| 2012-10-07 | Remove the old serializers (needs snapshot) | Erick Tryzelaar | -847/+1152 | |
| 2012-10-07 | remove the old auto_serialize syntax extension | Erick Tryzelaar | -108/+146 | |
| 2012-10-07 | migrate libsyntax/rustc to auto_serialize2 | Erick Tryzelaar | -164/+219 | |
| 2012-10-05 | Remove by-mutable-ref mode from the compiler | Tim Chevalier | -8/+13 | |
| and test cases. Closes #3513 | ||||
| 2012-10-05 | Finally removing all uses of by-mut-ref | Tim Chevalier | -1/+2 | |
| The code for the mode itself is still there. | ||||
| 2012-10-05 | Remove uses of mutable ref mode. | Tim Chevalier | -22/+24 | |
| It's still in the compiler right now, but warned about | ||||
| 2012-10-05 | Revert "wip" | Tim Chevalier | -27/+26 | |
| This reverts commit ca49fd402af8e7bf613c43e996274b5a017958d2. | ||||
| 2012-10-05 | wip | Tim Chevalier | -26/+27 | |
| 2012-10-05 | Demode some code using by-mutbl-ref; warn about by-mutbl-ref | Tim Chevalier | -0/+1 | |
| The parser now warns about use of mutbl-ref mode, though it's kind of a lie since this commit doesn't remove support for the mode. Changed move_val_init to have stage0 and stage1/2 versions, the latter of which is demoded. Changed the type that the typechecker expects the move_val_init intrinsic to have. After this is pushed, I can make a new snapshot, which will remove the need for the stage0 versions. | ||||
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -16/+6 | |
| 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-02 | rustc: Only allow imports marked with "pub" to be imported from other modules | Patrick Walton | -3/+3 | |
| 2012-10-02 | libstd: Switch off legacy modes in both core and std. | Patrick Walton | -14/+14 | |
| 2012-10-01 | Split auto_serialize2 into two macros | Erick Tryzelaar | -77/+130 | |
| 2012-10-01 | Factor out auto_serialize2's impls from each other. | Erick Tryzelaar | -67/+114 | |
| 2012-10-01 | auto_serialize2 should deserialize structs using read_struct | Erick Tryzelaar | -57/+106 | |
| 2012-10-01 | Add deserializable and more types to serialization2 | Erick Tryzelaar | -61/+128 | |
| 2012-10-01 | Move over to calling ptr::addr_of | Tim Chevalier | -6/+6 | |
| Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that. | ||||
| 2012-10-01 | Call 'new' instead of 'old' extfmt code, preparing for snapshot | Tim Chevalier | -1/+1 | |
| 2012-09-28 | Add a demoded version of ptr::addr_of | Tim Chevalier | -3/+3 | |
| Currently, the new version is ptr::p2::addr_of and the old one is ptr::addr_of. This is kind of cheesy, but I need a snapshot before I can ditch the old version, since the pipe compiler generates calls to addr_of. core is converted over to use the new version, std is not. | ||||
| 2012-09-28 | Add allow(deprecated_\*) to syntax, rustc, rustdoc, et al | Brian Anderson | -0/+2 | |
| 2012-09-28 | Demoding in iter: any, all, map_to_vec, flat_map_to_vec, filter_to_vec | Tim Chevalier | -2/+2 | |
| 2012-09-28 | rename iter2 to each2, make it follow iterator protocol | Niko Matsakis | -2/+2 | |
| 2012-09-28 | Pretty-print item visibility modifiers | Brian Anderson | -0/+1 | |
| 2012-09-28 | Demode extfmt | Tim Chevalier | -50/+57 | |
| Needs a snapshot before this can be completed, because I changed the mode for conv_poly. | ||||
| 2012-09-28 | demode vec | Niko Matsakis | -38/+39 | |
| 2012-09-27 | libsyntax: Fix long line | Erick Tryzelaar | -1/+2 | |
| 2012-09-27 | Merge pull request #3607 from gutworth/incoming | Brian Anderson | -11/+5 | |
| utterly trivial refactoring | ||||
| 2012-09-27 | core: More option demoding | Brian Anderson | -7/+7 | |
| 2012-09-27 | libsyntax: Parse visibility modifiers before foreign items | Patrick Walton | -8/+15 | |
| 2012-09-27 | factor out common lines | Benjamin Peterson | -11/+5 | |
| 2012-09-26 | core: Replace map/map_default with map_ref/map_default_ref | Brian Anderson | -23/+23 | |
| 2012-09-26 | Remove spurious by-ref argument to destructors | Tim Chevalier | -4/+2 | |
| Destructors were internally declared with an extra (hidden) nil-typed argument that was passed in by-ref mode. This was causing spurious mode warnings. Deleted it. Also some misc. cleanup because I couldn't help myself. | ||||
| 2012-09-26 | Long lines | Brian Anderson | -4/+7 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -164/+159 | |
| 2012-09-26 | turn ast::ident into a struct | Erick Tryzelaar | -84/+113 | |
| 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 | libstd: change serialization2 to take &self argument methods | Erick Tryzelaar | -7/+40 | |
| Unfortunately this trips over issue (#3585), where auto-ref isn't playing nicely with @T implementations. Most serializers don't care, but prettyprint2 won't properly display "@" until #3585 is fixed. | ||||
| 2012-09-26 | auto_serialize2 should fully qualify std::serialization2::deserialize | Erick Tryzelaar | -4/+12 | |
| 2012-09-26 | libsyntax: remove quasiquoter from auto_serialize2 | Erick Tryzelaar | -132/+288 | |
| 2012-09-26 | libsyntax: implement auto_serialize2 for enums, records, and structs | Erick Tryzelaar | -0/+620 | |
| 2012-09-26 | Allow hashmaps to infer their types | Erick Tryzelaar | -5/+5 | |
| 2012-09-26 | Refactoring ReaderUtil trait, combining it with the traitless impl on Reader. | Eric Holk | -0/+1 | |
| 2012-09-26 | Revert "fix modes on dtors" | Tim Chevalier | -1/+1 | |
| This reverts commit d38b97a170eaea47933c30937cee5f525573116d. (Accidentally checked this in, oops) | ||||
| 2012-09-26 | fix modes on dtors | Tim Chevalier | -1/+1 | |
| 2012-09-26 | fix issue #3535 and add colon between mode and type when dumping funcion ↵ | Vincent Belliard | -17/+28 | |
| prototype | ||||
