auto merge of #18160 : koshlo/rust/to-source-fix, r=alexcrichton
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.
This commit is contained in:
commit
aff4f11cdd
@ -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())
|
||||
@ -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)));
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user