aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EncodedFunction.cs
blob: de5598044afe22fd117ee42f4a55439dac4147ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System.IO;

namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
    public class EncodedFunction : BaseNode
    {
        private readonly BaseNode _name;
        private readonly BaseNode _params;
        private readonly BaseNode _cv;
        private readonly BaseNode _ref;
        private readonly BaseNode _attrs;
        private readonly BaseNode _ret;

        public EncodedFunction(BaseNode name, BaseNode Params, BaseNode cv, BaseNode Ref, BaseNode attrs, BaseNode ret) : base(NodeType.NameType)
        {
            _name = name;
            _params = Params;
            _cv = cv;
            _ref = Ref;
            _attrs = attrs;
            _ret = ret;
        }

        public override void PrintLeft(TextWriter writer)
        {
            if (_ret != null)
            {
                _ret.PrintLeft(writer);

                if (!_ret.HasRightPart())
                {
                    writer.Write(" ");
                }
            }

            _name.Print(writer);

        }

        public override bool HasRightPart()
        {
            return true;
        }

        public override void PrintRight(TextWriter writer)
        {
            writer.Write("(");
            _params?.Print(writer);
            writer.Write(")");
            _ret?.PrintRight(writer);
            _cv?.Print(writer);
            _ref?.Print(writer);
            _attrs?.Print(writer);
        }
    }
}