Ryujinx/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NestedName.cs
2018-12-01 14:03:56 -06:00

26 lines
No EOL
575 B
C#

using System.IO;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public class NestedName : ParentNode
{
private BaseNode _name;
public NestedName(BaseNode name, BaseNode type) : base(NodeType.NestedName, type)
{
this._name = name;
}
public override string GetName()
{
return _name.GetName();
}
public override void PrintLeft(TextWriter writer)
{
Child.Print(writer);
writer.Write("::");
_name.Print(writer);
}
}
}