Skip to content

Commit

Permalink
auto merge of #18160 : koshlo/rust/to-source-fix, r=alexcrichton
Browse files Browse the repository at this point in the history
Fix for issue #18091 

The problem seems to be that `ast_util::int_ty_to_string` takes unsigned number, and no one adds `-` to result string. I've fixed it by putting `-` before result string using `format!`.

I've also added `test_signed_int_to_string()` to check if implementation is valid.
  • Loading branch information
bors committed Oct 19, 2014
2 parents 5cba29d + 49ec356 commit aff4f11
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/libsyntax/print/pprust.rs
Expand Up @@ -2680,8 +2680,9 @@ impl<'a> State<'a> {
ast_util::int_ty_to_string(st, Some(i as i64)).as_slice())
}
ast::SignedIntLit(st, ast::Minus) => {
let istr = ast_util::int_ty_to_string(st, Some(-(i as i64)));
word(&mut self.s,
ast_util::int_ty_to_string(st, Some(-(i as i64))).as_slice())
format!("-{}", istr).as_slice())
}
ast::UnsignedIntLit(ut) => {
word(&mut self.s, ast_util::uint_ty_to_string(ut, Some(i)).as_slice())
Expand Down Expand Up @@ -2930,4 +2931,12 @@ mod test {
let varstr = variant_to_string(&var);
assert_eq!(&varstr,&"pub principal_skinner".to_string());
}

#[test]
fn test_signed_int_to_string() {
let pos_int = ast::LitInt(42, ast::SignedIntLit(ast::TyI32, ast::Plus));
let neg_int = ast::LitInt((-42) as u64, ast::SignedIntLit(ast::TyI32, ast::Minus));
assert_eq!(format!("-{}", lit_to_string(&codemap::dummy_spanned(pos_int))),
lit_to_string(&codemap::dummy_spanned(neg_int)));
}
}

0 comments on commit aff4f11

Please sign in to comment.