From 1f4ee20ddae447f155b0d2b25e630e9c4e0cc1aa Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Tue, 17 Feb 2015 11:25:30 -0500 Subject: Tweak pretty printing. --- src/libsyntax/ast_util.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'src/libsyntax') diff --git a/src/libsyntax/ast_util.rs b/src/libsyntax/ast_util.rs index b8d4c90f745..117507ad8b7 100644 --- a/src/libsyntax/ast_util.rs +++ b/src/libsyntax/ast_util.rs @@ -141,10 +141,7 @@ pub fn is_path(e: P) -> bool { /// We want to avoid "45int" and "-3int" in favor of "45" and "-3" pub fn int_ty_to_string(t: IntTy, val: Option) -> String { let s = match t { - TyIs(true) if val.is_some() => "i", - TyIs(true) => "int", - TyIs(false) if val.is_some() => "is", - TyIs(false) => "isize", + TyIs(_) => "isize", TyI8 => "i8", TyI16 => "i16", TyI32 => "i32", @@ -173,10 +170,7 @@ pub fn int_ty_max(t: IntTy) -> u64 { /// We want to avoid "42u" in favor of "42us". "42uint" is right out. pub fn uint_ty_to_string(t: UintTy, val: Option) -> String { let s = match t { - TyUs(true) if val.is_some() => "u", - TyUs(true) => "uint", - TyUs(false) if val.is_some() => "us", - TyUs(false) => "usize", + TyUs(_) => "usize", TyU8 => "u8", TyU16 => "u16", TyU32 => "u32", -- cgit 1.4.1-3-g733a5