| 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-07-16 | debuginfo: Add LLDB autotests to debuginfo test suite. | Michael Woerister | -6/+60 | |
| This commit adds LLDB autotests to the test suite but does not activate them by default yet. | ||||
| 2014-06-29 | librustc: Remove the fallback to `int` for integers and `f64` for | Patrick Walton | -1/+1 | |
| floating point numbers for real. This will break code that looks like: let mut x = 0; while ... { x += 1; } println!("{}", x); Change that code to: let mut x = 0i; while ... { x += 1; } println!("{}", x); Closes #15201. [breaking-change] | ||||
| 2014-05-07 | debuginfo: Split debuginfo autotests into debuginfo-gdb and debuginfo-lldb | Michael Woerister | -0/+100 | |
