| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-07-05 | Change 'iface' to 'trait' internally; parse `trait` as `iface` synonym | Lindsey Kuper | -2/+2 | |
| 2012-07-03 | rustc: Speed up def ID parsing in the metadata | Patrick Walton | -1/+1 | |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -3/+3 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -2/+2 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -14/+14 | |
| 2012-06-26 | Change 'native' and 'crust' to 'extern'. | Graydon Hoare | -1/+1 | |
| This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI. | ||||
| 2012-06-26 | Getting rid of lots more vector +=. (issue #2719) | Eric Holk | -12/+12 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -30/+30 | |
| 2012-06-24 | Remove resources | Tim Chevalier | -8/+0 | |
| Also fixed shapes for classes with dtors, as well as handling offsets for classes with dtors correctly in take glue. Closes #2485 | ||||
| 2012-06-20 | Remove bind. Issue #2189 | Brian Anderson | -1/+1 | |
| 2012-06-13 | Box AST idents | Brian Anderson | -3/+3 | |
| 2012-06-12 | Introduce an unboxed_vec type | Michael Sullivan | -0/+1 | |
| 2012-06-08 | WIP on issue #1425: mostly infrastructure changes. | Lindsey Kuper | -1/+1 | |
| 2012-05-30 | integrate purity into type | Niko Matsakis | -5/+15 | |
| 2012-05-24 | Teach parser and related things to understand const kind bounds. | Eric Holk | -0/+1 | |
| 2012-05-17 | Refactoring, annotating FIXMEs in remainder of metadata code | Tim Chevalier | -24/+18 | |
| 2012-05-14 | rustc: Break some of metadata's dependencies on session | Brian Anderson | -2/+0 | |
| 2012-05-10 | Removed all 4 uses of `do ... while` in the codebase. | Paul Stansifer | -6/+9 | |
| 2012-05-09 | reduce self type to a special type parameter | Niko Matsakis | -5/+6 | |
| 2012-05-02 | Encode the ifaces a class implements in metadata | Tim Chevalier | -6/+4 | |
| This lets you use class A as if it had type B if A implements B, and A and B are in different crates from your own. Closes #2285 | ||||
| 2012-04-25 | lots of work to make iface/impls parameterized by regions | Niko Matsakis | -11/+10 | |
| - paths can now take region parameters, replacing the dirty hack I was doing before of abusing vstores. vstores are now a bit of a hack though. - fix various small bugs: - we never checked that iface types were compatible when casting to an iface with `as` - we allowed nonsense like int<int> - and more! (actually that may be it) | ||||
| 2012-04-23 | encode the borrowing table, add a simple cross-crate borrowing test | Niko Matsakis | -0/+5 | |
| 2012-04-23 | Simplify representation of ast::path | Marijn Haverbeke | -2/+2 | |
| 2012-04-20 | Implement tydecode::parse_vstore. | Graydon Hoare | -1/+14 | |
| 2012-04-19 | make nominal types optionally parameterized by a self region. | Niko Matsakis | -16/+68 | |
| Issue #2201. | ||||
| 2012-04-11 | Add enough tyencode stuff to stop faulting when we hit error messages. | Graydon Hoare | -0/+15 | |
| 2012-04-06 | Convert old-style for loops to new-style | Marijn Haverbeke | -11/+6 | |
| Most could use the each method, but because of the hack used to disambiguate old- and new-style loops, some had to use vec::each. (This hack will go away soon.) Issue #1619 | ||||
| 2012-04-04 | wip: refactor repr of regions | Niko Matsakis | -1/+3 | |
| - we now distinguish bound/free parameters (see region-param test case for why this is necessary) - we also track bounds on region variables - also, restructure fold_ty() to have multiple variants without duplication instead of one overloaded folder. This also allows for using block functions. | ||||
| 2012-03-26 | Bulk-edit mutable -> mut. | Graydon Hoare | -3/+3 | |
| 2012-03-21 | add mut decls to rustc and make them mandatory | Niko Matsakis | -24/+24 | |
| 2012-03-16 | Classes WIP | Tim Chevalier | -3/+24 | |
| Cross-crate metadata for classes works well enough that programs with classes in other crates compile successfully, but output wrong results. Checking in work so far to avoid merge hassles. (Tests are xfailed.) | ||||
| 2012-03-16 | Remove shared tydescs | Marijn Haverbeke | -1/+0 | |
| All tydescs are static now, there's no need to worry about marshalling them between threads anymore. | ||||
| 2012-03-10 | Use loop instead of while(true) in libraries and compiler itself | Tim Chevalier | -12/+9 | |
| And remove spurious fails/unreachable() calls. | ||||
| 2012-03-07 | stdlib: Stop incurring vtable dispatch costs when hashmaps are used | Patrick Walton | -0/+1 | |
| This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict. | ||||
| 2012-03-07 | Revert "stdlib: Stop incurring vtable dispatch costs when hashmaps are used" | Patrick Walton | -1/+0 | |
| This reverts commit f0250a23d3fa2f8b4a4a4113ca89e41945a4cfed. | ||||
| 2012-03-07 | stdlib: Stop incurring vtable dispatch costs when hashmaps are used | Patrick Walton | -0/+1 | |
| This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict. | ||||
| 2012-03-02 | Move src/comp to src/rustc | Graydon Hoare | -0/+426 | |
