| 12345678910111213141516171819202122 |
- 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);
- }
- }
- }
|