Upgrade to rustc 1.3.0-nightly (4d52d7c85 2015-07-30)

This commit is contained in:
Manish Goregaokar 2015-07-31 12:00:06 +05:30
parent 0e8e8cfc9b
commit de5ccdfab6
6 changed files with 13 additions and 13 deletions

View file

@ -25,7 +25,7 @@ pub fn match_ty_unwrap<'a>(ty: &'a Ty, segments: &[&str]) -> Option<&'a [P<Ty>]>
// I could muck around with the maps and find the full path
// however the more efficient way is to simply reverse the iterators and zip them
// which will compare them in reverse until one of them runs out of segments
if seg.iter().rev().zip(segments.iter().rev()).all(|(a,b)| a.identifier.as_str() == *b) {
if seg.iter().rev().zip(segments.iter().rev()).all(|(a,b)| a.identifier.name == b) {
match seg[..].last() {
Some(&PathSegment {parameters: AngleBracketedParameters(ref a), ..}) => {
Some(&a.types[..])