Ryujinx/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/EncodedFunction.cs

77 lines
1.7 KiB
C#
Raw Normal View History

using System.IO;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public class EncodedFunction : BaseNode
{
2018-12-01 20:01:59 +00:00
private BaseNode _name;
private BaseNode _params;
private BaseNode _cv;
private BaseNode _ref;
private BaseNode _attrs;
private BaseNode _ret;
2018-12-01 20:01:59 +00:00
public EncodedFunction(BaseNode name, BaseNode Params, BaseNode cv, BaseNode Ref, BaseNode attrs, BaseNode ret) : base(NodeType.NameType)
{
2018-12-01 20:01:59 +00:00
this._name = name;
this._params = Params;
this._cv = cv;
this._ref = Ref;
this._attrs = attrs;
this._ret = ret;
}
2018-12-01 20:01:59 +00:00
public override void PrintLeft(TextWriter writer)
{
2018-12-01 20:01:59 +00:00
if (_ret != null)
{
2018-12-01 20:01:59 +00:00
_ret.PrintLeft(writer);
2018-12-01 20:01:59 +00:00
if (!_ret.HasRightPart())
{
2018-12-01 20:01:59 +00:00
writer.Write(" ");
}
}
2018-12-01 20:01:59 +00:00
_name.Print(writer);
}
public override bool HasRightPart()
{
return true;
}
2018-12-01 20:01:59 +00:00
public override void PrintRight(TextWriter writer)
{
2018-12-01 20:01:59 +00:00
writer.Write("(");
2018-12-01 20:01:59 +00:00
if (_params != null)
{
2018-12-01 20:01:59 +00:00
_params.Print(writer);
}
2018-12-01 20:01:59 +00:00
writer.Write(")");
2018-12-01 20:01:59 +00:00
if (_ret != null)
{
2018-12-01 20:01:59 +00:00
_ret.PrintRight(writer);
}
2018-12-01 20:01:59 +00:00
if (_cv != null)
{
2018-12-01 20:01:59 +00:00
_cv.Print(writer);
}
2018-12-01 20:01:59 +00:00
if (_ref != null)
{
2018-12-01 20:01:59 +00:00
_ref.Print(writer);
}
2018-12-01 20:01:59 +00:00
if (_attrs != null)
{
2018-12-01 20:01:59 +00:00
_attrs.Print(writer);
}
}
}
}