Move solution and projects to src

This commit is contained in:
TSR Berry
2023-04-08 01:22:00 +02:00
committed by Mary
parent cd124bda58
commit cee7121058
3466 changed files with 55 additions and 55 deletions

View File

@@ -0,0 +1,36 @@
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();
}
}
}