mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-02 21:32:02 +00:00
22 lines
No EOL
539 B
C#
22 lines
No EOL
539 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)
|
|
{
|
|
_operator = Operator;
|
|
}
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
writer.Write("(");
|
|
Child.Print(writer);
|
|
writer.Write(")");
|
|
writer.Write(_operator);
|
|
}
|
|
}
|
|
} |