Remove unused classes

This commit is contained in:
Yoshi Askharoun
2025-07-20 10:24:49 -05:00
parent 14505cd006
commit 05d00fcdea
8 changed files with 17 additions and 260 deletions
-3
View File
@@ -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),