mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-02 21:42:02 +00:00
24 lines
No EOL
510 B
C#
24 lines
No EOL
510 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class FunctionParameter : BaseNode
|
|
{
|
|
private string _number;
|
|
|
|
public FunctionParameter(string number) : base(NodeType.FunctionParameter)
|
|
{
|
|
_number = number;
|
|
}
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
writer.Write("fp ");
|
|
|
|
if (_number != null)
|
|
{
|
|
writer.Write(_number);
|
|
}
|
|
}
|
|
}
|
|
} |