Ryujinx/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialName.cs

20 lines
484 B
C#
Raw Normal View History

using System.IO;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public class SpecialName : ParentNode
{
2018-12-01 20:01:59 +00:00
private string _specialValue;
2018-12-01 20:01:59 +00:00
public SpecialName(string specialValue, BaseNode type) : base(NodeType.SpecialName, type)
{
2018-12-01 20:01:59 +00:00
this._specialValue = specialValue;
}
2018-12-01 20:01:59 +00:00
public override void PrintLeft(TextWriter writer)
{
2018-12-01 20:01:59 +00:00
writer.Write(_specialValue);
Child.Print(writer);
}
}
}