aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/PostfixExpression.cs
blob: ccaea3ba7f3bf0a41e7e87f400b79252ed995cc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
        }
    }
}