| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-07-13 | Clean up various bugs with trait parsing. | Lindsey Kuper | -18/+23 | |
| 2012-07-13 | More consistent use of backticks and "expected" in error messages. | Lindsey Kuper | -23/+27 | |
| Got some of the debug messages, here, too. I figure it doesn't hurt to get used to doing this even in places where users won't ever see it. | ||||
| 2012-07-13 | Refactor how impl self types are stored | Tim Chevalier | -8/+20 | |
| 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-13 | Front-end support for default impls in traits. | Lindsey Kuper | -16/+88 | |
| 2012-07-13 | change region syntax to &r/T in place of &r.T | Niko Matsakis | -7/+12 | |
| 2012-07-12 | Obliterate the callee_id hack | Tim Chevalier | -23/+21 | |
| 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 | Switch map-reduce control protocol to use pipes. This exposed a bug in the ↵ | Eric Holk | -25/+2 | |
| pipe compiler, which is now fixed. Use hashmaps in MapReduce Tweak word-count difficulty | ||||
| 2012-07-12 | Pretty-print regions in slices correctly | Tim Chevalier | -2/+11 | |
| 2012-07-12 | Comments only: TODOs to FIXMEs; annotate | Tim Chevalier | -8/+11 | |
| 2012-07-12 | Fix region printing in the prettyprinter | Tim Chevalier | -2/+2 | |
| 2012-07-12 | Merge remote-tracking branch 'origin/dist-snap' into incoming | Graydon Hoare | -3/+3 | |
| 2012-07-12 | Accept prefix notation for writing the types of str/~ and friends. | Michael Sullivan | -59/+63 | |
| 2012-07-12 | Get rid of all of the remaining /~s in the code base. | Michael Sullivan | -21/+21 | |
| 2012-07-12 | Merge branch 'rt-changes' into incoming | Michael Sullivan | -2/+10 | |
| 2012-07-12 | Handle autoserializing of str/~. | Michael Sullivan | -2/+10 | |
| 2012-07-11 | infer when types are region parameterized rather than requiring /& | Niko Matsakis | -93/+75 | |
| - removes various fields from various variants in the AST - also update tests not to use this notation | ||||
| 2012-07-11 | We're going to have a hard time if we want to pretty-print token trees. | Paul Stansifer | -2/+25 | |
| 2012-07-11 | Fix (I think!) the ACTUALLY expr parsing situation. | Paul Stansifer | -32/+4 | |
| 2012-07-11 | Fix some version numbers. | Graydon Hoare | -3/+3 | |
| 2012-07-10 | Visit item macros. | Eric Holk | -2/+1 | |
| 2012-07-10 | Get rid of places that expected foo.bar to implicitly bind. | Michael Sullivan | -34/+37 | |
| 2012-07-10 | Fix some lookahead problems with ACTUALLY tokens. | Paul Stansifer | -0/+2 | |
| 2012-07-10 | Pretty print vectors as ~[] instead of []/~. Closes #2863. | Michael Sullivan | -10/+34 | |
| 2012-07-10 | Don't pretty print unsafe pointers as carets, since #2826 is abandoned. | Michael Sullivan | -1/+1 | |
| 2012-07-09 | Back out recognition of caret for unsafe ptr. Decided to abandon #2826 mid ↵ | Graydon Hoare | -2/+1 | |
| way through. | ||||
| 2012-07-09 | 'cont' -> 'again' in straggler code | Paul Stansifer | -1/+1 | |
| 2012-07-09 | Make the matcher parser treat `()` in a matchy way, like one would expect. | Paul Stansifer | -6/+25 | |
| 2012-07-09 | Remove the tt macro demo. | Paul Stansifer | -41/+0 | |
| 2012-07-09 | Allow defining token tree macros. They should work now! | Paul Stansifer | -72/+183 | |
| 2012-07-09 | Add support for matchers nonterminals. | Paul Stansifer | -11/+19 | |
| 2012-07-09 | Enable item macros to define macros. | Paul Stansifer | -6/+17 | |
| 2012-07-09 | Allow folds to drop items. | Paul Stansifer | -22/+35 | |
| 2012-07-09 | rustc: Switch over to resolve3 | Patrick Walton | -10/+8 | |
| 2012-07-09 | Revert "rustc: Switch over to resolve3" due to Linux failures | Patrick Walton | -8/+10 | |
| This reverts commit 2c0aa257e293dde91042a8045100d9923d139a04. | ||||
| 2012-07-09 | rustc: Switch over to resolve3 | Patrick Walton | -10/+8 | |
| 2012-07-09 | syntax: Pretty-print view item attributes | Brian Anderson | -0/+1 | |
| 2012-07-09 | Remove 'cont' from parser/lexer. | Graydon Hoare | -3/+2 | |
| 2012-07-09 | Switch 'cont' to 'again' everywhere. Close #2229. | Graydon Hoare | -4/+4 | |
| 2012-07-09 | rustc: Add some changes I missed | Patrick Walton | -6/+6 | |
| 2012-07-09 | rustc: Switch to the new resolution pass | Patrick Walton | -5/+44 | |
| 2012-07-06 | Revert "rustc: Switch to the new resolution pass" | Niko Matsakis | -44/+5 | |
| This reverts commit c4af6e92fbae171c56a4e68666025725555fc9d8. Branch was burning...many, many unresolved imports. | ||||
| 2012-07-06 | rustc: Switch to the new resolution pass | Patrick Walton | -5/+44 | |
| 2012-07-06 | First step on #2826, accept ^ for ty_ptr. | Graydon Hoare | -2/+3 | |
| 2012-07-06 | For #2229, recognize 'again' in place of 'cont', final change pending snapshot. | Graydon Hoare | -8/+8 | |
| 2012-07-06 | Updating tests to use pipes. | Eric Holk | -22/+36 | |
| 2012-07-06 | Fixing an infinite type, updating code to match new Early parser, ↵ | Eric Holk | -3/+72 | |
| remembering to add protocol parser. | ||||
| 2012-07-06 | pingpong protocol parses, although I should probably rewrite this to use ↵ | Eric Holk | -15/+31 | |
| Paul's Early parser stuff. | ||||
| 2012-07-06 | Recursively expand items, and keep expansion stack, per Paul's code review ↵ | Eric Holk | -3/+10 | |
| comments. | ||||
| 2012-07-06 | Adding token tree nonterminals to earley parser. | Eric Holk | -2/+2 | |
| 2012-07-06 | You can have any protocol you want, provided it's pingpong. | Eric Holk | -3/+587 | |
| This integrates the pipe compiler into the proto syntax extension. | ||||
