1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-12-02 23:32:02 +00:00
Ryujinx/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/FunctionParameter.cs

24 lines
510 B
C#
Raw Normal View History

using System.IO;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public class FunctionParameter : BaseNode
{
2018-12-01 20:01:59 +00:00
private string _number;
2018-12-01 20:01:59 +00:00
public FunctionParameter(string number) : base(NodeType.FunctionParameter)
{
2018-12-01 20:24:37 +00:00
_number = number;
}
2018-12-01 20:01:59 +00:00
public override void PrintLeft(TextWriter writer)
{
2018-12-01 20:01:59 +00:00
writer.Write("fp ");
2018-12-01 20:01:59 +00:00
if (_number != null)
{
2018-12-01 20:01:59 +00:00
writer.Write(_number);
}
}
}
}