aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/LocalName.cs
blob: 661043b444cbe95bec32bcfdf9cb33e895c900dd (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                   
                                            
 
                                                                                       
         
                                 
                             
         
                                                         
         

                                    
         
 
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);
        }
    }
}