(ty: &pr::Ty)
| 5 | use super::{WriteOpt, WriteSource}; |
| 6 | |
| 7 | pub(crate) fn write_ty(ty: &pr::Ty) -> String { |
| 8 | ty.write(WriteOpt::new_width(u16::MAX)).unwrap() |
| 9 | } |
| 10 | |
| 11 | pub(crate) fn write_ty_kind(ty: &pr::TyKind) -> String { |
| 12 | ty.write(WriteOpt::new_width(u16::MAX)).unwrap() |
no test coverage detected