mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 06:06:39 +00:00
3615a70cae
This reverts commit 85dbb9559a
.
23 lines
No EOL
565 B
C#
23 lines
No EOL
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);
|
|
}
|
|
}
|
|
} |