| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-05 | Remove by-mutable-ref mode from the compiler | Tim Chevalier | -1/+0 | |
| and test cases. Closes #3513 | ||||
| 2012-10-05 | Revert "wip" | Tim Chevalier | -0/+1 | |
| This reverts commit ca49fd402af8e7bf613c43e996274b5a017958d2. | ||||
| 2012-10-05 | wip | Tim Chevalier | -1/+0 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -8/+8 | |
| 2012-09-15 | int/uint parse_buf => parse_bytes (#3444) | Erick Tryzelaar | -2/+2 | |
| 2012-09-11 | Introduce auto adjustment table to subsume autoderef/autoref/borrowings. | Niko Matsakis | -14/+38 | |
| Fixes #3261 Fixes #3443 | ||||
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -1/+1 | |
| 2012-09-07 | Refactor fn_ty, working towards #3320 | Niko Matsakis | -4/+11 | |
| 2012-09-06 | Refactor ty_var and ty_var_integral into one ty_infer variant | Niko Matsakis | -1/+1 | |
| 2012-09-04 | Remove 'with' | Brian Anderson | -1/+1 | |
| 2012-09-04 | rustc: "import" -> "use" | Patrick Walton | -6/+6 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -10/+10 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -9/+9 | |
| 2012-08-22 | Represent "item families" in the decoder as an enum | Tim Chevalier | -18/+30 | |
| This eliminates some match checks. Also get rid of other match checks in metadata code. | ||||
| 2012-08-22 | intern identifiers | Paul Stansifer | -3/+3 | |
| 2012-08-21 | more sound treatment of fn& regions; change all & to be distinct | Niko Matsakis | -1/+5 | |
| 2012-08-17 | rustc: Remove a few allocations from metadata. Shaves a few milliseconds off ↵ | Patrick Walton | -2/+3 | |
| compilation of hello world. | ||||
| 2012-08-15 | rustc: "as Trait" can now be written "as @Trait". | Patrick Walton | -1/+2 | |
| There is also code for ~Trait and &Trait, but these are currently (incorrectly) synonyms for "as @Trait" and "as &Trait". | ||||
| 2012-08-13 | rustc: Mostly implement region-bounded stack closures | Patrick Walton | -8/+6 | |
| 2012-08-10 | Revert "rustc: Make function types have vstores in them" | Patrick Walton | -6/+8 | |
| This reverts commit 0101125a962abae18525d6014cd26ad10bbb96e6. | ||||
| 2012-08-10 | rustc: Make function types have vstores in them | Patrick Walton | -8/+6 | |
| 2012-08-06 | rustc: Parse and stub (broken) typechecking for bounded function types | Patrick Walton | -2/+3 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -17/+17 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -91/+91 | |
| 2012-08-03 | rustc: Merge fn& and fn in favor of fn&. | Patrick Walton | -1/+0 | |
| This is a step on the way to moving the function "proto" sigil out front. | ||||
| 2012-08-01 | Convert ret to return | Brian Anderson | -53/+53 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -9/+9 | |
| 2012-07-25 | fix oversight in ty_decode. | Niko Matsakis | -0/+5 | |
| I thought this case would not come up. | ||||
| 2012-07-16 | introduce an owned kind for data that contains no borrowed ptrs | Niko Matsakis | -0/+1 | |
| 2012-07-14 | remove typestate from code, tests, and docs | Niko Matsakis | -87/+1 | |
| 2012-07-14 | Tear out ty_str and ty_vec. | Michael Sullivan | -2/+0 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -9/+9 | |
| #2907. | ||||
| 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 | |
