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

15 lines
346 B
C#
Raw Normal View History

using System.IO;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public class DtorName : ParentNode
{
2018-12-01 20:01:59 +00:00
public DtorName(BaseNode name) : base(NodeType.DtOrName, name) { }
2018-12-01 20:01:59 +00:00
public override void PrintLeft(TextWriter writer)
{
2018-12-01 20:01:59 +00:00
writer.Write("~");
Child.PrintLeft(writer);
}
}
}