fb1d9493a3
* Rename enum fields
* Naming conventions
* Remove unneeded ".this"
* Remove unneeded semicolons
* Remove unused Usings
* Don't use var
* Remove unneeded enum underlying types
* Explicitly label class visibility
* Remove unneeded @ prefixes
* Remove unneeded commas
* Remove unneeded if expressions
* Method doesn't use unsafe code
* Remove unneeded casts
* Initialized objects don't need an empty constructor
* Remove settings from DotSettings
* Revert "Explicitly label class visibility"
This reverts commit ad5eb5787c
.
* Small changes
* Revert external enum renaming
* Changes from feedback
* Apply previous refactorings to the merged code
41 lines
No EOL
1 KiB
C#
41 lines
No EOL
1 KiB
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class IntegerLiteral : BaseNode
|
|
{
|
|
private string _literalName;
|
|
private string _literalValue;
|
|
|
|
public IntegerLiteral(string literalName, string literalValue) : base(NodeType.IntegerLiteral)
|
|
{
|
|
_literalValue = literalValue;
|
|
_literalName = literalName;
|
|
}
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
if (_literalName.Length > 3)
|
|
{
|
|
writer.Write("(");
|
|
writer.Write(_literalName);
|
|
writer.Write(")");
|
|
}
|
|
|
|
if (_literalValue[0] == 'n')
|
|
{
|
|
writer.Write("-");
|
|
writer.Write(_literalValue.Substring(1));
|
|
}
|
|
else
|
|
{
|
|
writer.Write(_literalValue);
|
|
}
|
|
|
|
if (_literalName.Length <= 3)
|
|
{
|
|
writer.Write(_literalName);
|
|
}
|
|
}
|
|
}
|
|
} |