mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-27 17:12:55 +00:00
38 lines
854 B
C#
38 lines
854 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 readonly 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();
|
|
}
|
|
}
|
|
}
|