mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-03 14:52:03 +00:00
22 lines
No EOL
528 B
C#
22 lines
No EOL
528 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class PrefixExpression : ParentNode
|
|
{
|
|
private string _prefix;
|
|
|
|
public PrefixExpression(string prefix, BaseNode child) : base(NodeType.PrefixExpression, child)
|
|
{
|
|
_prefix = prefix;
|
|
}
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
writer.Write(_prefix);
|
|
writer.Write("(");
|
|
Child.Print(writer);
|
|
writer.Write(")");
|
|
}
|
|
}
|
|
} |