aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LocalName.cs
blob: 661043b444cbe95bec32bcfdf9cb33e895c900dd (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
using System.IO;

namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
    public class LocalName : BaseNode
    {
        private readonly BaseNode _encoding;
        private readonly BaseNode _entity;

        public LocalName(BaseNode encoding, BaseNode entity) : base(NodeType.LocalName)
        {
            _encoding = encoding;
            _entity = entity;
        }

        public override void PrintLeft(TextWriter writer)
        {
            _encoding.Print(writer);
            writer.Write("::");
            _entity.Print(writer);
        }
    }
}