diff --git a/IDE/mintest/minlib/src/System/Type.bf b/IDE/mintest/minlib/src/System/Type.bf index 69a453df..d78c37ca 100644 --- a/IDE/mintest/minlib/src/System/Type.bf +++ b/IDE/mintest/minlib/src/System/Type.bf @@ -1130,14 +1130,8 @@ namespace System.Reflection (*(double*)&mValue).ToString(strBuffer); case typeof (bool): strBuffer.Append((*(bool*)&mValue) ? "true" : "false"); - case typeof(char8), typeof(char16), typeof(char32): - strBuffer.Append('\''); - var str = (*(char32*)&mValue).ToString(.. scope .()); - let len = str.Length; - String.QuoteString(&str[0], len, str); - strBuffer.Append(str[(len + 1)...^2]); - strBuffer.Append('\''); - case typeof(uint64), typeof(uint): + case typeof(char8), typeof(char16), typeof(char32), + typeof(uint64), typeof(uint): (*(uint64*)&mValue).ToString(strBuffer); default: mValue.ToString(strBuffer);