2018-09-15 14:29:18 +01:00
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
|
|
{
|
|
|
|
public class NestedName : ParentNode
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
private BaseNode Name;
|
2018-09-15 14:29:18 +01:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public NestedName(BaseNode Name, BaseNode Type) : base(NodeType.NestedName, Type)
|
2018-09-15 14:29:18 +01:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
this.Name = Name;
|
2018-09-15 14:29:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public override string GetName()
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
return Name.GetName();
|
2018-09-15 14:29:18 +01:00
|
|
|
}
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public override void PrintLeft(TextWriter Writer)
|
2018-09-15 14:29:18 +01:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
Child.Print(Writer);
|
|
|
|
Writer.Write("::");
|
|
|
|
Name.Print(Writer);
|
2018-09-15 14:29:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|