| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-06 | Remove struct ctors | Brian Anderson | -55/+41 | |
| 2012-09-05 | Accept Copy, Send, Const, Owned, as kind bounds | Brian Anderson | -0/+24 | |
| 2012-09-05 | libsyntax: Make "pub use" mean the same thing as the former "import" in all ↵ | Patrick Walton | -5/+5 | |
| circumstances | ||||
| 2012-09-04 | rustc: Implement private methods. | Patrick Walton | -1/+2 | |
| Doesn't work cross-crate yet. | ||||
| 2012-09-04 | Remove 'with' | Brian Anderson | -22/+8 | |
| 2012-09-04 | Parse 'loop' and 'again' the same | Brian Anderson | -18/+35 | |
| 2012-09-04 | libsyntax: "import" -> "use" | Patrick Walton | -16/+16 | |
| 2012-09-01 | Remove the 'to' keyword | Brian Anderson | -1/+1 | |
| 2012-08-31 | libsyntax: Get "extern mod foo;" working in .rc files | Patrick Walton | -5/+20 | |
| 2012-08-31 | rustc: Implement "use mod" | Patrick Walton | -20/+30 | |
| 2012-08-30 | rustc: "extern mod { ... }" should be written "extern { ... }" instead | Patrick Walton | -4/+23 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -0/+7 | |
| 2012-08-29 | Allow extern mods to be anonymous | Tim Chevalier | -4/+9 | |
| extern mod { f(); } is now allowed, and puts f in the enclosing scope. (Requires a link_name attribute to be really useful...) | ||||
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -2/+2 | |
| 2012-08-27 | Convert core::result to camel case | Brian Anderson | -1/+1 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -141/+141 | |
| 2012-08-25 | libsyntax: Accept ',' to separate struct fields. Closes #3263. | Patrick Walton | -1/+13 | |
| 2012-08-25 | rustc: Implement foreign constants. | Patrick Walton | -29/+47 | |
| This is needed for a lot of Apple libraries, as Apple tends to put a lot of globals in dynamic libraries. | ||||
| 2012-08-24 | Remove match check | Tim Chevalier | -3/+1 | |
| 2012-08-23 | Remove purity from fn_decl and move it out to containing AST elements. | Michael Sullivan | -35/+29 | |
| 2012-08-23 | `m1!{...}` is now forbidden. Use `m1!(...)` instead. | Paul Stansifer | -18/+7 | |
| 2012-08-23 | Eliminate some extraneous curly brackets inside invocations of `macro_rules!`. | Paul Stansifer | -6/+6 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -23/+23 | |
| 2012-08-22 | Parse and typecheck moving out of enums (#2329) | Ben Blum | -1/+6 | |
| 2012-08-22 | Change the log level to be an enum rather than an int | Tim Chevalier | -1/+1 | |
| This allows for eliminating a match check. | ||||
| 2012-08-22 | intern identifiers | Paul Stansifer | -29/+30 | |
| 2012-08-17 | Parse explicit self in more places. Work on #2585. | Michael Sullivan | -54/+68 | |
| 2012-08-17 | Stop parsing `iface`. | Lindsey Kuper | -6/+0 | |
| 2012-08-17 | Remove the class keyword | Brian Anderson | -3/+2 | |
| 2012-08-16 | libsyntax: Fix parsing of "loop unsafe". | Patrick Walton | -1/+1 | |
| It was getting misparsed as a label. | ||||
| 2012-08-15 | Long lines | Brian Anderson | -2/+2 | |
| 2012-08-15 | libsyntax: Parse tuple and unit structs | Patrick Walton | -44/+72 | |
| 2012-08-15 | rustc: Fix long lines and trailing whitespace | Patrick Walton | -7/+6 | |
| 2012-08-15 | rustc: Perform some AST surgery to separate out class fields from methods | Patrick Walton | -15/+46 | |
| 2012-08-15 | libsyntax: Parse nested enums | Patrick Walton | -23/+34 | |
| 2012-08-15 | rustc: Parse labeled loop, break, and again | Patrick Walton | -3/+19 | |
| 2012-08-15 | rustc: "as Trait" can now be written "as @Trait". | Patrick Walton | -1/+1 | |
| There is also code for ~Trait and &Trait, but these are currently (incorrectly) synonyms for "as @Trait" and "as &Trait". | ||||
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -8/+8 | |
| 2012-08-14 | Make most forms of explicit self work. By-value not implemented. Work on #2585. | Michael Sullivan | -23/+1 | |
| 2012-08-14 | libsyntax: Parse "extern mod foo;" | Patrick Walton | -37/+100 | |
| 2012-08-14 | libsyntax: Give a nice error message when view items are used anywhere other ↵ | Patrick Walton | -0/+24 | |
| than the top of a module. This is a step on the way to parsing "extern mod foo;" | ||||
| 2012-08-14 | libsyntax: First steps toward parsing "extern mod std;" | Patrick Walton | -22/+37 | |
| 2012-08-13 | libsyntax: Implement [int*3] syntax for fixed length vector types | Patrick Walton | -1/+29 | |
| 2012-08-13 | Stop parsing old operator overloading syntax | Brian Anderson | -16/+1 | |
| 2012-08-13 | libsyntax: Allow "use" to be used in place of "import" | Patrick Walton | -3/+9 | |
| 2012-08-13 | libsyntax: Accept "1..3" as the preferred form of "1 to 3" in patterns | Patrick Walton | -1/+1 | |
| 2012-08-13 | libsyntax: Refactor item parsing so that items and view items are parsed in ↵ | Patrick Walton | -30/+113 | |
| the same function. This is a step on the way to "extern mod foo;" and replacing "import" with "use". | ||||
| 2012-08-13 | rustc: Make functional record and struct update use ".." instead of "with". | Patrick Walton | -2/+13 | |
| "with" is still accepted for backwards compatibility. | ||||
| 2012-08-13 | Fix method mode parsing bug. Closes #3191. | Michael Sullivan | -1/+0 | |
| 2012-08-08 | libsyntax: Parse common enum fields | Patrick Walton | -52/+70 | |
