| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-09-21 | rustc: Remove middle/tstate | Brian Anderson | -2622/+0 | |
| I feel like I've done this before | ||||
| 2012-09-19 | demode the each() method on vec and other iterables. | Niko Matsakis | -1/+1 | |
| 2012-09-07 | Refactor fn_ty, working towards #3320 | Niko Matsakis | -9/+7 | |
| 2012-09-04 | rustc: "import" -> "use" | Patrick Walton | -77/+77 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -57/+57 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -0/+2624 | |
| 2012-08-22 | rustc: Remove typestate source | Brian Anderson | -3151/+0 | |
| 2012-08-21 | more sound treatment of fn& regions; change all & to be distinct | Niko Matsakis | -1/+1 | |
| 2012-08-07 | syntax: Rename expr_alt to expr_match | Brian Anderson | -2/+2 | |
| 2012-08-06 | make `ref x` bindings produce region ptrs and fix various minor bugs | Niko Matsakis | -1/+1 | |
| we now detect inconsistent modes, binding names, and various other errors. typeck/trans integration is mostly done. borrowck not so much. more tests needed. | ||||
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -91/+91 | |
| 2012-08-02 | Purge placement new; Make borrowck know about unary move. | Niko Matsakis | -2/+2 | |
| cc #3071 | ||||
| 2012-08-01 | Convert ret to return | Brian Anderson | -166/+176 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -60/+60 | |
| 2012-07-29 | Rewrite bitv to use classes and optimize its representation | Tim Chevalier | -241/+217 | |
| Rewrote bitv as a class that uses a 32-bit int as its representation for bit vectors of 32 bits or less, and a vector (the old representation) otherwise. I didn't benchmark very much, but a bit of informal benchmarking suggested this is a win. Closes #2341 | ||||
| 2012-07-14 | remove typestate from code, tests, and docs | Niko Matsakis | -186/+0 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -70/+71 | |
| #2907. | ||||
| 2012-07-11 | infer when types are region parameterized rather than requiring /& | Niko Matsakis | -1/+1 | |
| - removes various fields from various variants in the AST - also update tests not to use this notation | ||||
| 2012-07-06 | For #2229, recognize 'again' in place of 'cont', final change pending snapshot. | Graydon Hoare | -2/+2 | |
| 2012-07-06 | Plumbing and parsing for item-position macros. | Eric Holk | -0/+1 | |
| 2012-07-05 | Change 'iface' to 'trait' internally; parse `trait` as `iface` synonym | Lindsey Kuper | -1/+1 | |
| 2012-07-03 | Revert "Remove rule requiring non-nil block-style statements to be ↵ | Brian Anderson | -4/+4 | |
| semi-terminated" This reverts commit 0f5eaef5fb2443acd3ea67250c953839c3d04d38. | ||||
| 2012-07-03 | Remove rule requiring non-nil block-style statements to be semi-terminated | Brian Anderson | -4/+4 | |
| This is a subtle rule that no longer seems to be required. | ||||
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -75/+76 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -12/+12 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -107/+107 | |
| 2012-06-28 | Replaced almost all vector+ in rustc (#2719) | Eric Holk | -29/+30 | |
| Didn't update shape because the changes were causing segfaults. | ||||
| 2012-06-26 | Change 'native' and 'crust' to 'extern'. | Graydon Hoare | -3/+3 | |
| This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI. | ||||
| 2012-06-26 | Getting rid of lots more vector +=. (issue #2719) | Eric Holk | -20/+24 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -123/+129 | |
| 2012-06-24 | Remove resources | Tim Chevalier | -8/+0 | |
| Also fixed shapes for classes with dtors, as well as handling offsets for classes with dtors correctly in take glue. Closes #2485 | ||||
| 2012-06-21 | Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this. | Graydon Hoare | -16/+14 | |
| 2012-06-21 | Move vector addition out of trans and into libcore. | Eric Holk | -3/+5 | |
| 2012-06-20 | Remove bind. Issue #2189 | Brian Anderson | -47/+20 | |
| 2012-06-18 | Add 'do' expressions | Brian Anderson | -2/+3 | |
| 2012-06-13 | Box AST idents | Brian Anderson | -8/+8 | |
| 2012-06-08 | Get rid of little-used logging fns in util::common. Closes #2553. | Lindsey Kuper | -87/+23 | |
| Also got rid of a bunch of commented-out logging statements and generally cleaned up the logging situation, mostly in typestate. | ||||
| 2012-06-07 | Comments only: annotate remainder of FIXMEs in typestate | Tim Chevalier | -8/+9 | |
| 2012-06-07 | Start annotating FIXMEs in typestate; also some minor refactoring | Tim Chevalier | -51/+19 | |
| 2012-06-06 | Merge remote-tracking branch 'mozilla/incoming' | Niko Matsakis | -3/+2 | |
| Conflicts: src/rustc/middle/tstate/auxiliary.rs | ||||
| 2012-06-06 | move tstate to dvec | Niko Matsakis | -26/+26 | |
| 2012-06-06 | Revert "Revert "Merge pull request #2516 from mozilla/incoming" due to failures" | Tim Chevalier | -3/+2 | |
| This reverts commit 9fae95860de510f6874810cf43efb83f101246ef. | ||||
| 2012-05-31 | rustc: Use fewer boxes in typestate | Brian Anderson | -12/+12 | |
| 2012-05-30 | rustc: Do less work still in typestate | Brian Anderson | -46/+52 | |
| 2012-05-30 | rustc: Don't typestate fns that don't have constrained function calls | Brian Anderson | -16/+52 | |
| 2012-05-29 | Handle poststates of breaking loops correctly in typestate | Tim Chevalier | -24/+10 | |
| The poststate should be one where all predicates are assumed false, rather than the unchanged prestate. Closes #2374 | ||||
| 2012-05-24 | remove dead assignments | Niko Matsakis | -28/+4 | |
| 2012-05-24 | remove initedness checking from typestate, as best I could | Niko Matsakis | -492/+89 | |
| 2012-05-23 | rustc: Move new_def_hash to ast_util | Brian Anderson | -2/+1 | |
| 2012-05-18 | rustc: Don't copy vecs in seq_preconds. Huge perf win on some tests | Brian Anderson | -5/+6 | |
| Compile time for the included test goes from 5min to 18s. | ||||
