mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-30 18:51:33 -08:00
37 lines
848 B
C#
37 lines
848 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class ForwardTemplateReference : BaseNode
|
|
{
|
|
// TODO: Compute inside the Demangler
|
|
public BaseNode Reference;
|
|
private int _index;
|
|
|
|
public ForwardTemplateReference(int index) : base(NodeType.ForwardTemplateReference)
|
|
{
|
|
_index = index;
|
|
}
|
|
|
|
public override string GetName()
|
|
{
|
|
return Reference.GetName();
|
|
}
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
Reference.PrintLeft(writer);
|
|
}
|
|
|
|
public override void PrintRight(TextWriter writer)
|
|
{
|
|
Reference.PrintRight(writer);
|
|
}
|
|
|
|
public override bool HasRightPart()
|
|
{
|
|
return Reference.HasRightPart();
|
|
}
|
|
}
|
|
}
|