22 lines
No EOL
544 B
C#
22 lines
No EOL
544 B
C#
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)
|
|
{
|
|
this._operator = Operator;
|
|
}
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
writer.Write("(");
|
|
Child.Print(writer);
|
|
writer.Write(")");
|
|
writer.Write(_operator);
|
|
}
|
|
}
|
|
} |