summary refs log tree commit diff
path: root/src/librustc/middle/recursion_limit.rs
AgeCommit message (Collapse)AuthorLines
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-1/+1
2015-01-30std: Stabilize FromStr and parseAlex Crichton-2/+1
This commits adds an associated type to the `FromStr` trait representing an error payload for parses which do not succeed. The previous return value, `Option<Self>` did not allow for this form of payload. After the associated type was added, the following attributes were applied: * `FromStr` is now stable * `FromStr::Err` is now stable * `FromStr::from_str` is now stable * `StrExt::parse` is now stable * `FromStr for bool` is now stable * `FromStr for $float` is now stable * `FromStr for $integral` is now stable * Errors returned from stable `FromStr` implementations are stable * Errors implement `Display` and `Error` (both impl blocks being `#[stable]`) Closes #15138
2015-01-20Add error codes to rustcBrian Anderson-1/+1
2015-01-11Fix attr syntax in recursion limit diagnosticSteven Fackler-2/+2
2014-12-08Add ability to configure recursion limit.Niko Matsakis-0/+39
Fixes #19318.