mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-02 21:32:02 +00:00
23 lines
No EOL
551 B
C#
23 lines
No EOL
551 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class LocalName : BaseNode
|
|
{
|
|
private BaseNode _encoding;
|
|
private 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);
|
|
}
|
|
}
|
|
} |