0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NameType.cs

29 lines
624 B
C#
Raw Normal View History

using System.IO;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public class NameType : BaseNode
{
private string NameValue;
public NameType(string NameValue, NodeType Type) : base(Type)
{
this.NameValue = NameValue;
}
public NameType(string NameValue) : base(NodeType.NameType)
{
this.NameValue = NameValue;
}
public override string GetName()
{
return NameValue;
}
public override void PrintLeft(TextWriter Writer)
{
Writer.Write(NameValue);
}
}
}