| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-11-07 | Rename src/rustc to src/librustc. Use the driver crate | Brian Anderson | -220/+0 | |
| 2012-11-06 | rustc: reuse const vals, translate fn paths as consts. Close #2530. | Graydon Hoare | -4/+15 | |
| 2012-10-30 | Preserve parenthesization in the AST | Tim Chevalier | -0/+2 | |
| Maintain explicit "paren" nodes in the AST so we can pretty-print without having to guess where parens should go. We may revisit this in the future. r=graydon | ||||
| 2012-10-15 | rustc: Merge module and type namespaces. r=brson | Patrick Walton | -6/+6 | |
| 2012-09-27 | core: More option demoding | Brian Anderson | -1/+1 | |
| 2012-09-25 | Demode iter-trait | Tim Chevalier | -1/+1 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -1/+1 | |
| 2012-09-11 | Introduce auto adjustment table to subsume autoderef/autoref/borrowings. | Niko Matsakis | -3/+3 | |
| Fixes #3261 Fixes #3443 | ||||
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -1/+1 | |
| 2012-09-04 | Remove 'with' | Brian Anderson | -4/+4 | |
| 2012-09-04 | rustc: "import" -> "use" | Patrick Walton | -5/+5 | |
| 2012-08-29 | Rename resolve3 -> resolve. | Graydon Hoare | -5/+5 | |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -2/+2 | |
| 2012-08-27 | rustc: more pattern cleanup | Erick Tryzelaar | -1/+1 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -2/+2 | |
| 2012-08-23 | Add boolean constants as part of const_eval | Tim Chevalier | -1/+2 | |
| Doesn't exactly eliminate a match check, but simplifies the logic a bit | ||||
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -2/+2 | |
| 2012-08-08 | Const field access (working) and vec indexing (almost). More for #2317. | Graydon Hoare | -0/+2 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -1/+1 | |
| 2012-08-08 | rustc: Do some plumbing work in preparation for common fields in enums | Patrick Walton | -2/+2 | |
| 2012-08-07 | Translate const structs. | Graydon Hoare | -0/+1 | |
| 2012-08-07 | syntax: Make match arm parsing more restrictive again | Brian Anderson | -1/+1 | |
| Require comma separators for all expression types except the plain block | ||||
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -9/+9 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -27/+27 | |
| 2012-08-03 | Translate const vecs, most of const slices. More for #2317. | Graydon Hoare | -4/+4 | |
| 2012-08-03 | Implement &-expressions in consts. Part of #2317. | Graydon Hoare | -0/+7 | |
| 2012-08-01 | Convert ret to return | Brian Anderson | -2/+2 | |
| 2012-07-31 | Start implementing structured constants. | Graydon Hoare | -0/+2 | |
| 2012-07-20 | Remove what's left of resolve1 | Tim Chevalier | -5/+6 | |
| 2012-07-14 | Treat bare vector and string literals as fixed length vecs. Closes #2922. | Michael Sullivan | -2/+1 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -11/+12 | |
| #2907. | ||||
| 2012-07-12 | Handle str/~ in patterns. | Michael Sullivan | -1/+6 | |
| 2012-07-11 | infer when types are region parameterized rather than requiring /& | Niko Matsakis | -1/+1 | |
| - removes various fields from various variants in the AST - also update tests not to use this notation | ||||
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -5/+4 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -1/+1 | |
| 2012-06-20 | Remove bind. Issue #2189 | Brian Anderson | -2/+4 | |
| 2012-06-07 | Comments only: annotate FIXMEs | Tim Chevalier | -1/+1 | |
| 2012-06-06 | move check_const to dvec | Niko Matsakis | -4/+5 | |
| 2012-05-21 | rustc: Move ast_map to the syntax crate | Brian Anderson | -1/+1 | |
| 2012-04-19 | make nominal types optionally parameterized by a self region. | Niko Matsakis | -1/+1 | |
| Issue #2201. | ||||
| 2012-04-06 | Re-rename option functions | Tim Chevalier | -1/+1 | |
| get_with_default (nee from_maybe) => get_default with_option (nee maybe) => map_default with_option_do (nee may) => iter As per discussion of 21be1379d561b6679a8a2ea47dce88f948c5acca | ||||
| 2012-04-06 | Convert old-style for loops to new-style | Marijn Haverbeke | -1/+1 | |
| 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 | rustc: Don't allow recursive constants | Brian Anderson | -5/+67 | |
| 2012-04-04 | rustc: Allow consts to refer to other consts | Brian Anderson | -4/+20 | |
| 2012-04-02 | Rename some core::option functions | Tim Chevalier | -1/+1 | |
| from_maybe => get_with_default maybe => with_option may => with_option_do I know these names are kind of ridiculous, but it's the best I could think of. Feel free to bikeshed. Closes #2081 | ||||
| 2012-03-14 | Add crude support for casts in constant expressions | Marijn Haverbeke | -4/+13 | |
| Only casts to integral and float types are supported Closes #1975 | ||||
| 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/+98 | |
