aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ForwardTemplateReference.cs
blob: 1bbf6ef9a8a72e33bbe3d33517cb3586484653d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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();
        }
    }
}