Ryujinx/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixExpression.cs

22 lines
539 B
C#
Raw Normal View History

using System.IO;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public class PostfixExpression : ParentNode
{
private string _operator;
public PostfixExpression(BaseNode type, string Operator) : base(NodeType.PostfixExpression, type)
{
_operator = Operator;
}
public override void PrintLeft(TextWriter writer)
{
writer.Write("(");
Child.Print(writer);
writer.Write(")");
writer.Write(_operator);
}
}
}