| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-24 | Support visibility qualifiers in crate directives properly. | Graydon Hoare | -4/+5 | |
| 2012-09-23 | core: Demode option | Brian Anderson | -17/+17 | |
| 2012-09-23 | Make it illegal to use modes in a fn signature with providing | Niko Matsakis | -23/+23 | |
| an explicit variable name. (Step one to changing the defaults) First step to #3535 | ||||
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -52/+54 | |
| 2012-09-20 | Revert "syntax: Make attributes sendable for rustdoc's benefit" | Brian Anderson | -3/+3 | |
| This reverts commit 90e3665fa79d32c3188169cfa992516fb36b81a8. | ||||
| 2012-09-20 | syntax: Make attributes sendable for rustdoc's benefit | Brian Anderson | -3/+3 | |
| 2012-09-07 | Implement &-patterns | Tim Chevalier | -0/+1 | |
| Closes #2855 | ||||
| 2012-09-04 | Remove 'with' | Brian Anderson | -12/+12 | |
| 2012-09-04 | libsyntax: "import" -> "use" | Patrick Walton | -2/+2 | |
| 2012-08-29 | Allow extern mods to be anonymous | Tim Chevalier | -1/+2 | |
| extern mod { f(); } is now allowed, and puts f in the enclosing scope. (Requires a link_name attribute to be really useful...) | ||||
| 2012-08-26 | Camel case the option type | Brian Anderson | -17/+17 | |
| 2012-08-25 | rustc: Implement foreign constants. | Patrick Walton | -0/+3 | |
| 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/+2 | |
| 2012-08-24 | fix some unused pattern binding warnings | Niko Matsakis | -1/+1 | |
| 2012-08-23 | Remove purity from fn_decl and move it out to containing AST elements. | Michael Sullivan | -11/+13 | |
| 2012-08-22 | intern identifiers | Paul Stansifer | -3/+2 | |
| 2012-08-15 | rustc: Perform some AST surgery to separate out class fields from methods | Patrick Walton | -26/+26 | |
| 2012-08-15 | rustc: Parse labeled loop, break, and again | Patrick Walton | -3/+7 | |
| 2012-08-08 | libsyntax: Parse common enum fields | Patrick Walton | -32/+41 | |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -2/+2 | |
| 2012-08-08 | rustc: Do some plumbing work in preparation for common fields in enums | Patrick Walton | -6/+9 | |
| 2012-08-08 | rustc: Do some plumbing work on nested enums | Patrick Walton | -0/+5 | |
| 2012-08-07 | rustc: Parse variant structs; add a trivial test case | Patrick Walton | -2/+15 | |
| 2012-08-07 | rustc: Box struct_defs | Patrick Walton | -1/+1 | |
| 2012-08-07 | rustc: Split out struct bodies into a separate "struct_def" type in the AST | Patrick Walton | -9/+11 | |
| 2012-08-07 | rustc: Add stub support for struct variants to the AST | Patrick Walton | -2/+11 | |
| 2012-08-07 | syntax: Rename expr_alt to expr_match | Brian Anderson | -2/+2 | |
| 2012-08-06 | rustc: Parse and stub (broken) typechecking for bounded function types | Patrick Walton | -1/+4 | |
| 2012-08-06 | rustc: Implement pattern matching for structs | Patrick Walton | -0/+10 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -17/+17 | |
| 2012-08-06 | rustc: Implement functional record update for structs | Patrick Walton | -2/+4 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -100/+98 | |
| 2012-08-03 | rustc: Parse and typecheck repeating vector expressions; e.g. [ 0, ..512 ] | Patrick Walton | -0/+2 | |
| 2012-08-03 | rustc: Parse, serialize, and deserialize trait inheritance | Patrick Walton | -1/+2 | |
| 2012-08-02 | Purge placement new; Make borrowck know about unary move. | Niko Matsakis | -5/+0 | |
| cc #3071 | ||||
| 2012-08-01 | Convert ret to return | Brian Anderson | -52/+54 | |
| 2012-07-31 | rustc: Parse by-reference pattern bindings with the "ref" keyword | Patrick Walton | -2/+3 | |
| 2012-07-31 | rustc: Implement unary move. Closes #917. | Patrick Walton | -0/+1 | |
| 2012-07-31 | Change remaining "iface" occurrences to "trait"; deprecate "iface" | Lindsey Kuper | -1/+1 | |
| 2012-07-30 | libsyntax: Parse self types in methods | Patrick Walton | -0/+1 | |
| 2012-07-27 | Start killing off obsolete/unused quoters, and fix long lines. | Graydon Hoare | -2/+0 | |
| 2012-07-24 | rustc: Don't require that structs have constructors | Patrick Walton | -8/+20 | |
| 2012-07-23 | rustc: Max/min classes: Add struct literal syntax | Patrick Walton | -0/+3 | |
| 2012-07-17 | Support attributes on class ctors and dtors | Tim Chevalier | -0/+7 | |
| Closes #2660 | ||||
| 2012-07-16 | introduce an owned kind for data that contains no borrowed ptrs | Niko Matsakis | -1/+1 | |
| 2012-07-14 | remove typestate from code, tests, and docs | Niko Matsakis | -42/+2 | |
| 2012-07-14 | Get rid of ast::ty_vstore, which was only used for fixed length. | Michael Sullivan | -1/+1 | |
| 2012-07-13 | Refactor how impl self types are stored | Tim Chevalier | -1/+2 | |
| In order to avoid a confusing use of the tcache, I added an extra node ID field to trait refs. Now trait refs have a "ref ID" (the one that resolve3 resolves) and an "impl ID" (the one that you look up in the tcache to get the self type). Closes #2434 | ||||
| 2012-07-12 | Obliterate the callee_id hack | Tim Chevalier | -0/+1 | |
| Exprs that could be applications of overloaded operators (expr_unary, expr_binary, expr_index) relied on the previous node ID being "reserved" to carry extra typechecking info. This was incredibly error-prone. Fixed it; now all exprs have two node IDs (which will be wasted in some cases; future work could make this an option instead if the extra int field ends up being a performance problem). Closes #2804 | ||||
| 2012-07-12 | Comments only: TODOs to FIXMEs; annotate | Tim Chevalier | -1/+1 | |
