mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
Remove unused classes
This commit is contained in:
@@ -349,15 +349,12 @@ public partial class Decompiler
|
||||
obj = irisObj.Object;
|
||||
}
|
||||
|
||||
|
||||
|
||||
return obj switch
|
||||
{
|
||||
string str => str,
|
||||
null => "{null}",
|
||||
bool b => b ? "true" : "false",
|
||||
IStringEncodable strEnc => strEnc.EncodeString(),
|
||||
IrisExpression expr => '{' + expr.Decompile(_context) + '}',
|
||||
ExpressionSyntax expr => FormatInlineExpression(expr),
|
||||
SymbolReference symRef => '{' + symRef.Symbol + '}',
|
||||
IFormattable formattable => formattable.ToString(null, CultureInfo.InvariantCulture),
|
||||
|
||||
Reference in New Issue
Block a user