| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-10-11 | Remove obsolete FIXME | Tim Chevalier | -2/+0 | |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -1/+1 | |
| 2012-09-11 | Make moves explicit in rustc | Tim Chevalier | -1/+1 | |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -2/+2 | |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -1/+1 | |
| 2012-09-07 | Don't check impl ty params for equality with trait ty params | Tim Chevalier | -0/+5 | |
| This was too restrictive. We need to check the number of ty params, and that the bounds are equal, but otherwise require_same_types does the job. Closes #2611 | ||||
| 2012-09-06 | Remove struct ctors | Brian Anderson | -1/+6 | |
| 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 | -1/+1 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -4/+4 | |
| 2012-08-22 | intern identifiers | Paul Stansifer | -1/+3 | |
| 2012-08-17 | Remove the class keyword | Brian Anderson | -1/+1 | |
| 2012-08-15 | rustc: Parse labeled loop, break, and again | Patrick Walton | -2/+2 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -4/+4 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -9/+19 | |
| 2012-08-01 | Convert ret to return | Brian Anderson | -5/+5 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -4/+4 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -2/+2 | |
| #2907. | ||||
| 2012-07-13 | Support prefix notation for vstore strings. Closes #2906. | Michael Sullivan | -1/+1 | |
| 2012-07-06 | For #2229, recognize 'again' in place of 'cont', final change pending snapshot. | Graydon Hoare | -1/+1 | |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -5/+5 | |
| 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 | -2/+2 | |
| 2012-06-26 | Getting rid of lots more vector +=. (issue #2719) | Eric Holk | -1/+1 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -3/+3 | |
| 2012-06-22 | Change resources to classes in libstd and rustc | Tim Chevalier | -2/+4 | |
| 2012-06-21 | Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this. | Graydon Hoare | -2/+2 | |
| 2012-06-20 | Don't consider loops to be breaking if they contain inner loops that break | Tim Chevalier | -9/+17 | |
| Closes #2642 | ||||
| 2012-06-20 | Remove bind. Issue #2189 | Brian Anderson | -1/+1 | |
| 2012-06-14 | Refactor; annotate a FIXME | Tim Chevalier | -25/+17 | |
| 2012-06-13 | Box AST idents | Brian Anderson | -1/+1 | |
| 2012-06-08 | Get rid of little-used logging fns in util::common. Closes #2553. | Lindsey Kuper | -35/+0 | |
| Also got rid of a bunch of commented-out logging statements and generally cleaned up the logging situation, mostly in typestate. | ||||
| 2012-05-23 | rustc: Move new_def_hash to ast_util | Brian Anderson | -17/+0 | |
| 2012-05-21 | rustc: Move ast_map to the syntax crate | Brian Anderson | -2/+2 | |
| 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-05 | utilities for indented logs | Niko Matsakis | -0/+18 | |
| 2012-03-26 | Bulk-edit mutable -> mut. | Graydon Hoare | -4/+4 | |
| 2012-03-21 | add mut decls to rustc and make them mandatory | Niko Matsakis | -2/+2 | |
| 2012-03-14 | std: Rename the hashmap constructors to conform to new standards | Brian Anderson | -1/+1 | |
| Instead of using the new_ prefix just name them after their type | ||||
| 2012-03-13 | Overhaul constructor naming in libs | Brian Anderson | -1/+1 | |
| 2012-03-10 | In typestate, consider infinite loops w/ conts to be infinite | Tim Chevalier | -0/+16 | |
| If a loop { } contains a cont, that doesn't affect whether the entire loop diverges. Only breaks affect that. Fix that in typestate. | ||||
| 2012-03-10 | core: Remove the nearly empty math module | Brian Anderson | -1/+0 | |
| This mod only had two functions, all of whose users have been changed to use the uint module. | ||||
| 2012-03-08 | Rename last to last_opt, last_unsafe to last | Tim Chevalier | -1/+3 | |
| As per discussion on IRC. I am about to file an RFC for further discussion about the more general issue of whether to enforce invariants through types, typestate, or dynamic checks, but for now, removing the misleading name "last_unsafe". | ||||
| 2012-03-02 | Move src/comp to src/rustc | Graydon Hoare | -0/+103 | |
