aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EncodedFunction.cs
blob: c7b6dab1a892acb1d6d1b567f1541c353912a782 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using System.IO;

namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
    public class EncodedFunction : BaseNode
    {
        private BaseNode _name;
        private BaseNode _params;
        private BaseNode _cv;
        private BaseNode _ref;
        private BaseNode _attrs;
        private 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("(");

            if (_params != null)
            {
                _params.Print(writer);
            }

            writer.Write(")");

            if (_ret != null)
            {
                _ret.PrintRight(writer);
            }

            if (_cv != null)
            {
                _cv.Print(writer);
            }

            if (_ref != null)
            {
                _ref.Print(writer);
            }

            if (_attrs != null)
            {
                _attrs.Print(writer);
            }
        }
    }
}