| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-08-28 | src/test/bench: restructure | Corey Richardson | -105/+0 | |
| 2013-08-22 | Enabled tests. | Vadim Chugunov | -2/+0 | |
| 2013-08-06 | remove `extra::iter` | Daniel Micay | -1/+1 | |
| This module provided adaptors for the old internal iterator protocol, but they proved to be quite unreadable and are not generic enough to handle borrowed pointers well. Since Rust no longer defines an internal iteration protocol, I don't think there's going to be any reuse via these adaptors. | ||||
| 2013-08-01 | std: Change `Times` trait to use `do` instead of `for` | blake2-ppc | -1/+1 | |
| Change the former repetition:: for 5.times { } to:: do 5.times { } .times() cannot be broken with `break` or `return` anymore; for those cases, use a numerical range loop instead. | ||||
| 2013-07-20 | Fix warnings in src/test/bench tests. Nobody will ever care. | Ben Blum | -1/+1 | |
| 2013-07-17 | Clean-up tests after debug!/std-macros change. | Huon Wilson | -3/+3 | |
| The entire testsuite is converted to using info! rather than debug! because some depend on the code within the debug! being trans'd. | ||||
| 2013-07-04 | Remove standalone comparison functions in vec, make the trait impls better. | Huon Wilson | -1/+1 | |
| 2013-06-25 | Change finalize -> drop. | Luqman Aden | -1/+1 | |
| 2013-05-30 | Remove a bunch of unnecessary allocations and copies | Björn Steinbrink | -1/+1 | |
| 2013-05-29 | librustc: Stop reexporting the standard modules from prelude. | Patrick Walton | -0/+2 | |
| 2013-05-22 | test: Update tests to use the new syntax. | Patrick Walton | -3/+3 | |
| 2013-05-18 | replace old_iter::repeat with the Times trait | Daniel Micay | -1/+1 | |
| 2013-04-28 | make way for a new iter module | Daniel Micay | -1/+1 | |
| 2013-03-21 | librustc: Forbid destructors from being attached to any structs that might ↵ | Patrick Walton | -0/+1 | |
| contain non-Owned fields. r=nmatsakis | ||||
| 2013-03-05 | core: convert vec::{last,last_opt} to return references | Erick Tryzelaar | -1/+1 | |
| 2013-03-02 | test: Remove `fn@`, `fn~`, and `fn&` from the test suite. rs=defun | Patrick Walton | -3/+3 | |
| 2013-02-15 | tests/tutorials: Get rid of `move`. | Luqman Aden | -1/+1 | |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵ | Patrick Walton | -1/+1 | |
| rs=implflipping | ||||
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -1/+1 | |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -5/+4 | |
| correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719. | ||||
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -1/+1 | |
| 2013-01-28 | testsuite: De-record most bench tests | Tim Chevalier | -15/+14 | |
| 2012-12-10 | Reliciense makefiles and testsuite. Yup. | Graydon Hoare | -0/+10 | |
| 2012-12-06 | test: Fix compilation of benchmarks for moves-based-on-type. rs=bustage | Patrick Walton | -1/+1 | |
| 2012-11-29 | librustc: Make the Drop trait use explicit self | Patrick Walton | -1/+1 | |
| 2012-11-14 | Convert the test suite to use the Drop trait | Ben Striegel | -1/+4 | |
| 2012-10-12 | Make moves explicit in bench tests | Tim Chevalier | -2/+3 | |
| 2012-09-11 | Convert 'use' to 'extern mod'. Remove old 'use' syntax | Brian Anderson | -1/+1 | |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -1/+1 | |
| 2012-09-06 | Remove struct ctors | Brian Anderson | -1/+6 | |
| 2012-09-05 | test: "import" -> "use" | Patrick Walton | -2/+2 | |
| 2012-09-04 | std: Camel case list | Brian Anderson | -17/+17 | |
| 2012-08-26 | Camel case the option type | Brian Anderson | -5/+5 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -3/+3 | |
| 2012-08-17 | Remove the class keyword | Brian Anderson | -1/+1 | |
| 2012-08-06 | Convert alt to match. Stop parsing alt | Brian Anderson | -1/+1 | |
| 2012-08-05 | Switch alts to use arrows | Brian Anderson | -2/+2 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -3/+3 | |
| 2012-07-16 | replace core::tuple functions with methods | Gareth Daniel Smith | -3/+2 | |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ↵ | Michael Sullivan | -1/+1 | |
| #2907. | ||||
| 2012-07-04 | Remove empty argument lists from do expressions | Ben Striegel | -2/+2 | |
| 2012-07-03 | core: Convert iter::repeat to the for protocol | Brian Anderson | -1/+1 | |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -2/+2 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -2/+2 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -3/+3 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -3/+3 | |
| 2012-06-25 | Remove resources from a few places I missed | Tim Chevalier | -1/+1 | |
| 2012-06-22 | Remove resources from remaining test cases | Tim Chevalier | -1/+4 | |
| 2012-06-02 | bench: Add an unwinding benchmark | Brian Anderson | -0/+85 | |
