aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs
new file mode 100644
index 00000000..33752d00
--- /dev/null
+++ b/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/IntegerLiteral.cs
@@ -0,0 +1,42 @@
+using System;
+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.AsSpan(1));
+ }
+ else
+ {
+ writer.Write(_literalValue);
+ }
+
+ if (_literalName.Length <= 3)
+ {
+ writer.Write(_literalName);
+ }
+ }
+ }
+} \ No newline at end of file