| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-07 | Implement &-patterns | Tim Chevalier | -0/+4 | |
| Closes #2855 | ||||
| 2012-09-06 | Refactor trans to replace lvalue and friends with Datum. | Niko Matsakis | -21/+30 | |
| Also: - report illegal move/ref combos whether or not ref comes first - commented out fix for #3387, too restrictive and causes an ICE | ||||
| 2012-09-04 | Parse 'loop' and 'again' the same | Brian Anderson | -1/+3 | |
| 2012-09-04 | libsyntax: "import" -> "use" | Patrick Walton | -11/+9 | |
| 2012-08-31 | rustc: Implement "use mod" | Patrick Walton | -6/+9 | |
| 2012-08-31 | Fix anon-extern-mod pretty print test. | Graydon Hoare | -3/+5 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -3/+2 | |
| 2012-08-29 | Allow extern mods to be anonymous | Tim Chevalier | -1/+4 | |
| 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 | -3/+3 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -94/+94 | |
| 2012-08-25 | libsyntax: Accept ',' to separate struct fields. Closes #3263. | Patrick Walton | -1/+1 | |
| 2012-08-25 | rustc: Implement foreign constants. | Patrick Walton | -0/+8 | |
| 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 | -2/+1 | |
| 2012-08-24 | fix some unused pattern binding warnings | Niko Matsakis | -1/+1 | |
| 2012-08-24 | extend liveness to treat bindings more like other variables | Niko Matsakis | -1/+3 | |
| This results in a lot of warnings in rustc. I left them in because many are bugs and we should fix our code, but Graydon asked that I not touch every file in the codebase. | ||||
| 2012-08-23 | Remove purity from fn_decl and move it out to containing AST elements. | Michael Sullivan | -18/+22 | |
| 2012-08-23 | Parenthesize unary move exprs in prettyprinter | Tim Chevalier | -1/+6 | |
| Closes #3220 | ||||
| 2012-08-23 | Pretty-print macros with `()` instead of `{}`. | Paul Stansifer | -6/+8 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -2/+2 | |
| 2012-08-22 | Parse and typecheck moving out of enums (#2329) | Ben Blum | -0/+1 | |
| 2012-08-22 | Merge find_linkage_attrs with find_linkage_metas | Tim Chevalier | -6/+2 | |
| This gets rid of a gratuitous `match check`. | ||||
| 2012-08-22 | Change the log level to be an enum rather than an int | Tim Chevalier | -4/+4 | |
| This allows for eliminating a match check. | ||||
| 2012-08-22 | intern identifiers | Paul Stansifer | -87/+92 | |
| 2012-08-22 | Centralize ident interner generation. | Paul Stansifer | -5/+3 | |
| 2012-08-17 | Make by-val explicit self actually work. Closes #2585. | Michael Sullivan | -6/+6 | |
| 2012-08-17 | Pretty print explicit self types. Work on #2585. | Michael Sullivan | -17/+63 | |
| 2012-08-15 | libsyntax: Fix wrong pretty printing of private fields | Patrick Walton | -4/+2 | |
| 2012-08-15 | rustc: Perform some AST surgery to separate out class fields from methods | Patrick Walton | -39/+23 | |
| 2012-08-15 | rustc: Parse labeled loop, break, and again | Patrick Walton | -3/+12 | |
| 2012-08-15 | rustc: "as Trait" can now be written "as @Trait". | Patrick Walton | -7/+7 | |
| 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 | -2/+2 | |
| 2012-08-14 | Convert more core types to camel case | Brian Anderson | -4/+4 | |
| 2012-08-14 | syntax: fixing pretty printing of brackets in match arms | Daniel Patterson | -2/+15 | |
| 2012-08-14 | More attempts at fixing .. breakage. | Graydon Hoare | -1/+0 | |
| 2012-08-13 | libsyntax: Accept "1..3" as the preferred form of "1 to 3" in patterns | Patrick Walton | -1/+1 | |
| 2012-08-13 | rustc: Make functional record and struct update use ".." instead of "with". | Patrick Walton | -2/+6 | |
| "with" is still accepted for backwards compatibility. | ||||
| 2012-08-11 | syntax: better formatting of closures in pretty printer and more verbose ↵ | Daniel Patterson | -12/+56 | |
| debugging messages | ||||
| 2012-08-08 | syntax: Pretty print impls with new syntax | Brian Anderson | -7/+8 | |
| 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 | -33/+39 | |
| 2012-08-08 | rustc: Do some plumbing work on nested enums | Patrick Walton | -12/+19 | |
| 2012-08-07 | rustc: Parse variant structs; add a trivial test case | Patrick Walton | -2/+5 | |
| 2012-08-07 | rustc: Box struct_defs | Patrick Walton | -1/+1 | |
| 2012-08-07 | Implement static typeclass methods. Closes #3132. | Michael Sullivan | -15/+35 | |
| 2012-08-07 | libsyntax: Break struct definitions out of classes internally in a few more ↵ | Patrick Walton | -70/+75 | |
| places | ||||
| 2012-08-07 | rustc: Split out struct bodies into a separate "struct_def" type in the AST | Patrick Walton | -6/+6 | |
| 2012-08-07 | rustc: Add stub support for struct variants to the AST | Patrick Walton | -11/+26 | |
| 2012-08-07 | syntax: Rename expr_alt to expr_match | Brian Anderson | -1/+1 | |
| 2012-08-07 | syntax: Make match arm parsing more restrictive again | Brian Anderson | -3/+3 | |
| Require comma separators for all expression types except the plain block | ||||
| 2012-08-06 | rustc: Parse and stub (broken) typechecking for bounded function types | Patrick Walton | -3/+5 | |
