| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-07-16 | librustc: Allow the new UFCS explicit self in trait definitions, and | Patrick Walton | -1/+1 | |
| remove `~self` from the test suite. | ||||
| 2014-05-06 | librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, except | Patrick Walton | -1/+1 | |
| for `~str`/`~[]`. Note that `~self` still remains, since I forgot to add support for `Box<self>` before the snapshot. How to update your code: * Instead of `~EXPR`, you should write `box EXPR`. * Instead of `~TYPE`, you should write `Box<Type>`. * Instead of `~PATTERN`, you should write `box PATTERN`. [breaking-change] | ||||
| 2014-02-07 | Removed @self and @Trait. | Eduard Burtescu | -14/+6 | |
| 2013-10-23 | register snapshots | Daniel Micay | -0/+1 | |
| 2013-10-01 | remove the `float` type | Daniel Micay | -7/+7 | |
| It is simply defined as `f64` across every platform right now. A use case hasn't been presented for a `float` type defined as the highest precision floating point type implemented in hardware on the platform. Performance-wise, using the smallest precision correct for the use case greatly saves on cache space and allows for fitting more numbers into SSE/AVX registers. If there was a use case, this could be implemented as simply a type alias or a struct thanks to `#[cfg(...)]`. Closes #6592 The mailing list thread, for reference: https://mail.mozilla.org/pipermail/rust-dev/2013-July/004632.html | ||||
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -3/+6 | |
| 2013-07-17 | librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them. | Patrick Walton | -1/+1 | |
| 2013-06-01 | Remove all uses of `pub impl`. rs=style | Patrick Walton | -9/+9 | |
| 2013-05-19 | Use assert_eq! rather than assert! where possible | Corey Richardson | -5/+5 | |
| 2013-04-10 | tests: changes in response to #5656 | Niko Matsakis | -1/+1 | |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -5/+5 | |
| 2013-03-26 | librustc: Modify all code to use new lifetime binder syntax | Patrick Walton | -3/+3 | |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -1/+1 | |
| 2013-03-18 | librustc: Convert all uses of old lifetime notation to new lifetime ↵ | Patrick Walton | -3/+3 | |
| notation. rs=delifetiming | ||||
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -5/+5 | |
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -2/+2 | |
| 2013-02-22 | test: De-mut the test suite. rs=demuting | Patrick Walton | -4/+4 | |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵ | Patrick Walton | -1/+1 | |
| rs=implflipping | ||||
| 2013-02-01 | check-fast fallout from removing export, r=burningtree | Graydon Hoare | -1/+1 | |
| 2013-01-26 | testsuite: Eliminate uses of structural records from most run-pass tests | Tim Chevalier | -11/+13 | |
| Except the pipes tests (that needs a snapshot) | ||||
| 2012-12-10 | Reliciense makefiles and testsuite. Yup. | Graydon Hoare | -0/+10 | |
| 2012-12-05 | test: Fix a bunch of test cases. rs=burning | Patrick Walton | -1/+1 | |
| 2012-09-07 | Convert field terminators to commas. Stop parsing semis. | Brian Anderson | -1/+1 | |
| 2012-09-06 | Remove struct ctors | Brian Anderson | -1/+5 | |
| 2012-08-21 | more sound treatment of fn& regions; change all & to be distinct | Niko Matsakis | -2/+2 | |
| 2012-08-17 | Make by-val explicit self actually work. Closes #2585. | Michael Sullivan | -0/+64 | |
