| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -1/+1 | |
| This breaks a fair amount of code. The typical patterns are: * `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`; * `println!("{}", 3)`: change to `println!("{}", 3i)`; * `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`. RFC #30. Closes #6023. [breaking-change] | ||||
| 2014-06-16 | rustc: Improve span for error about using a method as a field. | Kevin Butler | -2/+11 | |
| libsyntax: ExprField now contains a SpannedIdent rather than Ident. [breaking-change] | ||||
| 2014-03-16 | Asked if missing (), then asks about an anonymous function. Also added test. | Davis Silverman | -0/+34 | |
