mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-23 02:40:33 +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(")");
|
|
}
|
|
}
|
|
} |