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 21:01:59 +01:00
private string _specialValue;
2018-12-01 21:01:59 +01:00
public SpecialName(string specialValue, BaseNode type) : base(NodeType.SpecialName, type)
{
2018-12-01 21:01:59 +01:00
this._specialValue = specialValue;
}
2018-12-01 21:01:59 +01:00
public override void PrintLeft(TextWriter writer)
{
2018-12-01 21:01:59 +01:00
writer.Write(_specialValue);
Child.Print(writer);
}
}
}