mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:48:34 +00:00
23 lines
565 B
C#
23 lines
565 B
C#
|
using System.IO;
|
||
|
|
||
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
||
|
{
|
||
|
public class QualifiedName : BaseNode
|
||
|
{
|
||
|
private BaseNode Qualifier;
|
||
|
private BaseNode Name;
|
||
|
|
||
|
public QualifiedName(BaseNode Qualifier, BaseNode Name) : base(NodeType.QualifiedName)
|
||
|
{
|
||
|
this.Qualifier = Qualifier;
|
||
|
this.Name = Name;
|
||
|
}
|
||
|
|
||
|
public override void PrintLeft(TextWriter Writer)
|
||
|
{
|
||
|
Qualifier.Print(Writer);
|
||
|
Writer.Write("::");
|
||
|
Name.Print(Writer);
|
||
|
}
|
||
|
}
|
||
|
}
|